Chris Lattner | 16c7bb2 | 2002-05-09 02:28:59 +0000 | [diff] [blame] | 1 | //===-- Writer.cpp - Library for writing C files --------------------------===// |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 2 | // |
| 3 | // This library implements the functionality defined in llvm/Assembly/CWriter.h |
| 4 | // and CLocalVars.h |
| 5 | // |
| 6 | // TODO : Recursive types. |
Chris Lattner | 16c7bb2 | 2002-05-09 02:28:59 +0000 | [diff] [blame] | 7 | // |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 8 | //===-----------------------------------------------------------------------==// |
Chris Lattner | 16c7bb2 | 2002-05-09 02:28:59 +0000 | [diff] [blame] | 9 | |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 10 | #include "llvm/Assembly/CWriter.h" |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 11 | #include "llvm/SlotCalculator.h" |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 12 | #include "llvm/Constants.h" |
Chris Lattner | 2f5f51a | 2002-05-09 03:28:37 +0000 | [diff] [blame] | 13 | #include "llvm/DerivedTypes.h" |
| 14 | #include "llvm/Module.h" |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 15 | #include "llvm/GlobalVariable.h" |
Chris Lattner | 2f5f51a | 2002-05-09 03:28:37 +0000 | [diff] [blame] | 16 | #include "llvm/Function.h" |
| 17 | #include "llvm/Argument.h" |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 18 | #include "llvm/BasicBlock.h" |
| 19 | #include "llvm/iMemory.h" |
| 20 | #include "llvm/iTerminators.h" |
| 21 | #include "llvm/iPHINode.h" |
| 22 | #include "llvm/iOther.h" |
Chris Lattner | 2f5f51a | 2002-05-09 03:28:37 +0000 | [diff] [blame] | 23 | #include "llvm/iOperators.h" |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 24 | #include "llvm/SymbolTable.h" |
| 25 | #include "llvm/Support/InstVisitor.h" |
Chris Lattner | 7683a12 | 2002-05-09 20:33:35 +0000 | [diff] [blame] | 26 | #include "llvm/Support/InstIterator.h" |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 27 | #include "Support/StringExtras.h" |
| 28 | #include "Support/STLExtras.h" |
| 29 | |
| 30 | #include <algorithm> |
| 31 | #include <strstream> |
| 32 | using std::string; |
| 33 | using std::map; |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 34 | using std::ostream; |
| 35 | |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 36 | static std::string getConstStrValue(const Constant* CPV); |
| 37 | |
| 38 | |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 39 | static std::string getConstArrayStrValue(const Constant* CPV) { |
| 40 | std::string Result; |
| 41 | |
| 42 | // As a special case, print the array as a string if it is an array of |
| 43 | // ubytes or an array of sbytes with positive values. |
| 44 | // |
| 45 | const Type *ETy = cast<ArrayType>(CPV->getType())->getElementType(); |
| 46 | bool isString = (ETy == Type::SByteTy || ETy == Type::UByteTy); |
| 47 | |
Chris Lattner | 4fbf26d | 2002-05-09 20:53:56 +0000 | [diff] [blame^] | 48 | // Make sure the last character is a null char, as automatically added by C |
| 49 | if (CPV->getNumOperands() == 0 || |
| 50 | !cast<Constant>(*(CPV->op_end()-1))->isNullValue()) |
| 51 | isString = false; |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 52 | |
| 53 | if (isString) { |
| 54 | Result = "\""; |
Chris Lattner | 2f5eb4e | 2002-05-09 03:56:52 +0000 | [diff] [blame] | 55 | // Do not include the last character, which we know is null |
| 56 | for (unsigned i = 0, e = CPV->getNumOperands()-1; i != e; ++i) { |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 57 | unsigned char C = (ETy == Type::SByteTy) ? |
| 58 | (unsigned char)cast<ConstantSInt>(CPV->getOperand(i))->getValue() : |
| 59 | (unsigned char)cast<ConstantUInt>(CPV->getOperand(i))->getValue(); |
| 60 | |
| 61 | if (isprint(C)) { |
| 62 | Result += C; |
| 63 | } else { |
Chris Lattner | 2f5eb4e | 2002-05-09 03:56:52 +0000 | [diff] [blame] | 64 | switch (C) { |
| 65 | case '\n': Result += "\\n"; break; |
| 66 | case '\t': Result += "\\t"; break; |
| 67 | case '\r': Result += "\\r"; break; |
| 68 | case '\v': Result += "\\v"; break; |
| 69 | case '\a': Result += "\\a"; break; |
| 70 | default: |
| 71 | Result += "\\x"; |
| 72 | Result += ( C/16 < 10) ? ( C/16 +'0') : ( C/16 -10+'A'); |
| 73 | Result += ((C&15) < 10) ? ((C&15)+'0') : ((C&15)-10+'A'); |
| 74 | break; |
| 75 | } |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 76 | } |
| 77 | } |
| 78 | Result += "\""; |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 79 | } else { |
| 80 | Result = "{"; |
| 81 | if (CPV->getNumOperands()) { |
| 82 | Result += " " + getConstStrValue(cast<Constant>(CPV->getOperand(0))); |
| 83 | for (unsigned i = 1; i < CPV->getNumOperands(); i++) |
| 84 | Result += ", " + getConstStrValue(cast<Constant>(CPV->getOperand(i))); |
| 85 | } |
| 86 | Result += " }"; |
| 87 | } |
| 88 | |
| 89 | return Result; |
| 90 | } |
| 91 | |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 92 | static std::string getConstStrValue(const Constant* CPV) { |
Chris Lattner | 3ef6dc7 | 2002-05-09 14:40:11 +0000 | [diff] [blame] | 93 | switch (CPV->getType()->getPrimitiveID()) { |
Chris Lattner | 4fbf26d | 2002-05-09 20:53:56 +0000 | [diff] [blame^] | 94 | case Type::BoolTyID: return CPV == ConstantBool::False ? "0" : "1"; |
Chris Lattner | 3ef6dc7 | 2002-05-09 14:40:11 +0000 | [diff] [blame] | 95 | case Type::SByteTyID: |
| 96 | case Type::ShortTyID: |
Chris Lattner | 4fbf26d | 2002-05-09 20:53:56 +0000 | [diff] [blame^] | 97 | case Type::IntTyID: return itostr(cast<ConstantSInt>(CPV)->getValue()); |
| 98 | case Type::LongTyID: return itostr(cast<ConstantSInt>(CPV)->getValue())+"ll"; |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 99 | |
Chris Lattner | 3ef6dc7 | 2002-05-09 14:40:11 +0000 | [diff] [blame] | 100 | case Type::UByteTyID: |
Chris Lattner | 4fbf26d | 2002-05-09 20:53:56 +0000 | [diff] [blame^] | 101 | case Type::UShortTyID:return utostr(cast<ConstantUInt>(CPV)->getValue()); |
| 102 | case Type::UIntTyID: return utostr(cast<ConstantUInt>(CPV)->getValue())+"u"; |
| 103 | case Type::ULongTyID:return utostr(cast<ConstantUInt>(CPV)->getValue())+"ull"; |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 104 | |
Chris Lattner | 3ef6dc7 | 2002-05-09 14:40:11 +0000 | [diff] [blame] | 105 | case Type::FloatTyID: |
Chris Lattner | 4fbf26d | 2002-05-09 20:53:56 +0000 | [diff] [blame^] | 106 | case Type::DoubleTyID: return ftostr(cast<ConstantFP>(CPV)->getValue()); |
Chris Lattner | 3ef6dc7 | 2002-05-09 14:40:11 +0000 | [diff] [blame] | 107 | |
Chris Lattner | 4fbf26d | 2002-05-09 20:53:56 +0000 | [diff] [blame^] | 108 | case Type::ArrayTyID: return getConstArrayStrValue(CPV); |
Chris Lattner | 3ef6dc7 | 2002-05-09 14:40:11 +0000 | [diff] [blame] | 109 | |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 110 | case Type::StructTyID: { |
Chris Lattner | 3ef6dc7 | 2002-05-09 14:40:11 +0000 | [diff] [blame] | 111 | std::string Result = "{"; |
| 112 | if (CPV->getNumOperands()) { |
| 113 | Result += " " + getConstStrValue(cast<Constant>(CPV->getOperand(0))); |
| 114 | for (unsigned i = 1; i < CPV->getNumOperands(); i++) |
| 115 | Result += ", " + getConstStrValue(cast<Constant>(CPV->getOperand(i))); |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 116 | } |
Chris Lattner | 3ef6dc7 | 2002-05-09 14:40:11 +0000 | [diff] [blame] | 117 | return Result + " }"; |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 118 | } |
| 119 | |
Chris Lattner | 3ef6dc7 | 2002-05-09 14:40:11 +0000 | [diff] [blame] | 120 | default: |
| 121 | cerr << "Unknown constant type: " << CPV << "\n"; |
| 122 | abort(); |
| 123 | } |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 124 | } |
| 125 | |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 126 | // Pass the Type* variable and and the variable name and this prints out the |
| 127 | // variable declaration. |
Chris Lattner | deed7a5 | 2002-05-09 15:18:52 +0000 | [diff] [blame] | 128 | // |
Chris Lattner | 16c7bb2 | 2002-05-09 02:28:59 +0000 | [diff] [blame] | 129 | static string calcTypeNameVar(const Type *Ty, |
Chris Lattner | 3ef6dc7 | 2002-05-09 14:40:11 +0000 | [diff] [blame] | 130 | map<const Type *, string> &TypeNames, |
| 131 | const string &NameSoFar, bool ignoreName = false){ |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 132 | if (Ty->isPrimitiveType()) |
| 133 | switch (Ty->getPrimitiveID()) { |
Chris Lattner | deed7a5 | 2002-05-09 15:18:52 +0000 | [diff] [blame] | 134 | case Type::VoidTyID: return "void " + NameSoFar; |
| 135 | case Type::BoolTyID: return "bool " + NameSoFar; |
| 136 | case Type::UByteTyID: return "unsigned char " + NameSoFar; |
| 137 | case Type::SByteTyID: return "signed char " + NameSoFar; |
| 138 | case Type::UShortTyID: return "unsigned short " + NameSoFar; |
| 139 | case Type::ShortTyID: return "short " + NameSoFar; |
| 140 | case Type::UIntTyID: return "unsigned " + NameSoFar; |
| 141 | case Type::IntTyID: return "int " + NameSoFar; |
| 142 | case Type::ULongTyID: return "unsigned long long " + NameSoFar; |
| 143 | case Type::LongTyID: return "signed long long " + NameSoFar; |
Chris Lattner | 1f02c89 | 2002-05-09 20:14:10 +0000 | [diff] [blame] | 144 | case Type::FloatTyID: return "float " + NameSoFar; |
| 145 | case Type::DoubleTyID: return "double " + NameSoFar; |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 146 | default : |
Chris Lattner | deed7a5 | 2002-05-09 15:18:52 +0000 | [diff] [blame] | 147 | cerr << "Unknown primitive type: " << Ty << "\n"; |
| 148 | abort(); |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 149 | } |
| 150 | |
| 151 | // Check to see if the type is named. |
Chris Lattner | 3ef6dc7 | 2002-05-09 14:40:11 +0000 | [diff] [blame] | 152 | if (!ignoreName) { |
| 153 | map<const Type *, string>::iterator I = TypeNames.find(Ty); |
| 154 | if (I != TypeNames.end()) |
| 155 | return I->second + " " + NameSoFar; |
| 156 | } |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 157 | |
Chris Lattner | 3ef6dc7 | 2002-05-09 14:40:11 +0000 | [diff] [blame] | 158 | string Result; |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 159 | switch (Ty->getPrimitiveID()) { |
| 160 | case Type::FunctionTyID: { |
Chris Lattner | 7683a12 | 2002-05-09 20:33:35 +0000 | [diff] [blame] | 161 | const FunctionType *MTy = cast<FunctionType>(Ty); |
Chris Lattner | 3ef6dc7 | 2002-05-09 14:40:11 +0000 | [diff] [blame] | 162 | Result += calcTypeNameVar(MTy->getReturnType(), TypeNames, ""); |
Chris Lattner | 7683a12 | 2002-05-09 20:33:35 +0000 | [diff] [blame] | 163 | Result += " " + NameSoFar + " ("; |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 164 | for (FunctionType::ParamTypes::const_iterator |
| 165 | I = MTy->getParamTypes().begin(), |
| 166 | E = MTy->getParamTypes().end(); I != E; ++I) { |
| 167 | if (I != MTy->getParamTypes().begin()) |
| 168 | Result += ", "; |
Chris Lattner | 3ef6dc7 | 2002-05-09 14:40:11 +0000 | [diff] [blame] | 169 | Result += calcTypeNameVar(*I, TypeNames, ""); |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 170 | } |
| 171 | if (MTy->isVarArg()) { |
| 172 | if (!MTy->getParamTypes().empty()) |
| 173 | Result += ", "; |
| 174 | Result += "..."; |
| 175 | } |
Chris Lattner | 4fbf26d | 2002-05-09 20:53:56 +0000 | [diff] [blame^] | 176 | return Result + ")"; |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 177 | } |
| 178 | case Type::StructTyID: { |
| 179 | const StructType *STy = cast<const StructType>(Ty); |
Chris Lattner | 8c3c4bf | 2002-05-09 15:49:41 +0000 | [diff] [blame] | 180 | Result = NameSoFar + " {\n"; |
| 181 | unsigned indx = 0; |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 182 | for (StructType::ElementTypes::const_iterator |
| 183 | I = STy->getElementTypes().begin(), |
| 184 | E = STy->getElementTypes().end(); I != E; ++I) { |
Chris Lattner | 8c3c4bf | 2002-05-09 15:49:41 +0000 | [diff] [blame] | 185 | Result += " " +calcTypeNameVar(*I, TypeNames, "field" + utostr(indx++)); |
| 186 | Result += ";\n"; |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 187 | } |
Chris Lattner | 4fbf26d | 2002-05-09 20:53:56 +0000 | [diff] [blame^] | 188 | return Result + "}"; |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 189 | } |
| 190 | |
| 191 | case Type::PointerTyID: { |
Chris Lattner | 4fbf26d | 2002-05-09 20:53:56 +0000 | [diff] [blame^] | 192 | return calcTypeNameVar(cast<const PointerType>(Ty)->getElementType(), |
| 193 | TypeNames, "*" + NameSoFar); |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 194 | } |
| 195 | |
| 196 | case Type::ArrayTyID: { |
| 197 | const ArrayType *ATy = cast<const ArrayType>(Ty); |
| 198 | int NumElements = ATy->getNumElements(); |
Chris Lattner | 4fbf26d | 2002-05-09 20:53:56 +0000 | [diff] [blame^] | 199 | return calcTypeNameVar(ATy->getElementType(), TypeNames, |
| 200 | NameSoFar + "[" + itostr(NumElements) + "]"); |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 201 | } |
| 202 | default: |
| 203 | assert(0 && "Unhandled case in getTypeProps!"); |
Chris Lattner | 4fbf26d | 2002-05-09 20:53:56 +0000 | [diff] [blame^] | 204 | abort(); |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 205 | } |
| 206 | |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 207 | return Result; |
| 208 | } |
| 209 | |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 210 | namespace { |
Chris Lattner | 4fbf26d | 2002-05-09 20:53:56 +0000 | [diff] [blame^] | 211 | class CWriter : public InstVisitor<CWriter> { |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 212 | ostream& Out; |
| 213 | SlotCalculator &Table; |
| 214 | const Module *TheModule; |
| 215 | map<const Type *, string> TypeNames; |
| 216 | public: |
| 217 | inline CWriter(ostream &o, SlotCalculator &Tab, const Module *M) |
| 218 | : Out(o), Table(Tab), TheModule(M) { |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 219 | } |
| 220 | |
Chris Lattner | 8c3c4bf | 2002-05-09 15:49:41 +0000 | [diff] [blame] | 221 | inline void write(Module *M) { printModule(M); } |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 222 | |
Chris Lattner | b5af06a | 2002-05-09 03:06:06 +0000 | [diff] [blame] | 223 | ostream& printTypeVar(const Type *Ty, const string &VariableName) { |
Chris Lattner | 3ef6dc7 | 2002-05-09 14:40:11 +0000 | [diff] [blame] | 224 | return Out << calcTypeNameVar(Ty, TypeNames, VariableName); |
Chris Lattner | b5af06a | 2002-05-09 03:06:06 +0000 | [diff] [blame] | 225 | } |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 226 | |
Chris Lattner | 2a7ab2e | 2002-05-09 04:39:00 +0000 | [diff] [blame] | 227 | ostream& printType(const Type *Ty) { |
Chris Lattner | 3ef6dc7 | 2002-05-09 14:40:11 +0000 | [diff] [blame] | 228 | return Out << calcTypeNameVar(Ty, TypeNames, ""); |
Chris Lattner | 2a7ab2e | 2002-05-09 04:39:00 +0000 | [diff] [blame] | 229 | } |
Chris Lattner | b5af06a | 2002-05-09 03:06:06 +0000 | [diff] [blame] | 230 | |
Chris Lattner | 3ef6dc7 | 2002-05-09 14:40:11 +0000 | [diff] [blame] | 231 | void writeOperand(const Value *Operand); |
Chris Lattner | b5af06a | 2002-05-09 03:06:06 +0000 | [diff] [blame] | 232 | |
| 233 | string getValueName(const Value *V); |
Chris Lattner | b5af06a | 2002-05-09 03:06:06 +0000 | [diff] [blame] | 234 | |
Chris Lattner | 4fbf26d | 2002-05-09 20:53:56 +0000 | [diff] [blame^] | 235 | private : |
Chris Lattner | 8c3c4bf | 2002-05-09 15:49:41 +0000 | [diff] [blame] | 236 | void printModule(Module *M); |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 237 | void printSymbolTable(const SymbolTable &ST); |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 238 | void printGlobal(const GlobalVariable *GV); |
Chris Lattner | 16c7bb2 | 2002-05-09 02:28:59 +0000 | [diff] [blame] | 239 | void printFunctionSignature(const Function *F); |
| 240 | void printFunctionDecl(const Function *F); // Print just the forward decl |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 241 | |
Chris Lattner | 8c3c4bf | 2002-05-09 15:49:41 +0000 | [diff] [blame] | 242 | void printFunction(Function *); |
Chris Lattner | b5af06a | 2002-05-09 03:06:06 +0000 | [diff] [blame] | 243 | |
Chris Lattner | 4fbf26d | 2002-05-09 20:53:56 +0000 | [diff] [blame^] | 244 | // Instruction visitation functions |
| 245 | friend class InstVisitor<CWriter>; |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 246 | |
Chris Lattner | 4fbf26d | 2002-05-09 20:53:56 +0000 | [diff] [blame^] | 247 | void visitReturnInst(ReturnInst *I); |
| 248 | void visitBranchInst(BranchInst *I); |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 249 | |
Chris Lattner | 4fbf26d | 2002-05-09 20:53:56 +0000 | [diff] [blame^] | 250 | void visitPHINode(PHINode *I) {} |
| 251 | void visitNot(GenericUnaryInst *I); |
| 252 | void visitBinaryOperator(Instruction *I); |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 253 | |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 254 | void visitCastInst(CastInst *I); |
| 255 | void visitCallInst(CallInst *I); |
Chris Lattner | 2f5f51a | 2002-05-09 03:28:37 +0000 | [diff] [blame] | 256 | void visitShiftInst(ShiftInst *I) { visitBinaryOperator(I); } |
Chris Lattner | 4fbf26d | 2002-05-09 20:53:56 +0000 | [diff] [blame^] | 257 | |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 258 | void visitMallocInst(MallocInst *I); |
| 259 | void visitAllocaInst(AllocaInst *I); |
| 260 | void visitFreeInst(FreeInst *I); |
| 261 | void visitLoadInst(LoadInst *I); |
| 262 | void visitStoreInst(StoreInst *I); |
| 263 | void visitGetElementPtrInst(GetElementPtrInst *I); |
Chris Lattner | 2f5f51a | 2002-05-09 03:28:37 +0000 | [diff] [blame] | 264 | |
Chris Lattner | 4fbf26d | 2002-05-09 20:53:56 +0000 | [diff] [blame^] | 265 | void visitInstruction(Instruction *I) { |
| 266 | cerr << "C Writer does not know about " << I; |
| 267 | abort(); |
| 268 | } |
| 269 | |
| 270 | void outputLValue(Instruction *I) { |
| 271 | Out << " " << getValueName(I) << " = "; |
| 272 | } |
| 273 | void printBranchToBlock(BasicBlock *CurBlock, BasicBlock *SuccBlock, |
| 274 | unsigned Indent); |
| 275 | void printIndexingExpr(MemAccessInst *MAI); |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 276 | }; |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 277 | } |
| 278 | |
Chris Lattner | 2f49902 | 2002-05-09 04:21:21 +0000 | [diff] [blame] | 279 | // We dont want identifier names with ., space, - in them. |
| 280 | // So we replace them with _ |
| 281 | static string makeNameProper(string x) { |
| 282 | string tmp; |
| 283 | for (string::iterator sI = x.begin(), sEnd = x.end(); sI != sEnd; sI++) |
| 284 | switch (*sI) { |
Chris Lattner | deed7a5 | 2002-05-09 15:18:52 +0000 | [diff] [blame] | 285 | case '.': tmp += "d_"; break; |
| 286 | case ' ': tmp += "s_"; break; |
| 287 | case '-': tmp += "D_"; break; |
Chris Lattner | 2f49902 | 2002-05-09 04:21:21 +0000 | [diff] [blame] | 288 | case '_': tmp += "__"; break; |
| 289 | default: tmp += *sI; |
| 290 | } |
| 291 | |
| 292 | return tmp; |
| 293 | } |
| 294 | |
Chris Lattner | b5af06a | 2002-05-09 03:06:06 +0000 | [diff] [blame] | 295 | string CWriter::getValueName(const Value *V) { |
Chris Lattner | 2f49902 | 2002-05-09 04:21:21 +0000 | [diff] [blame] | 296 | if (V->hasName()) { // Print out the label if it exists... |
| 297 | if (isa<GlobalValue>(V)) // Do not mangle globals... |
| 298 | return makeNameProper(V->getName()); |
| 299 | |
Chris Lattner | 2d05a1a | 2002-05-09 05:16:40 +0000 | [diff] [blame] | 300 | return "l" + utostr(V->getType()->getUniqueID()) + "_" + |
| 301 | makeNameProper(V->getName()); |
Chris Lattner | 2f49902 | 2002-05-09 04:21:21 +0000 | [diff] [blame] | 302 | } |
Chris Lattner | b5af06a | 2002-05-09 03:06:06 +0000 | [diff] [blame] | 303 | |
| 304 | int Slot = Table.getValSlot(V); |
| 305 | assert(Slot >= 0 && "Invalid value!"); |
Chris Lattner | 2d05a1a | 2002-05-09 05:16:40 +0000 | [diff] [blame] | 306 | return "ltmp_" + itostr(Slot) + "_" + utostr(V->getType()->getUniqueID()); |
Chris Lattner | b5af06a | 2002-05-09 03:06:06 +0000 | [diff] [blame] | 307 | } |
| 308 | |
Chris Lattner | 4fbf26d | 2002-05-09 20:53:56 +0000 | [diff] [blame^] | 309 | void CWriter::writeOperand(const Value *Operand) { |
| 310 | if (isa<GlobalVariable>(Operand)) |
| 311 | Out << "(&"; // Global variables are references as their addresses by llvm |
| 312 | |
| 313 | if (Operand->hasName()) { |
| 314 | Out << getValueName(Operand); |
| 315 | } else if (const Constant *CPV = dyn_cast<const Constant>(Operand)) { |
| 316 | if (isa<ConstantPointerNull>(CPV)) { |
| 317 | Out << "(("; |
| 318 | printTypeVar(CPV->getType(), ""); |
| 319 | Out << ")NULL)"; |
| 320 | } else |
| 321 | Out << getConstStrValue(CPV); |
| 322 | } else { |
| 323 | int Slot = Table.getValSlot(Operand); |
| 324 | assert(Slot >= 0 && "Malformed LLVM!"); |
| 325 | Out << "ltmp_" << Slot << "_" << Operand->getType()->getUniqueID(); |
| 326 | } |
| 327 | |
| 328 | if (isa<GlobalVariable>(Operand)) |
| 329 | Out << ")"; |
| 330 | } |
| 331 | |
Chris Lattner | 8c3c4bf | 2002-05-09 15:49:41 +0000 | [diff] [blame] | 332 | void CWriter::printModule(Module *M) { |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 333 | // printing stdlib inclusion |
| 334 | // Out << "#include <stdlib.h>\n"; |
| 335 | |
Chris Lattner | 16c7bb2 | 2002-05-09 02:28:59 +0000 | [diff] [blame] | 336 | // get declaration for alloca |
| 337 | Out << "/* Provide Declarations */\n" |
Chris Lattner | b5af06a | 2002-05-09 03:06:06 +0000 | [diff] [blame] | 338 | << "#include <alloca.h>\n\n" |
Chris Lattner | 16c7bb2 | 2002-05-09 02:28:59 +0000 | [diff] [blame] | 339 | |
| 340 | // Provide a definition for null if one does not already exist. |
Chris Lattner | b5af06a | 2002-05-09 03:06:06 +0000 | [diff] [blame] | 341 | << "#ifndef NULL\n#define NULL 0\n#endif\n\n" |
Chris Lattner | 16c7bb2 | 2002-05-09 02:28:59 +0000 | [diff] [blame] | 342 | << "typedef unsigned char bool;\n" |
| 343 | |
| 344 | << "\n\n/* Global Symbols */\n"; |
| 345 | |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 346 | // Loop over the symbol table, emitting all named constants... |
| 347 | if (M->hasSymbolTable()) |
| 348 | printSymbolTable(*M->getSymbolTable()); |
| 349 | |
Chris Lattner | 16c7bb2 | 2002-05-09 02:28:59 +0000 | [diff] [blame] | 350 | Out << "\n\n/* Global Data */\n"; |
Chris Lattner | deed7a5 | 2002-05-09 15:18:52 +0000 | [diff] [blame] | 351 | for (Module::const_giterator I = M->gbegin(), E = M->gend(); I != E; ++I) { |
| 352 | GlobalVariable *GV = *I; |
| 353 | if (GV->hasInternalLinkage()) Out << "static "; |
| 354 | printTypeVar(GV->getType()->getElementType(), getValueName(GV)); |
| 355 | |
| 356 | if (GV->hasInitializer()) { |
| 357 | Out << " = " ; |
| 358 | writeOperand(GV->getInitializer()); |
| 359 | } |
| 360 | Out << ";\n"; |
| 361 | } |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 362 | |
Chris Lattner | 16c7bb2 | 2002-05-09 02:28:59 +0000 | [diff] [blame] | 363 | // First output all the declarations of the functions as C requires Functions |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 364 | // be declared before they are used. |
Chris Lattner | 16c7bb2 | 2002-05-09 02:28:59 +0000 | [diff] [blame] | 365 | // |
| 366 | Out << "\n\n/* Function Declarations */\n"; |
| 367 | for_each(M->begin(), M->end(), bind_obj(this, &CWriter::printFunctionDecl)); |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 368 | |
Chris Lattner | 16c7bb2 | 2002-05-09 02:28:59 +0000 | [diff] [blame] | 369 | // Output all of the functions... |
| 370 | Out << "\n\n/* Function Bodies */\n"; |
| 371 | for_each(M->begin(), M->end(), bind_obj(this, &CWriter::printFunction)); |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 372 | } |
| 373 | |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 374 | |
| 375 | // printSymbolTable - Run through symbol table looking for named constants |
| 376 | // if a named constant is found, emit it's declaration... |
| 377 | // Assuming that symbol table has only types and constants. |
| 378 | void CWriter::printSymbolTable(const SymbolTable &ST) { |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 379 | for (SymbolTable::const_iterator TI = ST.begin(); TI != ST.end(); ++TI) { |
| 380 | SymbolTable::type_const_iterator I = ST.type_begin(TI->first); |
| 381 | SymbolTable::type_const_iterator End = ST.type_end(TI->first); |
| 382 | |
Chris Lattner | 3ef6dc7 | 2002-05-09 14:40:11 +0000 | [diff] [blame] | 383 | for (; I != End; ++I) |
| 384 | if (const Type *Ty = dyn_cast<const StructType>(I->second)) { |
| 385 | string Name = "struct l_" + I->first; |
| 386 | Out << Name << ";\n"; |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 387 | |
Chris Lattner | 3ef6dc7 | 2002-05-09 14:40:11 +0000 | [diff] [blame] | 388 | TypeNames.insert(std::make_pair(Ty, Name)); |
| 389 | } |
| 390 | } |
| 391 | |
| 392 | Out << "\n"; |
| 393 | |
| 394 | for (SymbolTable::const_iterator TI = ST.begin(); TI != ST.end(); ++TI) { |
| 395 | SymbolTable::type_const_iterator I = ST.type_begin(TI->first); |
| 396 | SymbolTable::type_const_iterator End = ST.type_end(TI->first); |
| 397 | |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 398 | for (; I != End; ++I) { |
| 399 | const Value *V = I->second; |
Chris Lattner | 2d05a1a | 2002-05-09 05:16:40 +0000 | [diff] [blame] | 400 | if (const Type *Ty = dyn_cast<const Type>(V)) { |
Chris Lattner | 3ef6dc7 | 2002-05-09 14:40:11 +0000 | [diff] [blame] | 401 | string Name = "l_" + I->first; |
Chris Lattner | 1f02c89 | 2002-05-09 20:14:10 +0000 | [diff] [blame] | 402 | if (isa<StructType>(Ty)) |
| 403 | Name = "struct " + Name; |
| 404 | else |
| 405 | Out << "typedef "; |
| 406 | |
Chris Lattner | 3ef6dc7 | 2002-05-09 14:40:11 +0000 | [diff] [blame] | 407 | Out << calcTypeNameVar(Ty, TypeNames, Name, true) << ";\n"; |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 408 | } |
| 409 | } |
| 410 | } |
| 411 | } |
| 412 | |
Chris Lattner | 3ef6dc7 | 2002-05-09 14:40:11 +0000 | [diff] [blame] | 413 | |
Chris Lattner | 16c7bb2 | 2002-05-09 02:28:59 +0000 | [diff] [blame] | 414 | // printFunctionDecl - Print function declaration |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 415 | // |
Chris Lattner | 16c7bb2 | 2002-05-09 02:28:59 +0000 | [diff] [blame] | 416 | void CWriter::printFunctionDecl(const Function *F) { |
| 417 | printFunctionSignature(F); |
| 418 | Out << ";\n"; |
| 419 | } |
| 420 | |
| 421 | void CWriter::printFunctionSignature(const Function *F) { |
| 422 | if (F->hasInternalLinkage()) Out << "static "; |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 423 | |
| 424 | // Loop over the arguments, printing them... |
Chris Lattner | 16c7bb2 | 2002-05-09 02:28:59 +0000 | [diff] [blame] | 425 | const FunctionType *FT = cast<FunctionType>(F->getFunctionType()); |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 426 | |
Chris Lattner | 16c7bb2 | 2002-05-09 02:28:59 +0000 | [diff] [blame] | 427 | // Print out the return type and name... |
Chris Lattner | 2a7ab2e | 2002-05-09 04:39:00 +0000 | [diff] [blame] | 428 | printType(F->getReturnType()); |
Chris Lattner | 1f02c89 | 2002-05-09 20:14:10 +0000 | [diff] [blame] | 429 | Out << getValueName(F) << "("; |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 430 | |
Chris Lattner | 16c7bb2 | 2002-05-09 02:28:59 +0000 | [diff] [blame] | 431 | if (!F->isExternal()) { |
Chris Lattner | deed7a5 | 2002-05-09 15:18:52 +0000 | [diff] [blame] | 432 | if (!F->getArgumentList().empty()) { |
| 433 | printTypeVar(F->getArgumentList().front()->getType(), |
| 434 | getValueName(F->getArgumentList().front())); |
| 435 | |
| 436 | for (Function::ArgumentListType::const_iterator |
| 437 | I = F->getArgumentList().begin()+1, |
| 438 | E = F->getArgumentList().end(); I != E; ++I) { |
| 439 | Out << ", "; |
| 440 | printTypeVar((*I)->getType(), getValueName(*I)); |
| 441 | } |
| 442 | } |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 443 | } else { |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 444 | // Loop over the arguments, printing them... |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 445 | for (FunctionType::ParamTypes::const_iterator I = |
Chris Lattner | 16c7bb2 | 2002-05-09 02:28:59 +0000 | [diff] [blame] | 446 | FT->getParamTypes().begin(), |
| 447 | E = FT->getParamTypes().end(); I != E; ++I) { |
| 448 | if (I != FT->getParamTypes().begin()) Out << ", "; |
Chris Lattner | 2a7ab2e | 2002-05-09 04:39:00 +0000 | [diff] [blame] | 449 | printType(*I); |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 450 | } |
| 451 | } |
| 452 | |
| 453 | // Finish printing arguments... |
Chris Lattner | 16c7bb2 | 2002-05-09 02:28:59 +0000 | [diff] [blame] | 454 | if (FT->isVarArg()) { |
| 455 | if (FT->getParamTypes().size()) Out << ", "; |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 456 | Out << "..."; // Output varargs portion of signature! |
| 457 | } |
Chris Lattner | 16c7bb2 | 2002-05-09 02:28:59 +0000 | [diff] [blame] | 458 | Out << ")"; |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 459 | } |
| 460 | |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 461 | |
Chris Lattner | 8c3c4bf | 2002-05-09 15:49:41 +0000 | [diff] [blame] | 462 | void CWriter::printFunction(Function *F) { |
Chris Lattner | 16c7bb2 | 2002-05-09 02:28:59 +0000 | [diff] [blame] | 463 | if (F->isExternal()) return; |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 464 | |
Chris Lattner | f34ee81 | 2002-05-09 03:12:34 +0000 | [diff] [blame] | 465 | Table.incorporateFunction(F); |
| 466 | |
Chris Lattner | 8c3c4bf | 2002-05-09 15:49:41 +0000 | [diff] [blame] | 467 | printFunctionSignature(F); |
| 468 | Out << " {\n"; |
| 469 | |
Chris Lattner | 497e19a | 2002-05-09 20:39:03 +0000 | [diff] [blame] | 470 | // print local variable information for the function |
Chris Lattner | 7683a12 | 2002-05-09 20:33:35 +0000 | [diff] [blame] | 471 | for (inst_iterator I = inst_begin(F), E = inst_end(F); I != E; ++I) |
Chris Lattner | 497e19a | 2002-05-09 20:39:03 +0000 | [diff] [blame] | 472 | if ((*I)->getType() != Type::VoidTy) { |
Chris Lattner | 16c7bb2 | 2002-05-09 02:28:59 +0000 | [diff] [blame] | 473 | Out << " "; |
Chris Lattner | 497e19a | 2002-05-09 20:39:03 +0000 | [diff] [blame] | 474 | printTypeVar((*I)->getType(), getValueName(*I)); |
Chris Lattner | 16c7bb2 | 2002-05-09 02:28:59 +0000 | [diff] [blame] | 475 | Out << ";\n"; |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 476 | } |
Chris Lattner | 16c7bb2 | 2002-05-09 02:28:59 +0000 | [diff] [blame] | 477 | |
| 478 | // print the basic blocks |
Chris Lattner | 8c3c4bf | 2002-05-09 15:49:41 +0000 | [diff] [blame] | 479 | for (Function::iterator I = F->begin(), E = F->end(); I != E; ++I) { |
| 480 | BasicBlock *BB = *I, *Prev = I != F->begin() ? *(I-1) : 0; |
| 481 | |
| 482 | // Don't print the label for the basic block if there are no uses, or if the |
| 483 | // only terminator use is the precessor basic block's terminator. We have |
| 484 | // to scan the use list because PHI nodes use basic blocks too but do not |
| 485 | // require a label to be generated. |
| 486 | // |
| 487 | bool NeedsLabel = false; |
| 488 | for (Value::use_iterator UI = BB->use_begin(), UE = BB->use_end(); |
| 489 | UI != UE; ++UI) |
| 490 | if (TerminatorInst *TI = dyn_cast<TerminatorInst>(*UI)) |
| 491 | if (TI != Prev->getTerminator()) { |
| 492 | NeedsLabel = true; |
| 493 | break; |
| 494 | } |
| 495 | |
| 496 | if (NeedsLabel) Out << getValueName(BB) << ":\n"; |
| 497 | |
| 498 | // Output all of the instructions in the basic block... |
| 499 | // print the basic blocks |
Chris Lattner | 4fbf26d | 2002-05-09 20:53:56 +0000 | [diff] [blame^] | 500 | visit(BB); |
Chris Lattner | 8c3c4bf | 2002-05-09 15:49:41 +0000 | [diff] [blame] | 501 | } |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 502 | |
Chris Lattner | 8c3c4bf | 2002-05-09 15:49:41 +0000 | [diff] [blame] | 503 | Out << "}\n\n"; |
Chris Lattner | f34ee81 | 2002-05-09 03:12:34 +0000 | [diff] [blame] | 504 | Table.purgeFunction(); |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 505 | } |
| 506 | |
Chris Lattner | 4fbf26d | 2002-05-09 20:53:56 +0000 | [diff] [blame^] | 507 | // Specific Instruction type classes... note that all of the casts are |
| 508 | // neccesary because we use the instruction classes as opaque types... |
| 509 | // |
| 510 | void CWriter::visitReturnInst(ReturnInst *I) { |
| 511 | // Don't output a void return if this is the last basic block in the function |
| 512 | if (I->getNumOperands() == 0 && |
| 513 | *(I->getParent()->getParent()->end()-1) == I->getParent()) |
| 514 | return; |
Chris Lattner | 4440826 | 2002-05-09 03:50:42 +0000 | [diff] [blame] | 515 | |
Chris Lattner | 4fbf26d | 2002-05-09 20:53:56 +0000 | [diff] [blame^] | 516 | Out << " return"; |
| 517 | if (I->getNumOperands()) { |
| 518 | Out << " "; |
| 519 | writeOperand(I->getOperand(0)); |
Chris Lattner | 16c7bb2 | 2002-05-09 02:28:59 +0000 | [diff] [blame] | 520 | } |
Chris Lattner | 4fbf26d | 2002-05-09 20:53:56 +0000 | [diff] [blame^] | 521 | Out << ";\n"; |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 522 | } |
| 523 | |
Chris Lattner | 4fbf26d | 2002-05-09 20:53:56 +0000 | [diff] [blame^] | 524 | // Return true if BB1 immediately preceeds BB2. |
| 525 | static bool BBFollowsBB(BasicBlock *BB1, BasicBlock *BB2) { |
| 526 | Function *F = BB1->getParent(); |
| 527 | Function::iterator I = find(F->begin(), F->end(), BB1); |
| 528 | assert(I != F->end() && "BB not in function!"); |
| 529 | return *(I+1) == BB2; |
| 530 | } |
| 531 | |
| 532 | static bool isGotoCodeNeccessary(BasicBlock *From, BasicBlock *To) { |
| 533 | // If PHI nodes need copies, we need the copy code... |
| 534 | if (isa<PHINode>(To->front()) || |
| 535 | !BBFollowsBB(From, To)) // Not directly successor, need goto |
| 536 | return true; |
| 537 | |
| 538 | // Otherwise we don't need the code. |
| 539 | return false; |
| 540 | } |
| 541 | |
| 542 | void CWriter::printBranchToBlock(BasicBlock *CurBB, BasicBlock *Succ, |
| 543 | unsigned Indent) { |
| 544 | for (BasicBlock::iterator I = Succ->begin(); |
| 545 | PHINode *PN = dyn_cast<PHINode>(*I); ++I) { |
| 546 | // now we have to do the printing |
| 547 | Out << string(Indent, ' '); |
| 548 | outputLValue(PN); |
| 549 | writeOperand(PN->getIncomingValue(PN->getBasicBlockIndex(CurBB))); |
| 550 | Out << "; /* for PHI node */\n"; |
| 551 | } |
| 552 | |
| 553 | if (!BBFollowsBB(CurBB, Succ)) { |
| 554 | Out << string(Indent, ' ') << " goto "; |
| 555 | writeOperand(Succ); |
| 556 | Out << ";\n"; |
| 557 | } |
| 558 | } |
| 559 | |
| 560 | // Brach instruction printing - Avoid printing out a brach to a basic block that |
| 561 | // immediately succeeds the current one. |
| 562 | // |
| 563 | void CWriter::visitBranchInst(BranchInst *I) { |
| 564 | if (I->isConditional()) { |
| 565 | if (isGotoCodeNeccessary(I->getParent(), I->getSuccessor(0))) { |
| 566 | Out << " if ("; |
| 567 | writeOperand(I->getCondition()); |
| 568 | Out << ") {\n"; |
| 569 | |
| 570 | printBranchToBlock(I->getParent(), I->getSuccessor(0), 2); |
| 571 | |
| 572 | if (isGotoCodeNeccessary(I->getParent(), I->getSuccessor(1))) { |
| 573 | Out << " } else {\n"; |
| 574 | printBranchToBlock(I->getParent(), I->getSuccessor(1), 2); |
| 575 | } |
| 576 | } else { |
| 577 | // First goto not neccesary, assume second one is... |
| 578 | Out << " if (!"; |
| 579 | writeOperand(I->getCondition()); |
| 580 | Out << ") {\n"; |
| 581 | |
| 582 | printBranchToBlock(I->getParent(), I->getSuccessor(1), 2); |
| 583 | } |
| 584 | |
| 585 | Out << " }\n"; |
| 586 | } else { |
| 587 | printBranchToBlock(I->getParent(), I->getSuccessor(0), 0); |
| 588 | } |
| 589 | Out << "\n"; |
| 590 | } |
| 591 | |
| 592 | |
| 593 | void CWriter::visitNot(GenericUnaryInst *I) { |
| 594 | outputLValue(I); |
| 595 | Out << "~"; |
| 596 | writeOperand(I->getOperand(0)); |
| 597 | Out << ";\n"; |
| 598 | } |
| 599 | |
| 600 | void CWriter::visitBinaryOperator(Instruction *I) { |
| 601 | // binary instructions, shift instructions, setCond instructions. |
| 602 | outputLValue(I); |
| 603 | if (isa<PointerType>(I->getType())) { |
| 604 | Out << "("; |
| 605 | printType(I->getType()); |
| 606 | Out << ")"; |
| 607 | } |
| 608 | |
| 609 | if (isa<PointerType>(I->getType())) Out << "(long long)"; |
| 610 | writeOperand(I->getOperand(0)); |
| 611 | |
| 612 | switch (I->getOpcode()) { |
| 613 | case Instruction::Add: Out << " + "; break; |
| 614 | case Instruction::Sub: Out << " - "; break; |
| 615 | case Instruction::Mul: Out << "*"; break; |
| 616 | case Instruction::Div: Out << "/"; break; |
| 617 | case Instruction::Rem: Out << "%"; break; |
| 618 | case Instruction::And: Out << " & "; break; |
| 619 | case Instruction::Or: Out << " | "; break; |
| 620 | case Instruction::Xor: Out << " ^ "; break; |
| 621 | case Instruction::SetEQ: Out << " == "; break; |
| 622 | case Instruction::SetNE: Out << " != "; break; |
| 623 | case Instruction::SetLE: Out << " <= "; break; |
| 624 | case Instruction::SetGE: Out << " >= "; break; |
| 625 | case Instruction::SetLT: Out << " < "; break; |
| 626 | case Instruction::SetGT: Out << " > "; break; |
| 627 | case Instruction::Shl : Out << " << "; break; |
| 628 | case Instruction::Shr : Out << " >> "; break; |
| 629 | default: cerr << "Invalid operator type!" << I; abort(); |
| 630 | } |
| 631 | |
| 632 | if (isa<PointerType>(I->getType())) Out << "(long long)"; |
| 633 | writeOperand(I->getOperand(1)); |
| 634 | Out << ";\n"; |
| 635 | } |
| 636 | |
| 637 | void CWriter::visitCastInst(CastInst *I) { |
| 638 | outputLValue(I); |
| 639 | Out << "("; |
| 640 | printType(I->getType()); |
| 641 | Out << ")"; |
| 642 | writeOperand(I->getOperand(0)); |
| 643 | Out << ";\n"; |
| 644 | } |
| 645 | |
| 646 | void CWriter::visitCallInst(CallInst *I) { |
| 647 | if (I->getType() != Type::VoidTy) |
| 648 | outputLValue(I); |
| 649 | else |
| 650 | Out << " "; |
| 651 | |
| 652 | const PointerType *PTy = cast<PointerType>(I->getCalledValue()->getType()); |
| 653 | const FunctionType *FTy = cast<FunctionType>(PTy->getElementType()); |
| 654 | const Type *RetTy = FTy->getReturnType(); |
| 655 | |
| 656 | Out << getValueName(I->getOperand(0)) << "("; |
| 657 | |
| 658 | if (I->getNumOperands() > 1) { |
| 659 | writeOperand(I->getOperand(1)); |
| 660 | |
| 661 | for (unsigned op = 2, Eop = I->getNumOperands(); op != Eop; ++op) { |
| 662 | Out << ", "; |
| 663 | writeOperand(I->getOperand(op)); |
| 664 | } |
| 665 | } |
| 666 | Out << ");\n"; |
| 667 | } |
| 668 | |
| 669 | void CWriter::visitMallocInst(MallocInst *I) { |
| 670 | outputLValue(I); |
| 671 | Out << "("; |
| 672 | printType(I->getType()); |
| 673 | Out << ")malloc(sizeof("; |
| 674 | printType(I->getType()->getElementType()); |
| 675 | Out << ")"; |
| 676 | |
| 677 | if (I->isArrayAllocation()) { |
| 678 | Out << " * " ; |
| 679 | writeOperand(I->getOperand(0)); |
| 680 | } |
| 681 | Out << ");\n"; |
| 682 | } |
| 683 | |
| 684 | void CWriter::visitAllocaInst(AllocaInst *I) { |
| 685 | outputLValue(I); |
| 686 | Out << "("; |
| 687 | printType(I->getType()); |
| 688 | Out << ") alloca(sizeof("; |
| 689 | printType(I->getType()->getElementType()); |
| 690 | Out << ")"; |
| 691 | if (I->isArrayAllocation()) { |
| 692 | Out << " * " ; |
| 693 | writeOperand(I->getOperand(0)); |
| 694 | } |
| 695 | Out << ");\n"; |
| 696 | } |
| 697 | |
| 698 | void CWriter::visitFreeInst(FreeInst *I) { |
| 699 | Out << " free("; |
| 700 | writeOperand(I->getOperand(0)); |
| 701 | Out << ");\n"; |
| 702 | } |
| 703 | |
| 704 | void CWriter::printIndexingExpr(MemAccessInst *MAI) { |
| 705 | MemAccessInst::op_iterator I = MAI->idx_begin(), E = MAI->idx_end(); |
| 706 | if (I == E) |
| 707 | Out << "*"; // Implicit zero first argument: '*x' is equivalent to 'x[0]' |
| 708 | |
| 709 | writeOperand(MAI->getPointerOperand()); |
| 710 | |
| 711 | if (I == E) return; |
| 712 | |
| 713 | // Print out the -> operator if possible... |
| 714 | Constant *CI = dyn_cast<Constant>(*I); |
| 715 | if (CI && CI->isNullValue() && I+1 != E && |
| 716 | (*(I+1))->getType() == Type::UByteTy) { |
| 717 | ++I; |
| 718 | Out << "->field" << cast<ConstantUInt>(*I)->getValue(); |
| 719 | ++I; |
| 720 | } |
| 721 | |
| 722 | for (; I != E; ++I) |
| 723 | if ((*I)->getType() == Type::UIntTy) { |
| 724 | Out << "["; |
| 725 | writeOperand(*I); |
| 726 | Out << "]"; |
| 727 | } else { |
| 728 | Out << ".field" << cast<ConstantUInt>(*I)->getValue(); |
| 729 | } |
| 730 | } |
| 731 | |
| 732 | void CWriter::visitLoadInst(LoadInst *I) { |
| 733 | outputLValue(I); |
| 734 | printIndexingExpr(I); |
| 735 | Out << ";\n"; |
| 736 | } |
| 737 | |
| 738 | void CWriter::visitStoreInst(StoreInst *I) { |
| 739 | Out << " "; |
| 740 | printIndexingExpr(I); |
| 741 | Out << " = "; |
| 742 | writeOperand(I->getOperand(0)); |
| 743 | Out << ";\n"; |
| 744 | } |
| 745 | |
| 746 | void CWriter::visitGetElementPtrInst(GetElementPtrInst *I) { |
| 747 | outputLValue(I); |
| 748 | Out << "&"; |
| 749 | printIndexingExpr(I); |
| 750 | Out << ";\n"; |
| 751 | } |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 752 | |
| 753 | //===----------------------------------------------------------------------===// |
| 754 | // External Interface declaration |
| 755 | //===----------------------------------------------------------------------===// |
| 756 | |
Chris Lattner | f34ee81 | 2002-05-09 03:12:34 +0000 | [diff] [blame] | 757 | void WriteToC(const Module *M, ostream &Out) { |
| 758 | assert(M && "You can't write a null module!!"); |
| 759 | SlotCalculator SlotTable(M, false); |
| 760 | CWriter W(Out, SlotTable, M); |
Chris Lattner | 8c3c4bf | 2002-05-09 15:49:41 +0000 | [diff] [blame] | 761 | W.write((Module*)M); |
Sumant Kowshik | 9ddc86c | 2002-05-08 18:09:58 +0000 | [diff] [blame] | 762 | Out.flush(); |
| 763 | } |