35205c6edb38e02e4ce8861c62e0062b12707aeb
[oota-llvm.git] / lib / Target / CBackend / CBackend.cpp
1 //===-- CBackend.cpp - Library for converting LLVM code to C --------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This library converts LLVM code to C code, compilable by GCC and other C
11 // compilers.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "CTargetMachine.h"
16 #include "llvm/CallingConv.h"
17 #include "llvm/Constants.h"
18 #include "llvm/DerivedTypes.h"
19 #include "llvm/Module.h"
20 #include "llvm/Instructions.h"
21 #include "llvm/ParameterAttributes.h"
22 #include "llvm/Pass.h"
23 #include "llvm/PassManager.h"
24 #include "llvm/TypeSymbolTable.h"
25 #include "llvm/Intrinsics.h"
26 #include "llvm/IntrinsicInst.h"
27 #include "llvm/InlineAsm.h"
28 #include "llvm/Analysis/ConstantsScanner.h"
29 #include "llvm/Analysis/FindUsedTypes.h"
30 #include "llvm/Analysis/LoopInfo.h"
31 #include "llvm/CodeGen/IntrinsicLowering.h"
32 #include "llvm/Transforms/Scalar.h"
33 #include "llvm/Target/TargetMachineRegistry.h"
34 #include "llvm/Target/TargetAsmInfo.h"
35 #include "llvm/Target/TargetData.h"
36 #include "llvm/Support/CallSite.h"
37 #include "llvm/Support/CFG.h"
38 #include "llvm/Support/GetElementPtrTypeIterator.h"
39 #include "llvm/Support/InstVisitor.h"
40 #include "llvm/Support/Mangler.h"
41 #include "llvm/Support/MathExtras.h"
42 #include "llvm/ADT/StringExtras.h"
43 #include "llvm/ADT/STLExtras.h"
44 #include "llvm/Support/MathExtras.h"
45 #include "llvm/Config/config.h"
46 #include <algorithm>
47 #include <sstream>
48 using namespace llvm;
49
50 namespace {
51   // Register the target.
52   RegisterTarget<CTargetMachine> X("c", "  C backend");
53
54   /// CBackendNameAllUsedStructsAndMergeFunctions - This pass inserts names for
55   /// any unnamed structure types that are used by the program, and merges
56   /// external functions with the same name.
57   ///
58   class CBackendNameAllUsedStructsAndMergeFunctions : public ModulePass {
59   public:
60     static char ID;
61     CBackendNameAllUsedStructsAndMergeFunctions() 
62       : ModulePass((intptr_t)&ID) {}
63     void getAnalysisUsage(AnalysisUsage &AU) const {
64       AU.addRequired<FindUsedTypes>();
65     }
66
67     virtual const char *getPassName() const {
68       return "C backend type canonicalizer";
69     }
70
71     virtual bool runOnModule(Module &M);
72   };
73
74   char CBackendNameAllUsedStructsAndMergeFunctions::ID = 0;
75
76   /// CWriter - This class is the main chunk of code that converts an LLVM
77   /// module to a C translation unit.
78   class CWriter : public FunctionPass, public InstVisitor<CWriter> {
79     std::ostream &Out;
80     IntrinsicLowering *IL;
81     Mangler *Mang;
82     LoopInfo *LI;
83     const Module *TheModule;
84     const TargetAsmInfo* TAsm;
85     const TargetData* TD;
86     std::map<const Type *, std::string> TypeNames;
87     std::map<const ConstantFP *, unsigned> FPConstantMap;
88     std::set<Function*> intrinsicPrototypesAlreadyGenerated;
89
90   public:
91     static char ID;
92     CWriter(std::ostream &o) 
93       : FunctionPass((intptr_t)&ID), Out(o), IL(0), Mang(0), LI(0), 
94         TheModule(0), TAsm(0), TD(0) {}
95
96     virtual const char *getPassName() const { return "C backend"; }
97
98     void getAnalysisUsage(AnalysisUsage &AU) const {
99       AU.addRequired<LoopInfo>();
100       AU.setPreservesAll();
101     }
102
103     virtual bool doInitialization(Module &M);
104
105     bool runOnFunction(Function &F) {
106       LI = &getAnalysis<LoopInfo>();
107
108       // Get rid of intrinsics we can't handle.
109       lowerIntrinsics(F);
110
111       // Output all floating point constants that cannot be printed accurately.
112       printFloatingPointConstants(F);
113
114       printFunction(F);
115       FPConstantMap.clear();
116       return false;
117     }
118
119     virtual bool doFinalization(Module &M) {
120       // Free memory...
121       delete Mang;
122       TypeNames.clear();
123       return false;
124     }
125
126     std::ostream &printType(std::ostream &Out, const Type *Ty, 
127                             bool isSigned = false,
128                             const std::string &VariableName = "",
129                             bool IgnoreName = false);
130     std::ostream &printSimpleType(std::ostream &Out, const Type *Ty, 
131                                      bool isSigned, 
132                                      const std::string &NameSoFar = "");
133
134     void printStructReturnPointerFunctionType(std::ostream &Out,
135                                               const PointerType *Ty);
136     
137     void writeOperand(Value *Operand);
138     void writeOperandRaw(Value *Operand);
139     void writeOperandInternal(Value *Operand);
140     void writeOperandWithCast(Value* Operand, unsigned Opcode);
141     void writeOperandWithCast(Value* Operand, const ICmpInst &I);
142     bool writeInstructionCast(const Instruction &I);
143
144   private :
145     std::string InterpretASMConstraint(InlineAsm::ConstraintInfo& c);
146
147     void lowerIntrinsics(Function &F);
148
149     void printModule(Module *M);
150     void printModuleTypes(const TypeSymbolTable &ST);
151     void printContainedStructs(const Type *Ty, std::set<const StructType *> &);
152     void printFloatingPointConstants(Function &F);
153     void printFunctionSignature(const Function *F, bool Prototype);
154
155     void printFunction(Function &);
156     void printBasicBlock(BasicBlock *BB);
157     void printLoop(Loop *L);
158
159     void printCast(unsigned opcode, const Type *SrcTy, const Type *DstTy);
160     void printConstant(Constant *CPV);
161     void printConstantWithCast(Constant *CPV, unsigned Opcode);
162     bool printConstExprCast(const ConstantExpr *CE);
163     void printConstantArray(ConstantArray *CPA);
164     void printConstantVector(ConstantVector *CP);
165
166     // isInlinableInst - Attempt to inline instructions into their uses to build
167     // trees as much as possible.  To do this, we have to consistently decide
168     // what is acceptable to inline, so that variable declarations don't get
169     // printed and an extra copy of the expr is not emitted.
170     //
171     static bool isInlinableInst(const Instruction &I) {
172       // Always inline cmp instructions, even if they are shared by multiple
173       // expressions.  GCC generates horrible code if we don't.
174       if (isa<CmpInst>(I)) 
175         return true;
176
177       // Must be an expression, must be used exactly once.  If it is dead, we
178       // emit it inline where it would go.
179       if (I.getType() == Type::VoidTy || !I.hasOneUse() ||
180           isa<TerminatorInst>(I) || isa<CallInst>(I) || isa<PHINode>(I) ||
181           isa<LoadInst>(I) || isa<VAArgInst>(I))
182         // Don't inline a load across a store or other bad things!
183         return false;
184
185       // Must not be used in inline asm
186       if (I.hasOneUse() && isInlineAsm(*I.use_back())) return false;
187
188       // Only inline instruction it if it's use is in the same BB as the inst.
189       return I.getParent() == cast<Instruction>(I.use_back())->getParent();
190     }
191
192     // isDirectAlloca - Define fixed sized allocas in the entry block as direct
193     // variables which are accessed with the & operator.  This causes GCC to
194     // generate significantly better code than to emit alloca calls directly.
195     //
196     static const AllocaInst *isDirectAlloca(const Value *V) {
197       const AllocaInst *AI = dyn_cast<AllocaInst>(V);
198       if (!AI) return false;
199       if (AI->isArrayAllocation())
200         return 0;   // FIXME: we can also inline fixed size array allocas!
201       if (AI->getParent() != &AI->getParent()->getParent()->getEntryBlock())
202         return 0;
203       return AI;
204     }
205     
206     // isInlineAsm - Check if the instruction is a call to an inline asm chunk
207     static bool isInlineAsm(const Instruction& I) {
208       if (isa<CallInst>(&I) && isa<InlineAsm>(I.getOperand(0)))
209         return true;
210       return false;
211     }
212     
213     // Instruction visitation functions
214     friend class InstVisitor<CWriter>;
215
216     void visitReturnInst(ReturnInst &I);
217     void visitBranchInst(BranchInst &I);
218     void visitSwitchInst(SwitchInst &I);
219     void visitInvokeInst(InvokeInst &I) {
220       assert(0 && "Lowerinvoke pass didn't work!");
221     }
222
223     void visitUnwindInst(UnwindInst &I) {
224       assert(0 && "Lowerinvoke pass didn't work!");
225     }
226     void visitUnreachableInst(UnreachableInst &I);
227
228     void visitPHINode(PHINode &I);
229     void visitBinaryOperator(Instruction &I);
230     void visitICmpInst(ICmpInst &I);
231     void visitFCmpInst(FCmpInst &I);
232
233     void visitCastInst (CastInst &I);
234     void visitSelectInst(SelectInst &I);
235     void visitCallInst (CallInst &I);
236     void visitInlineAsm(CallInst &I);
237
238     void visitMallocInst(MallocInst &I);
239     void visitAllocaInst(AllocaInst &I);
240     void visitFreeInst  (FreeInst   &I);
241     void visitLoadInst  (LoadInst   &I);
242     void visitStoreInst (StoreInst  &I);
243     void visitGetElementPtrInst(GetElementPtrInst &I);
244     void visitVAArgInst (VAArgInst &I);
245
246     void visitInstruction(Instruction &I) {
247       cerr << "C Writer does not know about " << I;
248       abort();
249     }
250
251     void outputLValue(Instruction *I) {
252       Out << "  " << GetValueName(I) << " = ";
253     }
254
255     bool isGotoCodeNecessary(BasicBlock *From, BasicBlock *To);
256     void printPHICopiesForSuccessor(BasicBlock *CurBlock,
257                                     BasicBlock *Successor, unsigned Indent);
258     void printBranchToBlock(BasicBlock *CurBlock, BasicBlock *SuccBlock,
259                             unsigned Indent);
260     void printIndexingExpression(Value *Ptr, gep_type_iterator I,
261                                  gep_type_iterator E);
262
263     std::string GetValueName(const Value *Operand);
264   };
265 }
266
267 char CWriter::ID = 0;
268
269 /// This method inserts names for any unnamed structure types that are used by
270 /// the program, and removes names from structure types that are not used by the
271 /// program.
272 ///
273 bool CBackendNameAllUsedStructsAndMergeFunctions::runOnModule(Module &M) {
274   // Get a set of types that are used by the program...
275   std::set<const Type *> UT = getAnalysis<FindUsedTypes>().getTypes();
276
277   // Loop over the module symbol table, removing types from UT that are
278   // already named, and removing names for types that are not used.
279   //
280   TypeSymbolTable &TST = M.getTypeSymbolTable();
281   for (TypeSymbolTable::iterator TI = TST.begin(), TE = TST.end();
282        TI != TE; ) {
283     TypeSymbolTable::iterator I = TI++;
284     
285     // If this isn't a struct type, remove it from our set of types to name.
286     // This simplifies emission later.
287     if (!isa<StructType>(I->second) && !isa<OpaqueType>(I->second)) {
288       TST.remove(I);
289     } else {
290       // If this is not used, remove it from the symbol table.
291       std::set<const Type *>::iterator UTI = UT.find(I->second);
292       if (UTI == UT.end())
293         TST.remove(I);
294       else
295         UT.erase(UTI);    // Only keep one name for this type.
296     }
297   }
298
299   // UT now contains types that are not named.  Loop over it, naming
300   // structure types.
301   //
302   bool Changed = false;
303   unsigned RenameCounter = 0;
304   for (std::set<const Type *>::const_iterator I = UT.begin(), E = UT.end();
305        I != E; ++I)
306     if (const StructType *ST = dyn_cast<StructType>(*I)) {
307       while (M.addTypeName("unnamed"+utostr(RenameCounter), ST))
308         ++RenameCounter;
309       Changed = true;
310     }
311       
312       
313   // Loop over all external functions and globals.  If we have two with
314   // identical names, merge them.
315   // FIXME: This code should disappear when we don't allow values with the same
316   // names when they have different types!
317   std::map<std::string, GlobalValue*> ExtSymbols;
318   for (Module::iterator I = M.begin(), E = M.end(); I != E;) {
319     Function *GV = I++;
320     if (GV->isDeclaration() && GV->hasName()) {
321       std::pair<std::map<std::string, GlobalValue*>::iterator, bool> X
322         = ExtSymbols.insert(std::make_pair(GV->getName(), GV));
323       if (!X.second) {
324         // Found a conflict, replace this global with the previous one.
325         GlobalValue *OldGV = X.first->second;
326         GV->replaceAllUsesWith(ConstantExpr::getBitCast(OldGV, GV->getType()));
327         GV->eraseFromParent();
328         Changed = true;
329       }
330     }
331   }
332   // Do the same for globals.
333   for (Module::global_iterator I = M.global_begin(), E = M.global_end();
334        I != E;) {
335     GlobalVariable *GV = I++;
336     if (GV->isDeclaration() && GV->hasName()) {
337       std::pair<std::map<std::string, GlobalValue*>::iterator, bool> X
338         = ExtSymbols.insert(std::make_pair(GV->getName(), GV));
339       if (!X.second) {
340         // Found a conflict, replace this global with the previous one.
341         GlobalValue *OldGV = X.first->second;
342         GV->replaceAllUsesWith(ConstantExpr::getBitCast(OldGV, GV->getType()));
343         GV->eraseFromParent();
344         Changed = true;
345       }
346     }
347   }
348   
349   return Changed;
350 }
351
352 /// printStructReturnPointerFunctionType - This is like printType for a struct
353 /// return type, except, instead of printing the type as void (*)(Struct*, ...)
354 /// print it as "Struct (*)(...)", for struct return functions.
355 void CWriter::printStructReturnPointerFunctionType(std::ostream &Out,
356                                                    const PointerType *TheTy) {
357   const FunctionType *FTy = cast<FunctionType>(TheTy->getElementType());
358   std::stringstream FunctionInnards;
359   FunctionInnards << " (*) (";
360   bool PrintedType = false;
361
362   FunctionType::param_iterator I = FTy->param_begin(), E = FTy->param_end();
363   const Type *RetTy = cast<PointerType>(I->get())->getElementType();
364   unsigned Idx = 1;
365   const ParamAttrsList *Attrs = FTy->getParamAttrs();
366   for (++I; I != E; ++I) {
367     if (PrintedType)
368       FunctionInnards << ", ";
369     printType(FunctionInnards, *I, 
370         /*isSigned=*/Attrs && Attrs->paramHasAttr(Idx, ParamAttr::SExt), "");
371     PrintedType = true;
372   }
373   if (FTy->isVarArg()) {
374     if (PrintedType)
375       FunctionInnards << ", ...";
376   } else if (!PrintedType) {
377     FunctionInnards << "void";
378   }
379   FunctionInnards << ')';
380   std::string tstr = FunctionInnards.str();
381   printType(Out, RetTy, 
382       /*isSigned=*/Attrs && Attrs->paramHasAttr(0, ParamAttr::SExt), tstr);
383 }
384
385 std::ostream &
386 CWriter::printSimpleType(std::ostream &Out, const Type *Ty, bool isSigned,
387                             const std::string &NameSoFar) {
388   assert((Ty->isPrimitiveType() || Ty->isInteger()) && 
389          "Invalid type for printSimpleType");
390   switch (Ty->getTypeID()) {
391   case Type::VoidTyID:   return Out << "void " << NameSoFar;
392   case Type::IntegerTyID: {
393     unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth();
394     if (NumBits == 1) 
395       return Out << "bool " << NameSoFar;
396     else if (NumBits <= 8)
397       return Out << (isSigned?"signed":"unsigned") << " char " << NameSoFar;
398     else if (NumBits <= 16)
399       return Out << (isSigned?"signed":"unsigned") << " short " << NameSoFar;
400     else if (NumBits <= 32)
401       return Out << (isSigned?"signed":"unsigned") << " int " << NameSoFar;
402     else { 
403       assert(NumBits <= 64 && "Bit widths > 64 not implemented yet");
404       return Out << (isSigned?"signed":"unsigned") << " long long "<< NameSoFar;
405     }
406   }
407   case Type::FloatTyID:  return Out << "float "   << NameSoFar;
408   case Type::DoubleTyID: return Out << "double "  << NameSoFar;
409   // Lacking emulation of FP80 on PPC, etc., we assume whichever of these is
410   // present matches host 'long double'.
411   case Type::X86_FP80TyID:
412   case Type::PPC_FP128TyID:
413   case Type::FP128TyID:  return Out << "long double " << NameSoFar;
414   default :
415     cerr << "Unknown primitive type: " << *Ty << "\n";
416     abort();
417   }
418 }
419
420 // Pass the Type* and the variable name and this prints out the variable
421 // declaration.
422 //
423 std::ostream &CWriter::printType(std::ostream &Out, const Type *Ty,
424                                  bool isSigned, const std::string &NameSoFar,
425                                  bool IgnoreName) {
426   if (Ty->isPrimitiveType() || Ty->isInteger()) {
427     printSimpleType(Out, Ty, isSigned, NameSoFar);
428     return Out;
429   }
430
431   // Check to see if the type is named.
432   if (!IgnoreName || isa<OpaqueType>(Ty)) {
433     std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
434     if (I != TypeNames.end()) return Out << I->second << ' ' << NameSoFar;
435   }
436
437   switch (Ty->getTypeID()) {
438   case Type::FunctionTyID: {
439     const FunctionType *FTy = cast<FunctionType>(Ty);
440     std::stringstream FunctionInnards;
441     FunctionInnards << " (" << NameSoFar << ") (";
442     const ParamAttrsList *Attrs = FTy->getParamAttrs();
443     unsigned Idx = 1;
444     for (FunctionType::param_iterator I = FTy->param_begin(),
445            E = FTy->param_end(); I != E; ++I) {
446       if (I != FTy->param_begin())
447         FunctionInnards << ", ";
448       printType(FunctionInnards, *I, 
449          /*isSigned=*/Attrs && Attrs->paramHasAttr(Idx, ParamAttr::SExt), "");
450       ++Idx;
451     }
452     if (FTy->isVarArg()) {
453       if (FTy->getNumParams())
454         FunctionInnards << ", ...";
455     } else if (!FTy->getNumParams()) {
456       FunctionInnards << "void";
457     }
458     FunctionInnards << ')';
459     std::string tstr = FunctionInnards.str();
460     printType(Out, FTy->getReturnType(), 
461         /*isSigned=*/Attrs && Attrs->paramHasAttr(0, ParamAttr::SExt), tstr);
462     return Out;
463   }
464   case Type::StructTyID: {
465     const StructType *STy = cast<StructType>(Ty);
466     Out << NameSoFar + " {\n";
467     unsigned Idx = 0;
468     for (StructType::element_iterator I = STy->element_begin(),
469            E = STy->element_end(); I != E; ++I) {
470       Out << "  ";
471       printType(Out, *I, false, "field" + utostr(Idx++));
472       Out << ";\n";
473     }
474     Out << '}';
475     if (STy->isPacked())
476       Out << " __attribute__ ((packed))";
477     return Out;
478   }
479
480   case Type::PointerTyID: {
481     const PointerType *PTy = cast<PointerType>(Ty);
482     std::string ptrName = "*" + NameSoFar;
483
484     if (isa<ArrayType>(PTy->getElementType()) ||
485         isa<VectorType>(PTy->getElementType()))
486       ptrName = "(" + ptrName + ")";
487
488     return printType(Out, PTy->getElementType(), false, ptrName);
489   }
490
491   case Type::ArrayTyID: {
492     const ArrayType *ATy = cast<ArrayType>(Ty);
493     unsigned NumElements = ATy->getNumElements();
494     if (NumElements == 0) NumElements = 1;
495     return printType(Out, ATy->getElementType(), false,
496                      NameSoFar + "[" + utostr(NumElements) + "]");
497   }
498
499   case Type::VectorTyID: {
500     const VectorType *PTy = cast<VectorType>(Ty);
501     unsigned NumElements = PTy->getNumElements();
502     if (NumElements == 0) NumElements = 1;
503     return printType(Out, PTy->getElementType(), false,
504                      NameSoFar + "[" + utostr(NumElements) + "]");
505   }
506
507   case Type::OpaqueTyID: {
508     static int Count = 0;
509     std::string TyName = "struct opaque_" + itostr(Count++);
510     assert(TypeNames.find(Ty) == TypeNames.end());
511     TypeNames[Ty] = TyName;
512     return Out << TyName << ' ' << NameSoFar;
513   }
514   default:
515     assert(0 && "Unhandled case in getTypeProps!");
516     abort();
517   }
518
519   return Out;
520 }
521
522 void CWriter::printConstantArray(ConstantArray *CPA) {
523
524   // As a special case, print the array as a string if it is an array of
525   // ubytes or an array of sbytes with positive values.
526   //
527   const Type *ETy = CPA->getType()->getElementType();
528   bool isString = (ETy == Type::Int8Ty || ETy == Type::Int8Ty);
529
530   // Make sure the last character is a null char, as automatically added by C
531   if (isString && (CPA->getNumOperands() == 0 ||
532                    !cast<Constant>(*(CPA->op_end()-1))->isNullValue()))
533     isString = false;
534
535   if (isString) {
536     Out << '\"';
537     // Keep track of whether the last number was a hexadecimal escape
538     bool LastWasHex = false;
539
540     // Do not include the last character, which we know is null
541     for (unsigned i = 0, e = CPA->getNumOperands()-1; i != e; ++i) {
542       unsigned char C = cast<ConstantInt>(CPA->getOperand(i))->getZExtValue();
543
544       // Print it out literally if it is a printable character.  The only thing
545       // to be careful about is when the last letter output was a hex escape
546       // code, in which case we have to be careful not to print out hex digits
547       // explicitly (the C compiler thinks it is a continuation of the previous
548       // character, sheesh...)
549       //
550       if (isprint(C) && (!LastWasHex || !isxdigit(C))) {
551         LastWasHex = false;
552         if (C == '"' || C == '\\')
553           Out << "\\" << C;
554         else
555           Out << C;
556       } else {
557         LastWasHex = false;
558         switch (C) {
559         case '\n': Out << "\\n"; break;
560         case '\t': Out << "\\t"; break;
561         case '\r': Out << "\\r"; break;
562         case '\v': Out << "\\v"; break;
563         case '\a': Out << "\\a"; break;
564         case '\"': Out << "\\\""; break;
565         case '\'': Out << "\\\'"; break;
566         default:
567           Out << "\\x";
568           Out << (char)(( C/16  < 10) ? ( C/16 +'0') : ( C/16 -10+'A'));
569           Out << (char)(((C&15) < 10) ? ((C&15)+'0') : ((C&15)-10+'A'));
570           LastWasHex = true;
571           break;
572         }
573       }
574     }
575     Out << '\"';
576   } else {
577     Out << '{';
578     if (CPA->getNumOperands()) {
579       Out << ' ';
580       printConstant(cast<Constant>(CPA->getOperand(0)));
581       for (unsigned i = 1, e = CPA->getNumOperands(); i != e; ++i) {
582         Out << ", ";
583         printConstant(cast<Constant>(CPA->getOperand(i)));
584       }
585     }
586     Out << " }";
587   }
588 }
589
590 void CWriter::printConstantVector(ConstantVector *CP) {
591   Out << '{';
592   if (CP->getNumOperands()) {
593     Out << ' ';
594     printConstant(cast<Constant>(CP->getOperand(0)));
595     for (unsigned i = 1, e = CP->getNumOperands(); i != e; ++i) {
596       Out << ", ";
597       printConstant(cast<Constant>(CP->getOperand(i)));
598     }
599   }
600   Out << " }";
601 }
602
603 // isFPCSafeToPrint - Returns true if we may assume that CFP may be written out
604 // textually as a double (rather than as a reference to a stack-allocated
605 // variable). We decide this by converting CFP to a string and back into a
606 // double, and then checking whether the conversion results in a bit-equal
607 // double to the original value of CFP. This depends on us and the target C
608 // compiler agreeing on the conversion process (which is pretty likely since we
609 // only deal in IEEE FP).
610 //
611 static bool isFPCSafeToPrint(const ConstantFP *CFP) {
612   // Do long doubles in hex for now.
613   if (CFP->getType()!=Type::FloatTy && CFP->getType()!=Type::DoubleTy)
614     return false;
615   APFloat APF = APFloat(CFP->getValueAPF());  // copy
616   if (CFP->getType()==Type::FloatTy)
617     APF.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven);
618 #if HAVE_PRINTF_A && ENABLE_CBE_PRINTF_A
619   char Buffer[100];
620   sprintf(Buffer, "%a", APF.convertToDouble());
621   if (!strncmp(Buffer, "0x", 2) ||
622       !strncmp(Buffer, "-0x", 3) ||
623       !strncmp(Buffer, "+0x", 3))
624     return APF.bitwiseIsEqual(APFloat(atof(Buffer)));
625   return false;
626 #else
627   std::string StrVal = ftostr(APF);
628
629   while (StrVal[0] == ' ')
630     StrVal.erase(StrVal.begin());
631
632   // Check to make sure that the stringized number is not some string like "Inf"
633   // or NaN.  Check that the string matches the "[-+]?[0-9]" regex.
634   if ((StrVal[0] >= '0' && StrVal[0] <= '9') ||
635       ((StrVal[0] == '-' || StrVal[0] == '+') &&
636        (StrVal[1] >= '0' && StrVal[1] <= '9')))
637     // Reparse stringized version!
638     return APF.bitwiseIsEqual(APFloat(atof(StrVal.c_str())));
639   return false;
640 #endif
641 }
642
643 /// Print out the casting for a cast operation. This does the double casting
644 /// necessary for conversion to the destination type, if necessary. 
645 /// @brief Print a cast
646 void CWriter::printCast(unsigned opc, const Type *SrcTy, const Type *DstTy) {
647   // Print the destination type cast
648   switch (opc) {
649     case Instruction::UIToFP:
650     case Instruction::SIToFP:
651     case Instruction::IntToPtr:
652     case Instruction::Trunc:
653     case Instruction::BitCast:
654     case Instruction::FPExt:
655     case Instruction::FPTrunc: // For these the DstTy sign doesn't matter
656       Out << '(';
657       printType(Out, DstTy);
658       Out << ')';
659       break;
660     case Instruction::ZExt:
661     case Instruction::PtrToInt:
662     case Instruction::FPToUI: // For these, make sure we get an unsigned dest
663       Out << '(';
664       printSimpleType(Out, DstTy, false);
665       Out << ')';
666       break;
667     case Instruction::SExt: 
668     case Instruction::FPToSI: // For these, make sure we get a signed dest
669       Out << '(';
670       printSimpleType(Out, DstTy, true);
671       Out << ')';
672       break;
673     default:
674       assert(0 && "Invalid cast opcode");
675   }
676
677   // Print the source type cast
678   switch (opc) {
679     case Instruction::UIToFP:
680     case Instruction::ZExt:
681       Out << '(';
682       printSimpleType(Out, SrcTy, false);
683       Out << ')';
684       break;
685     case Instruction::SIToFP:
686     case Instruction::SExt:
687       Out << '(';
688       printSimpleType(Out, SrcTy, true); 
689       Out << ')';
690       break;
691     case Instruction::IntToPtr:
692     case Instruction::PtrToInt:
693       // Avoid "cast to pointer from integer of different size" warnings
694       Out << "(unsigned long)";
695       break;
696     case Instruction::Trunc:
697     case Instruction::BitCast:
698     case Instruction::FPExt:
699     case Instruction::FPTrunc:
700     case Instruction::FPToSI:
701     case Instruction::FPToUI:
702       break; // These don't need a source cast.
703     default:
704       assert(0 && "Invalid cast opcode");
705       break;
706   }
707 }
708
709 // printConstant - The LLVM Constant to C Constant converter.
710 void CWriter::printConstant(Constant *CPV) {
711   if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CPV)) {
712     switch (CE->getOpcode()) {
713     case Instruction::Trunc:
714     case Instruction::ZExt:
715     case Instruction::SExt:
716     case Instruction::FPTrunc:
717     case Instruction::FPExt:
718     case Instruction::UIToFP:
719     case Instruction::SIToFP:
720     case Instruction::FPToUI:
721     case Instruction::FPToSI:
722     case Instruction::PtrToInt:
723     case Instruction::IntToPtr:
724     case Instruction::BitCast:
725       Out << "(";
726       printCast(CE->getOpcode(), CE->getOperand(0)->getType(), CE->getType());
727       if (CE->getOpcode() == Instruction::SExt &&
728           CE->getOperand(0)->getType() == Type::Int1Ty) {
729         // Make sure we really sext from bool here by subtracting from 0
730         Out << "0-";
731       }
732       printConstant(CE->getOperand(0));
733       if (CE->getType() == Type::Int1Ty &&
734           (CE->getOpcode() == Instruction::Trunc ||
735            CE->getOpcode() == Instruction::FPToUI ||
736            CE->getOpcode() == Instruction::FPToSI ||
737            CE->getOpcode() == Instruction::PtrToInt)) {
738         // Make sure we really truncate to bool here by anding with 1
739         Out << "&1u";
740       }
741       Out << ')';
742       return;
743
744     case Instruction::GetElementPtr:
745       Out << "(&(";
746       printIndexingExpression(CE->getOperand(0), gep_type_begin(CPV),
747                               gep_type_end(CPV));
748       Out << "))";
749       return;
750     case Instruction::Select:
751       Out << '(';
752       printConstant(CE->getOperand(0));
753       Out << '?';
754       printConstant(CE->getOperand(1));
755       Out << ':';
756       printConstant(CE->getOperand(2));
757       Out << ')';
758       return;
759     case Instruction::Add:
760     case Instruction::Sub:
761     case Instruction::Mul:
762     case Instruction::SDiv:
763     case Instruction::UDiv:
764     case Instruction::FDiv:
765     case Instruction::URem:
766     case Instruction::SRem:
767     case Instruction::FRem:
768     case Instruction::And:
769     case Instruction::Or:
770     case Instruction::Xor:
771     case Instruction::ICmp:
772     case Instruction::Shl:
773     case Instruction::LShr:
774     case Instruction::AShr:
775     {
776       Out << '(';
777       bool NeedsClosingParens = printConstExprCast(CE); 
778       printConstantWithCast(CE->getOperand(0), CE->getOpcode());
779       switch (CE->getOpcode()) {
780       case Instruction::Add: Out << " + "; break;
781       case Instruction::Sub: Out << " - "; break;
782       case Instruction::Mul: Out << " * "; break;
783       case Instruction::URem:
784       case Instruction::SRem: 
785       case Instruction::FRem: Out << " % "; break;
786       case Instruction::UDiv: 
787       case Instruction::SDiv: 
788       case Instruction::FDiv: Out << " / "; break;
789       case Instruction::And: Out << " & "; break;
790       case Instruction::Or:  Out << " | "; break;
791       case Instruction::Xor: Out << " ^ "; break;
792       case Instruction::Shl: Out << " << "; break;
793       case Instruction::LShr:
794       case Instruction::AShr: Out << " >> "; break;
795       case Instruction::ICmp:
796         switch (CE->getPredicate()) {
797           case ICmpInst::ICMP_EQ: Out << " == "; break;
798           case ICmpInst::ICMP_NE: Out << " != "; break;
799           case ICmpInst::ICMP_SLT: 
800           case ICmpInst::ICMP_ULT: Out << " < "; break;
801           case ICmpInst::ICMP_SLE:
802           case ICmpInst::ICMP_ULE: Out << " <= "; break;
803           case ICmpInst::ICMP_SGT:
804           case ICmpInst::ICMP_UGT: Out << " > "; break;
805           case ICmpInst::ICMP_SGE:
806           case ICmpInst::ICMP_UGE: Out << " >= "; break;
807           default: assert(0 && "Illegal ICmp predicate");
808         }
809         break;
810       default: assert(0 && "Illegal opcode here!");
811       }
812       printConstantWithCast(CE->getOperand(1), CE->getOpcode());
813       if (NeedsClosingParens)
814         Out << "))";
815       Out << ')';
816       return;
817     }
818     case Instruction::FCmp: {
819       Out << '('; 
820       bool NeedsClosingParens = printConstExprCast(CE); 
821       if (CE->getPredicate() == FCmpInst::FCMP_FALSE)
822         Out << "0";
823       else if (CE->getPredicate() == FCmpInst::FCMP_TRUE)
824         Out << "1";
825       else {
826         const char* op = 0;
827         switch (CE->getPredicate()) {
828         default: assert(0 && "Illegal FCmp predicate");
829         case FCmpInst::FCMP_ORD: op = "ord"; break;
830         case FCmpInst::FCMP_UNO: op = "uno"; break;
831         case FCmpInst::FCMP_UEQ: op = "ueq"; break;
832         case FCmpInst::FCMP_UNE: op = "une"; break;
833         case FCmpInst::FCMP_ULT: op = "ult"; break;
834         case FCmpInst::FCMP_ULE: op = "ule"; break;
835         case FCmpInst::FCMP_UGT: op = "ugt"; break;
836         case FCmpInst::FCMP_UGE: op = "uge"; break;
837         case FCmpInst::FCMP_OEQ: op = "oeq"; break;
838         case FCmpInst::FCMP_ONE: op = "one"; break;
839         case FCmpInst::FCMP_OLT: op = "olt"; break;
840         case FCmpInst::FCMP_OLE: op = "ole"; break;
841         case FCmpInst::FCMP_OGT: op = "ogt"; break;
842         case FCmpInst::FCMP_OGE: op = "oge"; break;
843         }
844         Out << "llvm_fcmp_" << op << "(";
845         printConstantWithCast(CE->getOperand(0), CE->getOpcode());
846         Out << ", ";
847         printConstantWithCast(CE->getOperand(1), CE->getOpcode());
848         Out << ")";
849       }
850       if (NeedsClosingParens)
851         Out << "))";
852       Out << ')';
853     }
854     default:
855       cerr << "CWriter Error: Unhandled constant expression: "
856            << *CE << "\n";
857       abort();
858     }
859   } else if (isa<UndefValue>(CPV) && CPV->getType()->isFirstClassType()) {
860     Out << "((";
861     printType(Out, CPV->getType()); // sign doesn't matter
862     Out << ")/*UNDEF*/0)";
863     return;
864   }
865
866   if (ConstantInt *CI = dyn_cast<ConstantInt>(CPV)) {
867     const Type* Ty = CI->getType();
868     if (Ty == Type::Int1Ty)
869       Out << (CI->getZExtValue() ? '1' : '0') ;
870     else {
871       Out << "((";
872       printSimpleType(Out, Ty, false) << ')';
873       if (CI->isMinValue(true)) 
874         Out << CI->getZExtValue() << 'u';
875       else
876         Out << CI->getSExtValue();
877       if (Ty->getPrimitiveSizeInBits() > 32)
878         Out << "ll";
879       Out << ')';
880     }
881     return;
882   } 
883
884   switch (CPV->getType()->getTypeID()) {
885   case Type::FloatTyID:
886   case Type::DoubleTyID: 
887   case Type::X86_FP80TyID:
888   case Type::PPC_FP128TyID:
889   case Type::FP128TyID: {
890     ConstantFP *FPC = cast<ConstantFP>(CPV);
891     std::map<const ConstantFP*, unsigned>::iterator I = FPConstantMap.find(FPC);
892     if (I != FPConstantMap.end()) {
893       // Because of FP precision problems we must load from a stack allocated
894       // value that holds the value in hex.
895       Out << "(*(" << (FPC->getType() == Type::FloatTy ? "float" : 
896                        FPC->getType() == Type::DoubleTy ? "double" :
897                        "long double")
898           << "*)&FPConstant" << I->second << ')';
899     } else {
900       assert(FPC->getType() == Type::FloatTy || 
901              FPC->getType() == Type::DoubleTy);
902       double V = FPC->getType() == Type::FloatTy ? 
903                  FPC->getValueAPF().convertToFloat() : 
904                  FPC->getValueAPF().convertToDouble();
905       if (IsNAN(V)) {
906         // The value is NaN
907
908         // FIXME the actual NaN bits should be emitted.
909         // The prefix for a quiet NaN is 0x7FF8. For a signalling NaN,
910         // it's 0x7ff4.
911         const unsigned long QuietNaN = 0x7ff8UL;
912         //const unsigned long SignalNaN = 0x7ff4UL;
913
914         // We need to grab the first part of the FP #
915         char Buffer[100];
916
917         uint64_t ll = DoubleToBits(V);
918         sprintf(Buffer, "0x%llx", static_cast<long long>(ll));
919
920         std::string Num(&Buffer[0], &Buffer[6]);
921         unsigned long Val = strtoul(Num.c_str(), 0, 16);
922
923         if (FPC->getType() == Type::FloatTy)
924           Out << "LLVM_NAN" << (Val == QuietNaN ? "" : "S") << "F(\""
925               << Buffer << "\") /*nan*/ ";
926         else
927           Out << "LLVM_NAN" << (Val == QuietNaN ? "" : "S") << "(\""
928               << Buffer << "\") /*nan*/ ";
929       } else if (IsInf(V)) {
930         // The value is Inf
931         if (V < 0) Out << '-';
932         Out << "LLVM_INF" << (FPC->getType() == Type::FloatTy ? "F" : "")
933             << " /*inf*/ ";
934       } else {
935         std::string Num;
936 #if HAVE_PRINTF_A && ENABLE_CBE_PRINTF_A
937         // Print out the constant as a floating point number.
938         char Buffer[100];
939         sprintf(Buffer, "%a", V);
940         Num = Buffer;
941 #else
942         Num = ftostr(FPC->getValueAPF());
943 #endif
944        Out << Num;
945       }
946     }
947     break;
948   }
949
950   case Type::ArrayTyID:
951     if (isa<ConstantAggregateZero>(CPV) || isa<UndefValue>(CPV)) {
952       const ArrayType *AT = cast<ArrayType>(CPV->getType());
953       Out << '{';
954       if (AT->getNumElements()) {
955         Out << ' ';
956         Constant *CZ = Constant::getNullValue(AT->getElementType());
957         printConstant(CZ);
958         for (unsigned i = 1, e = AT->getNumElements(); i != e; ++i) {
959           Out << ", ";
960           printConstant(CZ);
961         }
962       }
963       Out << " }";
964     } else {
965       printConstantArray(cast<ConstantArray>(CPV));
966     }
967     break;
968
969   case Type::VectorTyID:
970     if (isa<ConstantAggregateZero>(CPV) || isa<UndefValue>(CPV)) {
971       const VectorType *AT = cast<VectorType>(CPV->getType());
972       Out << '{';
973       if (AT->getNumElements()) {
974         Out << ' ';
975         Constant *CZ = Constant::getNullValue(AT->getElementType());
976         printConstant(CZ);
977         for (unsigned i = 1, e = AT->getNumElements(); i != e; ++i) {
978           Out << ", ";
979           printConstant(CZ);
980         }
981       }
982       Out << " }";
983     } else {
984       printConstantVector(cast<ConstantVector>(CPV));
985     }
986     break;
987
988   case Type::StructTyID:
989     if (isa<ConstantAggregateZero>(CPV) || isa<UndefValue>(CPV)) {
990       const StructType *ST = cast<StructType>(CPV->getType());
991       Out << '{';
992       if (ST->getNumElements()) {
993         Out << ' ';
994         printConstant(Constant::getNullValue(ST->getElementType(0)));
995         for (unsigned i = 1, e = ST->getNumElements(); i != e; ++i) {
996           Out << ", ";
997           printConstant(Constant::getNullValue(ST->getElementType(i)));
998         }
999       }
1000       Out << " }";
1001     } else {
1002       Out << '{';
1003       if (CPV->getNumOperands()) {
1004         Out << ' ';
1005         printConstant(cast<Constant>(CPV->getOperand(0)));
1006         for (unsigned i = 1, e = CPV->getNumOperands(); i != e; ++i) {
1007           Out << ", ";
1008           printConstant(cast<Constant>(CPV->getOperand(i)));
1009         }
1010       }
1011       Out << " }";
1012     }
1013     break;
1014
1015   case Type::PointerTyID:
1016     if (isa<ConstantPointerNull>(CPV)) {
1017       Out << "((";
1018       printType(Out, CPV->getType()); // sign doesn't matter
1019       Out << ")/*NULL*/0)";
1020       break;
1021     } else if (GlobalValue *GV = dyn_cast<GlobalValue>(CPV)) {
1022       writeOperand(GV);
1023       break;
1024     }
1025     // FALL THROUGH
1026   default:
1027     cerr << "Unknown constant type: " << *CPV << "\n";
1028     abort();
1029   }
1030 }
1031
1032 // Some constant expressions need to be casted back to the original types
1033 // because their operands were casted to the expected type. This function takes
1034 // care of detecting that case and printing the cast for the ConstantExpr.
1035 bool CWriter::printConstExprCast(const ConstantExpr* CE) {
1036   bool NeedsExplicitCast = false;
1037   const Type *Ty = CE->getOperand(0)->getType();
1038   bool TypeIsSigned = false;
1039   switch (CE->getOpcode()) {
1040   case Instruction::LShr:
1041   case Instruction::URem: 
1042   case Instruction::UDiv: NeedsExplicitCast = true; break;
1043   case Instruction::AShr:
1044   case Instruction::SRem: 
1045   case Instruction::SDiv: NeedsExplicitCast = true; TypeIsSigned = true; break;
1046   case Instruction::SExt:
1047     Ty = CE->getType();
1048     NeedsExplicitCast = true;
1049     TypeIsSigned = true;
1050     break;
1051   case Instruction::ZExt:
1052   case Instruction::Trunc:
1053   case Instruction::FPTrunc:
1054   case Instruction::FPExt:
1055   case Instruction::UIToFP:
1056   case Instruction::SIToFP:
1057   case Instruction::FPToUI:
1058   case Instruction::FPToSI:
1059   case Instruction::PtrToInt:
1060   case Instruction::IntToPtr:
1061   case Instruction::BitCast:
1062     Ty = CE->getType();
1063     NeedsExplicitCast = true;
1064     break;
1065   default: break;
1066   }
1067   if (NeedsExplicitCast) {
1068     Out << "((";
1069     if (Ty->isInteger() && Ty != Type::Int1Ty)
1070       printSimpleType(Out, Ty, TypeIsSigned);
1071     else
1072       printType(Out, Ty); // not integer, sign doesn't matter
1073     Out << ")(";
1074   }
1075   return NeedsExplicitCast;
1076 }
1077
1078 //  Print a constant assuming that it is the operand for a given Opcode. The
1079 //  opcodes that care about sign need to cast their operands to the expected
1080 //  type before the operation proceeds. This function does the casting.
1081 void CWriter::printConstantWithCast(Constant* CPV, unsigned Opcode) {
1082
1083   // Extract the operand's type, we'll need it.
1084   const Type* OpTy = CPV->getType();
1085
1086   // Indicate whether to do the cast or not.
1087   bool shouldCast = false;
1088   bool typeIsSigned = false;
1089
1090   // Based on the Opcode for which this Constant is being written, determine
1091   // the new type to which the operand should be casted by setting the value
1092   // of OpTy. If we change OpTy, also set shouldCast to true so it gets
1093   // casted below.
1094   switch (Opcode) {
1095     default:
1096       // for most instructions, it doesn't matter
1097       break; 
1098     case Instruction::LShr:
1099     case Instruction::UDiv:
1100     case Instruction::URem:
1101       shouldCast = true;
1102       break;
1103     case Instruction::AShr:
1104     case Instruction::SDiv:
1105     case Instruction::SRem:
1106       shouldCast = true;
1107       typeIsSigned = true;
1108       break;
1109   }
1110
1111   // Write out the casted constant if we should, otherwise just write the
1112   // operand.
1113   if (shouldCast) {
1114     Out << "((";
1115     printSimpleType(Out, OpTy, typeIsSigned);
1116     Out << ")";
1117     printConstant(CPV);
1118     Out << ")";
1119   } else 
1120     printConstant(CPV);
1121 }
1122
1123 std::string CWriter::GetValueName(const Value *Operand) {
1124   std::string Name;
1125
1126   if (!isa<GlobalValue>(Operand) && Operand->getName() != "") {
1127     std::string VarName;
1128
1129     Name = Operand->getName();
1130     VarName.reserve(Name.capacity());
1131
1132     for (std::string::iterator I = Name.begin(), E = Name.end();
1133          I != E; ++I) {
1134       char ch = *I;
1135
1136       if (!((ch >= 'a' && ch <= 'z') || (ch >= 'A' && ch <= 'Z') ||
1137             (ch >= '0' && ch <= '9') || ch == '_'))
1138         VarName += '_';
1139       else
1140         VarName += ch;
1141     }
1142
1143     Name = "llvm_cbe_" + VarName;
1144   } else {
1145     Name = Mang->getValueName(Operand);
1146   }
1147
1148   return Name;
1149 }
1150
1151 void CWriter::writeOperandInternal(Value *Operand) {
1152   if (Instruction *I = dyn_cast<Instruction>(Operand))
1153     if (isInlinableInst(*I) && !isDirectAlloca(I)) {
1154       // Should we inline this instruction to build a tree?
1155       Out << '(';
1156       visit(*I);
1157       Out << ')';
1158       return;
1159     }
1160
1161   Constant* CPV = dyn_cast<Constant>(Operand);
1162
1163   if (CPV && !isa<GlobalValue>(CPV))
1164     printConstant(CPV);
1165   else
1166     Out << GetValueName(Operand);
1167 }
1168
1169 void CWriter::writeOperandRaw(Value *Operand) {
1170   Constant* CPV = dyn_cast<Constant>(Operand);
1171   if (CPV && !isa<GlobalValue>(CPV)) {
1172     printConstant(CPV);
1173   } else {
1174     Out << GetValueName(Operand);
1175   }
1176 }
1177
1178 void CWriter::writeOperand(Value *Operand) {
1179   if (isa<GlobalVariable>(Operand) || isDirectAlloca(Operand))
1180     Out << "(&";  // Global variables are referenced as their addresses by llvm
1181
1182   writeOperandInternal(Operand);
1183
1184   if (isa<GlobalVariable>(Operand) || isDirectAlloca(Operand))
1185     Out << ')';
1186 }
1187
1188 // Some instructions need to have their result value casted back to the 
1189 // original types because their operands were casted to the expected type. 
1190 // This function takes care of detecting that case and printing the cast 
1191 // for the Instruction.
1192 bool CWriter::writeInstructionCast(const Instruction &I) {
1193   const Type *Ty = I.getOperand(0)->getType();
1194   switch (I.getOpcode()) {
1195   case Instruction::LShr:
1196   case Instruction::URem: 
1197   case Instruction::UDiv: 
1198     Out << "((";
1199     printSimpleType(Out, Ty, false);
1200     Out << ")(";
1201     return true;
1202   case Instruction::AShr:
1203   case Instruction::SRem: 
1204   case Instruction::SDiv: 
1205     Out << "((";
1206     printSimpleType(Out, Ty, true);
1207     Out << ")(";
1208     return true;
1209   default: break;
1210   }
1211   return false;
1212 }
1213
1214 // Write the operand with a cast to another type based on the Opcode being used.
1215 // This will be used in cases where an instruction has specific type
1216 // requirements (usually signedness) for its operands. 
1217 void CWriter::writeOperandWithCast(Value* Operand, unsigned Opcode) {
1218
1219   // Extract the operand's type, we'll need it.
1220   const Type* OpTy = Operand->getType();
1221
1222   // Indicate whether to do the cast or not.
1223   bool shouldCast = false;
1224
1225   // Indicate whether the cast should be to a signed type or not.
1226   bool castIsSigned = false;
1227
1228   // Based on the Opcode for which this Operand is being written, determine
1229   // the new type to which the operand should be casted by setting the value
1230   // of OpTy. If we change OpTy, also set shouldCast to true.
1231   switch (Opcode) {
1232     default:
1233       // for most instructions, it doesn't matter
1234       break; 
1235     case Instruction::LShr:
1236     case Instruction::UDiv:
1237     case Instruction::URem: // Cast to unsigned first
1238       shouldCast = true;
1239       castIsSigned = false;
1240       break;
1241     case Instruction::GetElementPtr:
1242     case Instruction::AShr:
1243     case Instruction::SDiv:
1244     case Instruction::SRem: // Cast to signed first
1245       shouldCast = true;
1246       castIsSigned = true;
1247       break;
1248   }
1249
1250   // Write out the casted operand if we should, otherwise just write the
1251   // operand.
1252   if (shouldCast) {
1253     Out << "((";
1254     printSimpleType(Out, OpTy, castIsSigned);
1255     Out << ")";
1256     writeOperand(Operand);
1257     Out << ")";
1258   } else 
1259     writeOperand(Operand);
1260 }
1261
1262 // Write the operand with a cast to another type based on the icmp predicate 
1263 // being used. 
1264 void CWriter::writeOperandWithCast(Value* Operand, const ICmpInst &Cmp) {
1265   // This has to do a cast to ensure the operand has the right signedness. 
1266   // Also, if the operand is a pointer, we make sure to cast to an integer when
1267   // doing the comparison both for signedness and so that the C compiler doesn't
1268   // optimize things like "p < NULL" to false (p may contain an integer value
1269   // f.e.).
1270   bool shouldCast = Cmp.isRelational();
1271
1272   // Write out the casted operand if we should, otherwise just write the
1273   // operand.
1274   if (!shouldCast) {
1275     writeOperand(Operand);
1276     return;
1277   }
1278   
1279   // Should this be a signed comparison?  If so, convert to signed.
1280   bool castIsSigned = Cmp.isSignedPredicate();
1281
1282   // If the operand was a pointer, convert to a large integer type.
1283   const Type* OpTy = Operand->getType();
1284   if (isa<PointerType>(OpTy))
1285     OpTy = TD->getIntPtrType();
1286   
1287   Out << "((";
1288   printSimpleType(Out, OpTy, castIsSigned);
1289   Out << ")";
1290   writeOperand(Operand);
1291   Out << ")";
1292 }
1293
1294 // generateCompilerSpecificCode - This is where we add conditional compilation
1295 // directives to cater to specific compilers as need be.
1296 //
1297 static void generateCompilerSpecificCode(std::ostream& Out) {
1298   // Alloca is hard to get, and we don't want to include stdlib.h here.
1299   Out << "/* get a declaration for alloca */\n"
1300       << "#if defined(__CYGWIN__) || defined(__MINGW32__)\n"
1301       << "#define  alloca(x) __builtin_alloca((x))\n"
1302       << "#define _alloca(x) __builtin_alloca((x))\n"    
1303       << "#elif defined(__APPLE__)\n"
1304       << "extern void *__builtin_alloca(unsigned long);\n"
1305       << "#define alloca(x) __builtin_alloca(x)\n"
1306       << "#define longjmp _longjmp\n"
1307       << "#define setjmp _setjmp\n"
1308       << "#elif defined(__sun__)\n"
1309       << "#if defined(__sparcv9)\n"
1310       << "extern void *__builtin_alloca(unsigned long);\n"
1311       << "#else\n"
1312       << "extern void *__builtin_alloca(unsigned int);\n"
1313       << "#endif\n"
1314       << "#define alloca(x) __builtin_alloca(x)\n"
1315       << "#elif defined(__FreeBSD__) || defined(__OpenBSD__)\n"
1316       << "#define alloca(x) __builtin_alloca(x)\n"
1317       << "#elif defined(_MSC_VER)\n"
1318       << "#define inline _inline\n"
1319       << "#define alloca(x) _alloca(x)\n"
1320       << "#else\n"
1321       << "#include <alloca.h>\n"
1322       << "#endif\n\n";
1323
1324   // We output GCC specific attributes to preserve 'linkonce'ness on globals.
1325   // If we aren't being compiled with GCC, just drop these attributes.
1326   Out << "#ifndef __GNUC__  /* Can only support \"linkonce\" vars with GCC */\n"
1327       << "#define __attribute__(X)\n"
1328       << "#endif\n\n";
1329
1330   // On Mac OS X, "external weak" is spelled "__attribute__((weak_import))".
1331   Out << "#if defined(__GNUC__) && defined(__APPLE_CC__)\n"
1332       << "#define __EXTERNAL_WEAK__ __attribute__((weak_import))\n"
1333       << "#elif defined(__GNUC__)\n"
1334       << "#define __EXTERNAL_WEAK__ __attribute__((weak))\n"
1335       << "#else\n"
1336       << "#define __EXTERNAL_WEAK__\n"
1337       << "#endif\n\n";
1338
1339   // For now, turn off the weak linkage attribute on Mac OS X. (See above.)
1340   Out << "#if defined(__GNUC__) && defined(__APPLE_CC__)\n"
1341       << "#define __ATTRIBUTE_WEAK__\n"
1342       << "#elif defined(__GNUC__)\n"
1343       << "#define __ATTRIBUTE_WEAK__ __attribute__((weak))\n"
1344       << "#else\n"
1345       << "#define __ATTRIBUTE_WEAK__\n"
1346       << "#endif\n\n";
1347
1348   // Add hidden visibility support. FIXME: APPLE_CC?
1349   Out << "#if defined(__GNUC__)\n"
1350       << "#define __HIDDEN__ __attribute__((visibility(\"hidden\")))\n"
1351       << "#endif\n\n";
1352     
1353   // Define NaN and Inf as GCC builtins if using GCC, as 0 otherwise
1354   // From the GCC documentation:
1355   //
1356   //   double __builtin_nan (const char *str)
1357   //
1358   // This is an implementation of the ISO C99 function nan.
1359   //
1360   // Since ISO C99 defines this function in terms of strtod, which we do
1361   // not implement, a description of the parsing is in order. The string is
1362   // parsed as by strtol; that is, the base is recognized by leading 0 or
1363   // 0x prefixes. The number parsed is placed in the significand such that
1364   // the least significant bit of the number is at the least significant
1365   // bit of the significand. The number is truncated to fit the significand
1366   // field provided. The significand is forced to be a quiet NaN.
1367   //
1368   // This function, if given a string literal, is evaluated early enough
1369   // that it is considered a compile-time constant.
1370   //
1371   //   float __builtin_nanf (const char *str)
1372   //
1373   // Similar to __builtin_nan, except the return type is float.
1374   //
1375   //   double __builtin_inf (void)
1376   //
1377   // Similar to __builtin_huge_val, except a warning is generated if the
1378   // target floating-point format does not support infinities. This
1379   // function is suitable for implementing the ISO C99 macro INFINITY.
1380   //
1381   //   float __builtin_inff (void)
1382   //
1383   // Similar to __builtin_inf, except the return type is float.
1384   Out << "#ifdef __GNUC__\n"
1385       << "#define LLVM_NAN(NanStr)   __builtin_nan(NanStr)   /* Double */\n"
1386       << "#define LLVM_NANF(NanStr)  __builtin_nanf(NanStr)  /* Float */\n"
1387       << "#define LLVM_NANS(NanStr)  __builtin_nans(NanStr)  /* Double */\n"
1388       << "#define LLVM_NANSF(NanStr) __builtin_nansf(NanStr) /* Float */\n"
1389       << "#define LLVM_INF           __builtin_inf()         /* Double */\n"
1390       << "#define LLVM_INFF          __builtin_inff()        /* Float */\n"
1391       << "#define LLVM_PREFETCH(addr,rw,locality) "
1392                               "__builtin_prefetch(addr,rw,locality)\n"
1393       << "#define __ATTRIBUTE_CTOR__ __attribute__((constructor))\n"
1394       << "#define __ATTRIBUTE_DTOR__ __attribute__((destructor))\n"
1395       << "#define LLVM_ASM           __asm__\n"
1396       << "#else\n"
1397       << "#define LLVM_NAN(NanStr)   ((double)0.0)           /* Double */\n"
1398       << "#define LLVM_NANF(NanStr)  0.0F                    /* Float */\n"
1399       << "#define LLVM_NANS(NanStr)  ((double)0.0)           /* Double */\n"
1400       << "#define LLVM_NANSF(NanStr) 0.0F                    /* Float */\n"
1401       << "#define LLVM_INF           ((double)0.0)           /* Double */\n"
1402       << "#define LLVM_INFF          0.0F                    /* Float */\n"
1403       << "#define LLVM_PREFETCH(addr,rw,locality)            /* PREFETCH */\n"
1404       << "#define __ATTRIBUTE_CTOR__\n"
1405       << "#define __ATTRIBUTE_DTOR__\n"
1406       << "#define LLVM_ASM(X)\n"
1407       << "#endif\n\n";
1408   
1409   Out << "#if __GNUC__ < 4 /* Old GCC's, or compilers not GCC */ \n"
1410       << "#define __builtin_stack_save() 0   /* not implemented */\n"
1411       << "#define __builtin_stack_restore(X) /* noop */\n"
1412       << "#endif\n\n";
1413
1414   // Output target-specific code that should be inserted into main.
1415   Out << "#define CODE_FOR_MAIN() /* Any target-specific code for main()*/\n";
1416 }
1417
1418 /// FindStaticTors - Given a static ctor/dtor list, unpack its contents into
1419 /// the StaticTors set.
1420 static void FindStaticTors(GlobalVariable *GV, std::set<Function*> &StaticTors){
1421   ConstantArray *InitList = dyn_cast<ConstantArray>(GV->getInitializer());
1422   if (!InitList) return;
1423   
1424   for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
1425     if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
1426       if (CS->getNumOperands() != 2) return;  // Not array of 2-element structs.
1427       
1428       if (CS->getOperand(1)->isNullValue())
1429         return;  // Found a null terminator, exit printing.
1430       Constant *FP = CS->getOperand(1);
1431       if (ConstantExpr *CE = dyn_cast<ConstantExpr>(FP))
1432         if (CE->isCast())
1433           FP = CE->getOperand(0);
1434       if (Function *F = dyn_cast<Function>(FP))
1435         StaticTors.insert(F);
1436     }
1437 }
1438
1439 enum SpecialGlobalClass {
1440   NotSpecial = 0,
1441   GlobalCtors, GlobalDtors,
1442   NotPrinted
1443 };
1444
1445 /// getGlobalVariableClass - If this is a global that is specially recognized
1446 /// by LLVM, return a code that indicates how we should handle it.
1447 static SpecialGlobalClass getGlobalVariableClass(const GlobalVariable *GV) {
1448   // If this is a global ctors/dtors list, handle it now.
1449   if (GV->hasAppendingLinkage() && GV->use_empty()) {
1450     if (GV->getName() == "llvm.global_ctors")
1451       return GlobalCtors;
1452     else if (GV->getName() == "llvm.global_dtors")
1453       return GlobalDtors;
1454   }
1455   
1456   // Otherwise, it it is other metadata, don't print it.  This catches things
1457   // like debug information.
1458   if (GV->getSection() == "llvm.metadata")
1459     return NotPrinted;
1460   
1461   return NotSpecial;
1462 }
1463
1464
1465 bool CWriter::doInitialization(Module &M) {
1466   // Initialize
1467   TheModule = &M;
1468
1469   TD = new TargetData(&M);
1470   IL = new IntrinsicLowering(*TD);
1471   IL->AddPrototypes(M);
1472
1473   // Ensure that all structure types have names...
1474   Mang = new Mangler(M);
1475   Mang->markCharUnacceptable('.');
1476
1477   // Keep track of which functions are static ctors/dtors so they can have
1478   // an attribute added to their prototypes.
1479   std::set<Function*> StaticCtors, StaticDtors;
1480   for (Module::global_iterator I = M.global_begin(), E = M.global_end();
1481        I != E; ++I) {
1482     switch (getGlobalVariableClass(I)) {
1483     default: break;
1484     case GlobalCtors:
1485       FindStaticTors(I, StaticCtors);
1486       break;
1487     case GlobalDtors:
1488       FindStaticTors(I, StaticDtors);
1489       break;
1490     }
1491   }
1492   
1493   // get declaration for alloca
1494   Out << "/* Provide Declarations */\n";
1495   Out << "#include <stdarg.h>\n";      // Varargs support
1496   Out << "#include <setjmp.h>\n";      // Unwind support
1497   generateCompilerSpecificCode(Out);
1498
1499   // Provide a definition for `bool' if not compiling with a C++ compiler.
1500   Out << "\n"
1501       << "#ifndef __cplusplus\ntypedef unsigned char bool;\n#endif\n"
1502
1503       << "\n\n/* Support for floating point constants */\n"
1504       << "typedef unsigned long long ConstantDoubleTy;\n"
1505       << "typedef unsigned int        ConstantFloatTy;\n"
1506       << "typedef struct { unsigned long long f1; unsigned short f2; "
1507          "unsigned short pad[3]; } ConstantFP80Ty;\n"
1508       // This is used for both kinds of 128-bit long double; meaning differs.
1509       << "typedef struct { unsigned long long f1; unsigned long long f2; }"
1510          " ConstantFP128Ty;\n"
1511       << "\n\n/* Global Declarations */\n";
1512
1513   // First output all the declarations for the program, because C requires
1514   // Functions & globals to be declared before they are used.
1515   //
1516
1517   // Loop over the symbol table, emitting all named constants...
1518   printModuleTypes(M.getTypeSymbolTable());
1519
1520   // Global variable declarations...
1521   if (!M.global_empty()) {
1522     Out << "\n/* External Global Variable Declarations */\n";
1523     for (Module::global_iterator I = M.global_begin(), E = M.global_end();
1524          I != E; ++I) {
1525
1526       if (I->hasExternalLinkage() || I->hasExternalWeakLinkage())
1527         Out << "extern ";
1528       else if (I->hasDLLImportLinkage())
1529         Out << "__declspec(dllimport) ";
1530       else
1531         continue; // Internal Global
1532
1533       // Thread Local Storage
1534       if (I->isThreadLocal())
1535         Out << "__thread ";
1536
1537       printType(Out, I->getType()->getElementType(), false, GetValueName(I));
1538
1539       if (I->hasExternalWeakLinkage())
1540          Out << " __EXTERNAL_WEAK__";
1541       Out << ";\n";
1542     }
1543   }
1544
1545   // Function declarations
1546   Out << "\n/* Function Declarations */\n";
1547   Out << "double fmod(double, double);\n";   // Support for FP rem
1548   Out << "float fmodf(float, float);\n";
1549   Out << "long double fmodl(long double, long double);\n";
1550   
1551   for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
1552     // Don't print declarations for intrinsic functions.
1553     if (!I->getIntrinsicID() && I->getName() != "setjmp" && 
1554         I->getName() != "longjmp" && I->getName() != "_setjmp") {
1555       if (I->hasExternalWeakLinkage())
1556         Out << "extern ";
1557       printFunctionSignature(I, true);
1558       if (I->hasWeakLinkage() || I->hasLinkOnceLinkage()) 
1559         Out << " __ATTRIBUTE_WEAK__";
1560       if (I->hasExternalWeakLinkage())
1561         Out << " __EXTERNAL_WEAK__";
1562       if (StaticCtors.count(I))
1563         Out << " __ATTRIBUTE_CTOR__";
1564       if (StaticDtors.count(I))
1565         Out << " __ATTRIBUTE_DTOR__";
1566       if (I->hasHiddenVisibility())
1567         Out << " __HIDDEN__";
1568       
1569       if (I->hasName() && I->getName()[0] == 1)
1570         Out << " LLVM_ASM(\"" << I->getName().c_str()+1 << "\")";
1571           
1572       Out << ";\n";
1573     }
1574   }
1575
1576   // Output the global variable declarations
1577   if (!M.global_empty()) {
1578     Out << "\n\n/* Global Variable Declarations */\n";
1579     for (Module::global_iterator I = M.global_begin(), E = M.global_end();
1580          I != E; ++I)
1581       if (!I->isDeclaration()) {
1582         // Ignore special globals, such as debug info.
1583         if (getGlobalVariableClass(I))
1584           continue;
1585
1586         if (I->hasInternalLinkage())
1587           Out << "static ";
1588         else
1589           Out << "extern ";
1590
1591         // Thread Local Storage
1592         if (I->isThreadLocal())
1593           Out << "__thread ";
1594
1595         printType(Out, I->getType()->getElementType(), false, 
1596                   GetValueName(I));
1597
1598         if (I->hasLinkOnceLinkage())
1599           Out << " __attribute__((common))";
1600         else if (I->hasWeakLinkage())
1601           Out << " __ATTRIBUTE_WEAK__";
1602         else if (I->hasExternalWeakLinkage())
1603           Out << " __EXTERNAL_WEAK__";
1604         if (I->hasHiddenVisibility())
1605           Out << " __HIDDEN__";
1606         Out << ";\n";
1607       }
1608   }
1609
1610   // Output the global variable definitions and contents...
1611   if (!M.global_empty()) {
1612     Out << "\n\n/* Global Variable Definitions and Initialization */\n";
1613     for (Module::global_iterator I = M.global_begin(), E = M.global_end(); 
1614          I != E; ++I)
1615       if (!I->isDeclaration()) {
1616         // Ignore special globals, such as debug info.
1617         if (getGlobalVariableClass(I))
1618           continue;
1619
1620         if (I->hasInternalLinkage())
1621           Out << "static ";
1622         else if (I->hasDLLImportLinkage())
1623           Out << "__declspec(dllimport) ";
1624         else if (I->hasDLLExportLinkage())
1625           Out << "__declspec(dllexport) ";
1626
1627         // Thread Local Storage
1628         if (I->isThreadLocal())
1629           Out << "__thread ";
1630
1631         printType(Out, I->getType()->getElementType(), false, 
1632                   GetValueName(I));
1633         if (I->hasLinkOnceLinkage())
1634           Out << " __attribute__((common))";
1635         else if (I->hasWeakLinkage())
1636           Out << " __ATTRIBUTE_WEAK__";
1637
1638         if (I->hasHiddenVisibility())
1639           Out << " __HIDDEN__";
1640         
1641         // If the initializer is not null, emit the initializer.  If it is null,
1642         // we try to avoid emitting large amounts of zeros.  The problem with
1643         // this, however, occurs when the variable has weak linkage.  In this
1644         // case, the assembler will complain about the variable being both weak
1645         // and common, so we disable this optimization.
1646         if (!I->getInitializer()->isNullValue()) {
1647           Out << " = " ;
1648           writeOperand(I->getInitializer());
1649         } else if (I->hasWeakLinkage()) {
1650           // We have to specify an initializer, but it doesn't have to be
1651           // complete.  If the value is an aggregate, print out { 0 }, and let
1652           // the compiler figure out the rest of the zeros.
1653           Out << " = " ;
1654           if (isa<StructType>(I->getInitializer()->getType()) ||
1655               isa<ArrayType>(I->getInitializer()->getType()) ||
1656               isa<VectorType>(I->getInitializer()->getType())) {
1657             Out << "{ 0 }";
1658           } else {
1659             // Just print it out normally.
1660             writeOperand(I->getInitializer());
1661           }
1662         }
1663         Out << ";\n";
1664       }
1665   }
1666
1667   if (!M.empty())
1668     Out << "\n\n/* Function Bodies */\n";
1669
1670   // Emit some helper functions for dealing with FCMP instruction's 
1671   // predicates
1672   Out << "static inline int llvm_fcmp_ord(double X, double Y) { ";
1673   Out << "return X == X && Y == Y; }\n";
1674   Out << "static inline int llvm_fcmp_uno(double X, double Y) { ";
1675   Out << "return X != X || Y != Y; }\n";
1676   Out << "static inline int llvm_fcmp_ueq(double X, double Y) { ";
1677   Out << "return X == Y || llvm_fcmp_uno(X, Y); }\n";
1678   Out << "static inline int llvm_fcmp_une(double X, double Y) { ";
1679   Out << "return X != Y; }\n";
1680   Out << "static inline int llvm_fcmp_ult(double X, double Y) { ";
1681   Out << "return X <  Y || llvm_fcmp_uno(X, Y); }\n";
1682   Out << "static inline int llvm_fcmp_ugt(double X, double Y) { ";
1683   Out << "return X >  Y || llvm_fcmp_uno(X, Y); }\n";
1684   Out << "static inline int llvm_fcmp_ule(double X, double Y) { ";
1685   Out << "return X <= Y || llvm_fcmp_uno(X, Y); }\n";
1686   Out << "static inline int llvm_fcmp_uge(double X, double Y) { ";
1687   Out << "return X >= Y || llvm_fcmp_uno(X, Y); }\n";
1688   Out << "static inline int llvm_fcmp_oeq(double X, double Y) { ";
1689   Out << "return X == Y ; }\n";
1690   Out << "static inline int llvm_fcmp_one(double X, double Y) { ";
1691   Out << "return X != Y && llvm_fcmp_ord(X, Y); }\n";
1692   Out << "static inline int llvm_fcmp_olt(double X, double Y) { ";
1693   Out << "return X <  Y ; }\n";
1694   Out << "static inline int llvm_fcmp_ogt(double X, double Y) { ";
1695   Out << "return X >  Y ; }\n";
1696   Out << "static inline int llvm_fcmp_ole(double X, double Y) { ";
1697   Out << "return X <= Y ; }\n";
1698   Out << "static inline int llvm_fcmp_oge(double X, double Y) { ";
1699   Out << "return X >= Y ; }\n";
1700   return false;
1701 }
1702
1703
1704 /// Output all floating point constants that cannot be printed accurately...
1705 void CWriter::printFloatingPointConstants(Function &F) {
1706   // Scan the module for floating point constants.  If any FP constant is used
1707   // in the function, we want to redirect it here so that we do not depend on
1708   // the precision of the printed form, unless the printed form preserves
1709   // precision.
1710   //
1711   static unsigned FPCounter = 0;
1712   for (constant_iterator I = constant_begin(&F), E = constant_end(&F);
1713        I != E; ++I)
1714     if (const ConstantFP *FPC = dyn_cast<ConstantFP>(*I))
1715       if (!isFPCSafeToPrint(FPC) && // Do not put in FPConstantMap if safe.
1716           !FPConstantMap.count(FPC)) {
1717         FPConstantMap[FPC] = FPCounter;  // Number the FP constants
1718
1719         if (FPC->getType() == Type::DoubleTy) {
1720           double Val = FPC->getValueAPF().convertToDouble();
1721           uint64_t i = FPC->getValueAPF().convertToAPInt().getZExtValue();
1722           Out << "static const ConstantDoubleTy FPConstant" << FPCounter++
1723               << " = 0x" << std::hex << i << std::dec
1724               << "ULL;    /* " << Val << " */\n";
1725         } else if (FPC->getType() == Type::FloatTy) {
1726           float Val = FPC->getValueAPF().convertToFloat();
1727           uint32_t i = (uint32_t)FPC->getValueAPF().convertToAPInt().
1728                                     getZExtValue();
1729           Out << "static const ConstantFloatTy FPConstant" << FPCounter++
1730               << " = 0x" << std::hex << i << std::dec
1731               << "U;    /* " << Val << " */\n";
1732         } else if (FPC->getType() == Type::X86_FP80Ty) {
1733           // api needed to prevent premature destruction
1734           APInt api = FPC->getValueAPF().convertToAPInt();
1735           const uint64_t *p = api.getRawData();
1736           Out << "static const ConstantFP80Ty FPConstant" << FPCounter++
1737               << " = { 0x" << std::hex
1738               << ((uint16_t)p[1] | (p[0] & 0xffffffffffffLL)<<16)
1739               << ", 0x" << (uint16_t)(p[0] >> 48) << ",0,0,0"
1740               << "}; /* Long double constant */\n" << std::dec;
1741         } else if (FPC->getType() == Type::PPC_FP128Ty) {
1742           APInt api = FPC->getValueAPF().convertToAPInt();
1743           const uint64_t *p = api.getRawData();
1744           Out << "static const ConstantFP128Ty FPConstant" << FPCounter++
1745               << " = { 0x" << std::hex
1746               << p[0] << ", 0x" << p[1]
1747               << "}; /* Long double constant */\n" << std::dec;
1748
1749         } else
1750           assert(0 && "Unknown float type!");
1751       }
1752
1753   Out << '\n';
1754 }
1755
1756
1757 /// printSymbolTable - Run through symbol table looking for type names.  If a
1758 /// type name is found, emit its declaration...
1759 ///
1760 void CWriter::printModuleTypes(const TypeSymbolTable &TST) {
1761   Out << "/* Helper union for bitcasts */\n";
1762   Out << "typedef union {\n";
1763   Out << "  unsigned int Int32;\n";
1764   Out << "  unsigned long long Int64;\n";
1765   Out << "  float Float;\n";
1766   Out << "  double Double;\n";
1767   Out << "} llvmBitCastUnion;\n";
1768
1769   // We are only interested in the type plane of the symbol table.
1770   TypeSymbolTable::const_iterator I   = TST.begin();
1771   TypeSymbolTable::const_iterator End = TST.end();
1772
1773   // If there are no type names, exit early.
1774   if (I == End) return;
1775
1776   // Print out forward declarations for structure types before anything else!
1777   Out << "/* Structure forward decls */\n";
1778   for (; I != End; ++I) {
1779     std::string Name = "struct l_" + Mang->makeNameProper(I->first);
1780     Out << Name << ";\n";
1781     TypeNames.insert(std::make_pair(I->second, Name));
1782   }
1783
1784   Out << '\n';
1785
1786   // Now we can print out typedefs.  Above, we guaranteed that this can only be
1787   // for struct or opaque types.
1788   Out << "/* Typedefs */\n";
1789   for (I = TST.begin(); I != End; ++I) {
1790     std::string Name = "l_" + Mang->makeNameProper(I->first);
1791     Out << "typedef ";
1792     printType(Out, I->second, false, Name);
1793     Out << ";\n";
1794   }
1795
1796   Out << '\n';
1797
1798   // Keep track of which structures have been printed so far...
1799   std::set<const StructType *> StructPrinted;
1800
1801   // Loop over all structures then push them into the stack so they are
1802   // printed in the correct order.
1803   //
1804   Out << "/* Structure contents */\n";
1805   for (I = TST.begin(); I != End; ++I)
1806     if (const StructType *STy = dyn_cast<StructType>(I->second))
1807       // Only print out used types!
1808       printContainedStructs(STy, StructPrinted);
1809 }
1810
1811 // Push the struct onto the stack and recursively push all structs
1812 // this one depends on.
1813 //
1814 // TODO:  Make this work properly with vector types
1815 //
1816 void CWriter::printContainedStructs(const Type *Ty,
1817                                     std::set<const StructType*> &StructPrinted){
1818   // Don't walk through pointers.
1819   if (isa<PointerType>(Ty) || Ty->isPrimitiveType() || Ty->isInteger()) return;
1820   
1821   // Print all contained types first.
1822   for (Type::subtype_iterator I = Ty->subtype_begin(),
1823        E = Ty->subtype_end(); I != E; ++I)
1824     printContainedStructs(*I, StructPrinted);
1825   
1826   if (const StructType *STy = dyn_cast<StructType>(Ty)) {
1827     // Check to see if we have already printed this struct.
1828     if (StructPrinted.insert(STy).second) {
1829       // Print structure type out.
1830       std::string Name = TypeNames[STy];
1831       printType(Out, STy, false, Name, true);
1832       Out << ";\n\n";
1833     }
1834   }
1835 }
1836
1837 void CWriter::printFunctionSignature(const Function *F, bool Prototype) {
1838   /// isStructReturn - Should this function actually return a struct by-value?
1839   bool isStructReturn = F->getFunctionType()->isStructReturn();
1840   
1841   if (F->hasInternalLinkage()) Out << "static ";
1842   if (F->hasDLLImportLinkage()) Out << "__declspec(dllimport) ";
1843   if (F->hasDLLExportLinkage()) Out << "__declspec(dllexport) ";  
1844   switch (F->getCallingConv()) {
1845    case CallingConv::X86_StdCall:
1846     Out << "__stdcall ";
1847     break;
1848    case CallingConv::X86_FastCall:
1849     Out << "__fastcall ";
1850     break;
1851   }
1852   
1853   // Loop over the arguments, printing them...
1854   const FunctionType *FT = cast<FunctionType>(F->getFunctionType());
1855   const ParamAttrsList *Attrs = FT->getParamAttrs();
1856
1857   std::stringstream FunctionInnards;
1858
1859   // Print out the name...
1860   FunctionInnards << GetValueName(F) << '(';
1861
1862   bool PrintedArg = false;
1863   if (!F->isDeclaration()) {
1864     if (!F->arg_empty()) {
1865       Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
1866       
1867       // If this is a struct-return function, don't print the hidden
1868       // struct-return argument.
1869       if (isStructReturn) {
1870         assert(I != E && "Invalid struct return function!");
1871         ++I;
1872       }
1873       
1874       std::string ArgName;
1875       unsigned Idx = 1;
1876       for (; I != E; ++I) {
1877         if (PrintedArg) FunctionInnards << ", ";
1878         if (I->hasName() || !Prototype)
1879           ArgName = GetValueName(I);
1880         else
1881           ArgName = "";
1882         printType(FunctionInnards, I->getType(), 
1883             /*isSigned=*/Attrs && Attrs->paramHasAttr(Idx, ParamAttr::SExt), 
1884             ArgName);
1885         PrintedArg = true;
1886         ++Idx;
1887       }
1888     }
1889   } else {
1890     // Loop over the arguments, printing them.
1891     FunctionType::param_iterator I = FT->param_begin(), E = FT->param_end();
1892     
1893     // If this is a struct-return function, don't print the hidden
1894     // struct-return argument.
1895     if (isStructReturn) {
1896       assert(I != E && "Invalid struct return function!");
1897       ++I;
1898     }
1899     
1900     unsigned Idx = 1;
1901     for (; I != E; ++I) {
1902       if (PrintedArg) FunctionInnards << ", ";
1903       printType(FunctionInnards, *I,
1904              /*isSigned=*/Attrs && Attrs->paramHasAttr(Idx, ParamAttr::SExt));
1905       PrintedArg = true;
1906       ++Idx;
1907     }
1908   }
1909
1910   // Finish printing arguments... if this is a vararg function, print the ...,
1911   // unless there are no known types, in which case, we just emit ().
1912   //
1913   if (FT->isVarArg() && PrintedArg) {
1914     if (PrintedArg) FunctionInnards << ", ";
1915     FunctionInnards << "...";  // Output varargs portion of signature!
1916   } else if (!FT->isVarArg() && !PrintedArg) {
1917     FunctionInnards << "void"; // ret() -> ret(void) in C.
1918   }
1919   FunctionInnards << ')';
1920   
1921   // Get the return tpe for the function.
1922   const Type *RetTy;
1923   if (!isStructReturn)
1924     RetTy = F->getReturnType();
1925   else {
1926     // If this is a struct-return function, print the struct-return type.
1927     RetTy = cast<PointerType>(FT->getParamType(0))->getElementType();
1928   }
1929     
1930   // Print out the return type and the signature built above.
1931   printType(Out, RetTy, 
1932             /*isSigned=*/ Attrs && Attrs->paramHasAttr(0, ParamAttr::SExt), 
1933             FunctionInnards.str());
1934 }
1935
1936 static inline bool isFPIntBitCast(const Instruction &I) {
1937   if (!isa<BitCastInst>(I))
1938     return false;
1939   const Type *SrcTy = I.getOperand(0)->getType();
1940   const Type *DstTy = I.getType();
1941   return (SrcTy->isFloatingPoint() && DstTy->isInteger()) ||
1942          (DstTy->isFloatingPoint() && SrcTy->isInteger());
1943 }
1944
1945 void CWriter::printFunction(Function &F) {
1946   /// isStructReturn - Should this function actually return a struct by-value?
1947   bool isStructReturn = F.getFunctionType()->isStructReturn();
1948
1949   printFunctionSignature(&F, false);
1950   Out << " {\n";
1951   
1952   // If this is a struct return function, handle the result with magic.
1953   if (isStructReturn) {
1954     const Type *StructTy =
1955       cast<PointerType>(F.arg_begin()->getType())->getElementType();
1956     Out << "  ";
1957     printType(Out, StructTy, false, "StructReturn");
1958     Out << ";  /* Struct return temporary */\n";
1959
1960     Out << "  ";
1961     printType(Out, F.arg_begin()->getType(), false, 
1962               GetValueName(F.arg_begin()));
1963     Out << " = &StructReturn;\n";
1964   }
1965
1966   bool PrintedVar = false;
1967   
1968   // print local variable information for the function
1969   for (inst_iterator I = inst_begin(&F), E = inst_end(&F); I != E; ++I) {
1970     if (const AllocaInst *AI = isDirectAlloca(&*I)) {
1971       Out << "  ";
1972       printType(Out, AI->getAllocatedType(), false, GetValueName(AI));
1973       Out << ";    /* Address-exposed local */\n";
1974       PrintedVar = true;
1975     } else if (I->getType() != Type::VoidTy && !isInlinableInst(*I)) {
1976       Out << "  ";
1977       printType(Out, I->getType(), false, GetValueName(&*I));
1978       Out << ";\n";
1979
1980       if (isa<PHINode>(*I)) {  // Print out PHI node temporaries as well...
1981         Out << "  ";
1982         printType(Out, I->getType(), false,
1983                   GetValueName(&*I)+"__PHI_TEMPORARY");
1984         Out << ";\n";
1985       }
1986       PrintedVar = true;
1987     }
1988     // We need a temporary for the BitCast to use so it can pluck a value out
1989     // of a union to do the BitCast. This is separate from the need for a
1990     // variable to hold the result of the BitCast. 
1991     if (isFPIntBitCast(*I)) {
1992       Out << "  llvmBitCastUnion " << GetValueName(&*I)
1993           << "__BITCAST_TEMPORARY;\n";
1994       PrintedVar = true;
1995     }
1996   }
1997
1998   if (PrintedVar)
1999     Out << '\n';
2000
2001   if (F.hasExternalLinkage() && F.getName() == "main")
2002     Out << "  CODE_FOR_MAIN();\n";
2003
2004   // print the basic blocks
2005   for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB) {
2006     if (Loop *L = LI->getLoopFor(BB)) {
2007       if (L->getHeader() == BB && L->getParentLoop() == 0)
2008         printLoop(L);
2009     } else {
2010       printBasicBlock(BB);
2011     }
2012   }
2013
2014   Out << "}\n\n";
2015 }
2016
2017 void CWriter::printLoop(Loop *L) {
2018   Out << "  do {     /* Syntactic loop '" << L->getHeader()->getName()
2019       << "' to make GCC happy */\n";
2020   for (unsigned i = 0, e = L->getBlocks().size(); i != e; ++i) {
2021     BasicBlock *BB = L->getBlocks()[i];
2022     Loop *BBLoop = LI->getLoopFor(BB);
2023     if (BBLoop == L)
2024       printBasicBlock(BB);
2025     else if (BB == BBLoop->getHeader() && BBLoop->getParentLoop() == L)
2026       printLoop(BBLoop);
2027   }
2028   Out << "  } while (1); /* end of syntactic loop '"
2029       << L->getHeader()->getName() << "' */\n";
2030 }
2031
2032 void CWriter::printBasicBlock(BasicBlock *BB) {
2033
2034   // Don't print the label for the basic block if there are no uses, or if
2035   // the only terminator use is the predecessor basic block's terminator.
2036   // We have to scan the use list because PHI nodes use basic blocks too but
2037   // do not require a label to be generated.
2038   //
2039   bool NeedsLabel = false;
2040   for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI)
2041     if (isGotoCodeNecessary(*PI, BB)) {
2042       NeedsLabel = true;
2043       break;
2044     }
2045
2046   if (NeedsLabel) Out << GetValueName(BB) << ":\n";
2047
2048   // Output all of the instructions in the basic block...
2049   for (BasicBlock::iterator II = BB->begin(), E = --BB->end(); II != E;
2050        ++II) {
2051     if (!isInlinableInst(*II) && !isDirectAlloca(II)) {
2052       if (II->getType() != Type::VoidTy && !isInlineAsm(*II))
2053         outputLValue(II);
2054       else
2055         Out << "  ";
2056       visit(*II);
2057       Out << ";\n";
2058     }
2059   }
2060
2061   // Don't emit prefix or suffix for the terminator...
2062   visit(*BB->getTerminator());
2063 }
2064
2065
2066 // Specific Instruction type classes... note that all of the casts are
2067 // necessary because we use the instruction classes as opaque types...
2068 //
2069 void CWriter::visitReturnInst(ReturnInst &I) {
2070   // If this is a struct return function, return the temporary struct.
2071   bool isStructReturn = I.getParent()->getParent()->
2072     getFunctionType()->isStructReturn();
2073
2074   if (isStructReturn) {
2075     Out << "  return StructReturn;\n";
2076     return;
2077   }
2078   
2079   // Don't output a void return if this is the last basic block in the function
2080   if (I.getNumOperands() == 0 &&
2081       &*--I.getParent()->getParent()->end() == I.getParent() &&
2082       !I.getParent()->size() == 1) {
2083     return;
2084   }
2085
2086   Out << "  return";
2087   if (I.getNumOperands()) {
2088     Out << ' ';
2089     writeOperand(I.getOperand(0));
2090   }
2091   Out << ";\n";
2092 }
2093
2094 void CWriter::visitSwitchInst(SwitchInst &SI) {
2095
2096   Out << "  switch (";
2097   writeOperand(SI.getOperand(0));
2098   Out << ") {\n  default:\n";
2099   printPHICopiesForSuccessor (SI.getParent(), SI.getDefaultDest(), 2);
2100   printBranchToBlock(SI.getParent(), SI.getDefaultDest(), 2);
2101   Out << ";\n";
2102   for (unsigned i = 2, e = SI.getNumOperands(); i != e; i += 2) {
2103     Out << "  case ";
2104     writeOperand(SI.getOperand(i));
2105     Out << ":\n";
2106     BasicBlock *Succ = cast<BasicBlock>(SI.getOperand(i+1));
2107     printPHICopiesForSuccessor (SI.getParent(), Succ, 2);
2108     printBranchToBlock(SI.getParent(), Succ, 2);
2109     if (Function::iterator(Succ) == next(Function::iterator(SI.getParent())))
2110       Out << "    break;\n";
2111   }
2112   Out << "  }\n";
2113 }
2114
2115 void CWriter::visitUnreachableInst(UnreachableInst &I) {
2116   Out << "  /*UNREACHABLE*/;\n";
2117 }
2118
2119 bool CWriter::isGotoCodeNecessary(BasicBlock *From, BasicBlock *To) {
2120   /// FIXME: This should be reenabled, but loop reordering safe!!
2121   return true;
2122
2123   if (next(Function::iterator(From)) != Function::iterator(To))
2124     return true;  // Not the direct successor, we need a goto.
2125
2126   //isa<SwitchInst>(From->getTerminator())
2127
2128   if (LI->getLoopFor(From) != LI->getLoopFor(To))
2129     return true;
2130   return false;
2131 }
2132
2133 void CWriter::printPHICopiesForSuccessor (BasicBlock *CurBlock,
2134                                           BasicBlock *Successor,
2135                                           unsigned Indent) {
2136   for (BasicBlock::iterator I = Successor->begin(); isa<PHINode>(I); ++I) {
2137     PHINode *PN = cast<PHINode>(I);
2138     // Now we have to do the printing.
2139     Value *IV = PN->getIncomingValueForBlock(CurBlock);
2140     if (!isa<UndefValue>(IV)) {
2141       Out << std::string(Indent, ' ');
2142       Out << "  " << GetValueName(I) << "__PHI_TEMPORARY = ";
2143       writeOperand(IV);
2144       Out << ";   /* for PHI node */\n";
2145     }
2146   }
2147 }
2148
2149 void CWriter::printBranchToBlock(BasicBlock *CurBB, BasicBlock *Succ,
2150                                  unsigned Indent) {
2151   if (isGotoCodeNecessary(CurBB, Succ)) {
2152     Out << std::string(Indent, ' ') << "  goto ";
2153     writeOperand(Succ);
2154     Out << ";\n";
2155   }
2156 }
2157
2158 // Branch instruction printing - Avoid printing out a branch to a basic block
2159 // that immediately succeeds the current one.
2160 //
2161 void CWriter::visitBranchInst(BranchInst &I) {
2162
2163   if (I.isConditional()) {
2164     if (isGotoCodeNecessary(I.getParent(), I.getSuccessor(0))) {
2165       Out << "  if (";
2166       writeOperand(I.getCondition());
2167       Out << ") {\n";
2168
2169       printPHICopiesForSuccessor (I.getParent(), I.getSuccessor(0), 2);
2170       printBranchToBlock(I.getParent(), I.getSuccessor(0), 2);
2171
2172       if (isGotoCodeNecessary(I.getParent(), I.getSuccessor(1))) {
2173         Out << "  } else {\n";
2174         printPHICopiesForSuccessor (I.getParent(), I.getSuccessor(1), 2);
2175         printBranchToBlock(I.getParent(), I.getSuccessor(1), 2);
2176       }
2177     } else {
2178       // First goto not necessary, assume second one is...
2179       Out << "  if (!";
2180       writeOperand(I.getCondition());
2181       Out << ") {\n";
2182
2183       printPHICopiesForSuccessor (I.getParent(), I.getSuccessor(1), 2);
2184       printBranchToBlock(I.getParent(), I.getSuccessor(1), 2);
2185     }
2186
2187     Out << "  }\n";
2188   } else {
2189     printPHICopiesForSuccessor (I.getParent(), I.getSuccessor(0), 0);
2190     printBranchToBlock(I.getParent(), I.getSuccessor(0), 0);
2191   }
2192   Out << "\n";
2193 }
2194
2195 // PHI nodes get copied into temporary values at the end of predecessor basic
2196 // blocks.  We now need to copy these temporary values into the REAL value for
2197 // the PHI.
2198 void CWriter::visitPHINode(PHINode &I) {
2199   writeOperand(&I);
2200   Out << "__PHI_TEMPORARY";
2201 }
2202
2203
2204 void CWriter::visitBinaryOperator(Instruction &I) {
2205   // binary instructions, shift instructions, setCond instructions.
2206   assert(!isa<PointerType>(I.getType()));
2207
2208   // We must cast the results of binary operations which might be promoted.
2209   bool needsCast = false;
2210   if ((I.getType() == Type::Int8Ty) || (I.getType() == Type::Int16Ty) 
2211       || (I.getType() == Type::FloatTy)) {
2212     needsCast = true;
2213     Out << "((";
2214     printType(Out, I.getType(), false);
2215     Out << ")(";
2216   }
2217
2218   // If this is a negation operation, print it out as such.  For FP, we don't
2219   // want to print "-0.0 - X".
2220   if (BinaryOperator::isNeg(&I)) {
2221     Out << "-(";
2222     writeOperand(BinaryOperator::getNegArgument(cast<BinaryOperator>(&I)));
2223     Out << ")";
2224   } else if (I.getOpcode() == Instruction::FRem) {
2225     // Output a call to fmod/fmodf instead of emitting a%b
2226     if (I.getType() == Type::FloatTy)
2227       Out << "fmodf(";
2228     else if (I.getType() == Type::DoubleTy)
2229       Out << "fmod(";
2230     else  // all 3 flavors of long double
2231       Out << "fmodl(";
2232     writeOperand(I.getOperand(0));
2233     Out << ", ";
2234     writeOperand(I.getOperand(1));
2235     Out << ")";
2236   } else {
2237
2238     // Write out the cast of the instruction's value back to the proper type
2239     // if necessary.
2240     bool NeedsClosingParens = writeInstructionCast(I);
2241
2242     // Certain instructions require the operand to be forced to a specific type
2243     // so we use writeOperandWithCast here instead of writeOperand. Similarly
2244     // below for operand 1
2245     writeOperandWithCast(I.getOperand(0), I.getOpcode());
2246
2247     switch (I.getOpcode()) {
2248     case Instruction::Add:  Out << " + "; break;
2249     case Instruction::Sub:  Out << " - "; break;
2250     case Instruction::Mul:  Out << " * "; break;
2251     case Instruction::URem:
2252     case Instruction::SRem:
2253     case Instruction::FRem: Out << " % "; break;
2254     case Instruction::UDiv:
2255     case Instruction::SDiv: 
2256     case Instruction::FDiv: Out << " / "; break;
2257     case Instruction::And:  Out << " & "; break;
2258     case Instruction::Or:   Out << " | "; break;
2259     case Instruction::Xor:  Out << " ^ "; break;
2260     case Instruction::Shl : Out << " << "; break;
2261     case Instruction::LShr:
2262     case Instruction::AShr: Out << " >> "; break;
2263     default: cerr << "Invalid operator type!" << I; abort();
2264     }
2265
2266     writeOperandWithCast(I.getOperand(1), I.getOpcode());
2267     if (NeedsClosingParens)
2268       Out << "))";
2269   }
2270
2271   if (needsCast) {
2272     Out << "))";
2273   }
2274 }
2275
2276 void CWriter::visitICmpInst(ICmpInst &I) {
2277   // We must cast the results of icmp which might be promoted.
2278   bool needsCast = false;
2279
2280   // Write out the cast of the instruction's value back to the proper type
2281   // if necessary.
2282   bool NeedsClosingParens = writeInstructionCast(I);
2283
2284   // Certain icmp predicate require the operand to be forced to a specific type
2285   // so we use writeOperandWithCast here instead of writeOperand. Similarly
2286   // below for operand 1
2287   writeOperandWithCast(I.getOperand(0), I);
2288
2289   switch (I.getPredicate()) {
2290   case ICmpInst::ICMP_EQ:  Out << " == "; break;
2291   case ICmpInst::ICMP_NE:  Out << " != "; break;
2292   case ICmpInst::ICMP_ULE:
2293   case ICmpInst::ICMP_SLE: Out << " <= "; break;
2294   case ICmpInst::ICMP_UGE:
2295   case ICmpInst::ICMP_SGE: Out << " >= "; break;
2296   case ICmpInst::ICMP_ULT:
2297   case ICmpInst::ICMP_SLT: Out << " < "; break;
2298   case ICmpInst::ICMP_UGT:
2299   case ICmpInst::ICMP_SGT: Out << " > "; break;
2300   default: cerr << "Invalid icmp predicate!" << I; abort();
2301   }
2302
2303   writeOperandWithCast(I.getOperand(1), I);
2304   if (NeedsClosingParens)
2305     Out << "))";
2306
2307   if (needsCast) {
2308     Out << "))";
2309   }
2310 }
2311
2312 void CWriter::visitFCmpInst(FCmpInst &I) {
2313   if (I.getPredicate() == FCmpInst::FCMP_FALSE) {
2314     Out << "0";
2315     return;
2316   }
2317   if (I.getPredicate() == FCmpInst::FCMP_TRUE) {
2318     Out << "1";
2319     return;
2320   }
2321
2322   const char* op = 0;
2323   switch (I.getPredicate()) {
2324   default: assert(0 && "Illegal FCmp predicate");
2325   case FCmpInst::FCMP_ORD: op = "ord"; break;
2326   case FCmpInst::FCMP_UNO: op = "uno"; break;
2327   case FCmpInst::FCMP_UEQ: op = "ueq"; break;
2328   case FCmpInst::FCMP_UNE: op = "une"; break;
2329   case FCmpInst::FCMP_ULT: op = "ult"; break;
2330   case FCmpInst::FCMP_ULE: op = "ule"; break;
2331   case FCmpInst::FCMP_UGT: op = "ugt"; break;
2332   case FCmpInst::FCMP_UGE: op = "uge"; break;
2333   case FCmpInst::FCMP_OEQ: op = "oeq"; break;
2334   case FCmpInst::FCMP_ONE: op = "one"; break;
2335   case FCmpInst::FCMP_OLT: op = "olt"; break;
2336   case FCmpInst::FCMP_OLE: op = "ole"; break;
2337   case FCmpInst::FCMP_OGT: op = "ogt"; break;
2338   case FCmpInst::FCMP_OGE: op = "oge"; break;
2339   }
2340
2341   Out << "llvm_fcmp_" << op << "(";
2342   // Write the first operand
2343   writeOperand(I.getOperand(0));
2344   Out << ", ";
2345   // Write the second operand
2346   writeOperand(I.getOperand(1));
2347   Out << ")";
2348 }
2349
2350 static const char * getFloatBitCastField(const Type *Ty) {
2351   switch (Ty->getTypeID()) {
2352     default: assert(0 && "Invalid Type");
2353     case Type::FloatTyID:  return "Float";
2354     case Type::DoubleTyID: return "Double";
2355     case Type::IntegerTyID: {
2356       unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth();
2357       if (NumBits <= 32)
2358         return "Int32";
2359       else
2360         return "Int64";
2361     }
2362   }
2363 }
2364
2365 void CWriter::visitCastInst(CastInst &I) {
2366   const Type *DstTy = I.getType();
2367   const Type *SrcTy = I.getOperand(0)->getType();
2368   Out << '(';
2369   if (isFPIntBitCast(I)) {
2370     // These int<->float and long<->double casts need to be handled specially
2371     Out << GetValueName(&I) << "__BITCAST_TEMPORARY." 
2372         << getFloatBitCastField(I.getOperand(0)->getType()) << " = ";
2373     writeOperand(I.getOperand(0));
2374     Out << ", " << GetValueName(&I) << "__BITCAST_TEMPORARY."
2375         << getFloatBitCastField(I.getType());
2376   } else {
2377     printCast(I.getOpcode(), SrcTy, DstTy);
2378     if (I.getOpcode() == Instruction::SExt && SrcTy == Type::Int1Ty) {
2379       // Make sure we really get a sext from bool by subtracing the bool from 0
2380       Out << "0-";
2381     }
2382     writeOperand(I.getOperand(0));
2383     if (DstTy == Type::Int1Ty && 
2384         (I.getOpcode() == Instruction::Trunc ||
2385          I.getOpcode() == Instruction::FPToUI ||
2386          I.getOpcode() == Instruction::FPToSI ||
2387          I.getOpcode() == Instruction::PtrToInt)) {
2388       // Make sure we really get a trunc to bool by anding the operand with 1 
2389       Out << "&1u";
2390     }
2391   }
2392   Out << ')';
2393 }
2394
2395 void CWriter::visitSelectInst(SelectInst &I) {
2396   Out << "((";
2397   writeOperand(I.getCondition());
2398   Out << ") ? (";
2399   writeOperand(I.getTrueValue());
2400   Out << ") : (";
2401   writeOperand(I.getFalseValue());
2402   Out << "))";
2403 }
2404
2405
2406 void CWriter::lowerIntrinsics(Function &F) {
2407   // This is used to keep track of intrinsics that get generated to a lowered
2408   // function. We must generate the prototypes before the function body which
2409   // will only be expanded on first use (by the loop below).
2410   std::vector<Function*> prototypesToGen;
2411
2412   // Examine all the instructions in this function to find the intrinsics that
2413   // need to be lowered.
2414   for (Function::iterator BB = F.begin(), EE = F.end(); BB != EE; ++BB)
2415     for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; )
2416       if (CallInst *CI = dyn_cast<CallInst>(I++))
2417         if (Function *F = CI->getCalledFunction())
2418           switch (F->getIntrinsicID()) {
2419           case Intrinsic::not_intrinsic:
2420           case Intrinsic::vastart:
2421           case Intrinsic::vacopy:
2422           case Intrinsic::vaend:
2423           case Intrinsic::returnaddress:
2424           case Intrinsic::frameaddress:
2425           case Intrinsic::setjmp:
2426           case Intrinsic::longjmp:
2427           case Intrinsic::prefetch:
2428           case Intrinsic::dbg_stoppoint:
2429           case Intrinsic::powi:
2430             // We directly implement these intrinsics
2431             break;
2432           default:
2433             // If this is an intrinsic that directly corresponds to a GCC
2434             // builtin, we handle it.
2435             const char *BuiltinName = "";
2436 #define GET_GCC_BUILTIN_NAME
2437 #include "llvm/Intrinsics.gen"
2438 #undef GET_GCC_BUILTIN_NAME
2439             // If we handle it, don't lower it.
2440             if (BuiltinName[0]) break;
2441             
2442             // All other intrinsic calls we must lower.
2443             Instruction *Before = 0;
2444             if (CI != &BB->front())
2445               Before = prior(BasicBlock::iterator(CI));
2446
2447             IL->LowerIntrinsicCall(CI);
2448             if (Before) {        // Move iterator to instruction after call
2449               I = Before; ++I;
2450             } else {
2451               I = BB->begin();
2452             }
2453             // If the intrinsic got lowered to another call, and that call has
2454             // a definition then we need to make sure its prototype is emitted
2455             // before any calls to it.
2456             if (CallInst *Call = dyn_cast<CallInst>(I))
2457               if (Function *NewF = Call->getCalledFunction())
2458                 if (!NewF->isDeclaration())
2459                   prototypesToGen.push_back(NewF);
2460
2461             break;
2462           }
2463
2464   // We may have collected some prototypes to emit in the loop above. 
2465   // Emit them now, before the function that uses them is emitted. But,
2466   // be careful not to emit them twice.
2467   std::vector<Function*>::iterator I = prototypesToGen.begin();
2468   std::vector<Function*>::iterator E = prototypesToGen.end();
2469   for ( ; I != E; ++I) {
2470     if (intrinsicPrototypesAlreadyGenerated.insert(*I).second) {
2471       Out << '\n';
2472       printFunctionSignature(*I, true);
2473       Out << ";\n";
2474     }
2475   }
2476 }
2477
2478
2479 void CWriter::visitCallInst(CallInst &I) {
2480   //check if we have inline asm
2481   if (isInlineAsm(I)) {
2482     visitInlineAsm(I);
2483     return;
2484   }
2485
2486   bool WroteCallee = false;
2487
2488   // Handle intrinsic function calls first...
2489   if (Function *F = I.getCalledFunction())
2490     if (Intrinsic::ID ID = (Intrinsic::ID)F->getIntrinsicID()) {
2491       switch (ID) {
2492       default: {
2493         // If this is an intrinsic that directly corresponds to a GCC
2494         // builtin, we emit it here.
2495         const char *BuiltinName = "";
2496 #define GET_GCC_BUILTIN_NAME
2497 #include "llvm/Intrinsics.gen"
2498 #undef GET_GCC_BUILTIN_NAME
2499         assert(BuiltinName[0] && "Unknown LLVM intrinsic!");
2500
2501         Out << BuiltinName;
2502         WroteCallee = true;
2503         break;
2504       }
2505       case Intrinsic::vastart:
2506         Out << "0; ";
2507
2508         Out << "va_start(*(va_list*)";
2509         writeOperand(I.getOperand(1));
2510         Out << ", ";
2511         // Output the last argument to the enclosing function...
2512         if (I.getParent()->getParent()->arg_empty()) {
2513           cerr << "The C backend does not currently support zero "
2514                << "argument varargs functions, such as '"
2515                << I.getParent()->getParent()->getName() << "'!\n";
2516           abort();
2517         }
2518         writeOperand(--I.getParent()->getParent()->arg_end());
2519         Out << ')';
2520         return;
2521       case Intrinsic::vaend:
2522         if (!isa<ConstantPointerNull>(I.getOperand(1))) {
2523           Out << "0; va_end(*(va_list*)";
2524           writeOperand(I.getOperand(1));
2525           Out << ')';
2526         } else {
2527           Out << "va_end(*(va_list*)0)";
2528         }
2529         return;
2530       case Intrinsic::vacopy:
2531         Out << "0; ";
2532         Out << "va_copy(*(va_list*)";
2533         writeOperand(I.getOperand(1));
2534         Out << ", *(va_list*)";
2535         writeOperand(I.getOperand(2));
2536         Out << ')';
2537         return;
2538       case Intrinsic::returnaddress:
2539         Out << "__builtin_return_address(";
2540         writeOperand(I.getOperand(1));
2541         Out << ')';
2542         return;
2543       case Intrinsic::frameaddress:
2544         Out << "__builtin_frame_address(";
2545         writeOperand(I.getOperand(1));
2546         Out << ')';
2547         return;
2548       case Intrinsic::powi:
2549         Out << "__builtin_powi(";
2550         writeOperand(I.getOperand(1));
2551         Out << ", ";
2552         writeOperand(I.getOperand(2));
2553         Out << ')';
2554         return;
2555       case Intrinsic::setjmp:
2556         Out << "setjmp(*(jmp_buf*)";
2557         writeOperand(I.getOperand(1));
2558         Out << ')';
2559         return;
2560       case Intrinsic::longjmp:
2561         Out << "longjmp(*(jmp_buf*)";
2562         writeOperand(I.getOperand(1));
2563         Out << ", ";
2564         writeOperand(I.getOperand(2));
2565         Out << ')';
2566         return;
2567       case Intrinsic::prefetch:
2568         Out << "LLVM_PREFETCH((const void *)";
2569         writeOperand(I.getOperand(1));
2570         Out << ", ";
2571         writeOperand(I.getOperand(2));
2572         Out << ", ";
2573         writeOperand(I.getOperand(3));
2574         Out << ")";
2575         return;
2576       case Intrinsic::dbg_stoppoint: {
2577         // If we use writeOperand directly we get a "u" suffix which is rejected
2578         // by gcc.
2579         DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
2580
2581         Out << "\n#line "
2582             << SPI.getLine()
2583             << " \"" << SPI.getDirectory()
2584             << SPI.getFileName() << "\"\n";
2585         return;
2586       }
2587       }
2588     }
2589
2590   Value *Callee = I.getCalledValue();
2591
2592   const PointerType  *PTy   = cast<PointerType>(Callee->getType());
2593   const FunctionType *FTy   = cast<FunctionType>(PTy->getElementType());
2594
2595   // If this is a call to a struct-return function, assign to the first
2596   // parameter instead of passing it to the call.
2597   bool isStructRet = FTy->isStructReturn();
2598   if (isStructRet) {
2599     Out << "*(";
2600     writeOperand(I.getOperand(1));
2601     Out << ") = ";
2602   }
2603   
2604   if (I.isTailCall()) Out << " /*tail*/ ";
2605   
2606   if (!WroteCallee) {
2607     // If this is an indirect call to a struct return function, we need to cast
2608     // the pointer.
2609     bool NeedsCast = isStructRet && !isa<Function>(Callee);
2610
2611     // GCC is a real PITA.  It does not permit codegening casts of functions to
2612     // function pointers if they are in a call (it generates a trap instruction
2613     // instead!).  We work around this by inserting a cast to void* in between
2614     // the function and the function pointer cast.  Unfortunately, we can't just
2615     // form the constant expression here, because the folder will immediately
2616     // nuke it.
2617     //
2618     // Note finally, that this is completely unsafe.  ANSI C does not guarantee
2619     // that void* and function pointers have the same size. :( To deal with this
2620     // in the common case, we handle casts where the number of arguments passed
2621     // match exactly.
2622     //
2623     if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Callee))
2624       if (CE->isCast())
2625         if (Function *RF = dyn_cast<Function>(CE->getOperand(0))) {
2626           NeedsCast = true;
2627           Callee = RF;
2628         }
2629   
2630     if (NeedsCast) {
2631       // Ok, just cast the pointer type.
2632       Out << "((";
2633       if (!isStructRet)
2634         printType(Out, I.getCalledValue()->getType());
2635       else
2636         printStructReturnPointerFunctionType(Out, 
2637                              cast<PointerType>(I.getCalledValue()->getType()));
2638       Out << ")(void*)";
2639     }
2640     writeOperand(Callee);
2641     if (NeedsCast) Out << ')';
2642   }
2643
2644   Out << '(';
2645
2646   unsigned NumDeclaredParams = FTy->getNumParams();
2647
2648   CallSite::arg_iterator AI = I.op_begin()+1, AE = I.op_end();
2649   unsigned ArgNo = 0;
2650   if (isStructRet) {   // Skip struct return argument.
2651     ++AI;
2652     ++ArgNo;
2653   }
2654       
2655   const ParamAttrsList *Attrs = FTy->getParamAttrs();
2656   bool PrintedArg = false;
2657   unsigned Idx = 1;
2658   for (; AI != AE; ++AI, ++ArgNo, ++Idx) {
2659     if (PrintedArg) Out << ", ";
2660     if (ArgNo < NumDeclaredParams &&
2661         (*AI)->getType() != FTy->getParamType(ArgNo)) {
2662       Out << '(';
2663       printType(Out, FTy->getParamType(ArgNo), 
2664             /*isSigned=*/Attrs && Attrs->paramHasAttr(Idx, ParamAttr::SExt));
2665       Out << ')';
2666     }
2667     writeOperand(*AI);
2668     PrintedArg = true;
2669   }
2670   Out << ')';
2671 }
2672
2673
2674 //This converts the llvm constraint string to something gcc is expecting.
2675 //TODO: work out platform independent constraints and factor those out
2676 //      of the per target tables
2677 //      handle multiple constraint codes
2678 std::string CWriter::InterpretASMConstraint(InlineAsm::ConstraintInfo& c) {
2679
2680   assert(c.Codes.size() == 1 && "Too many asm constraint codes to handle");
2681
2682   const char** table = 0;
2683   
2684   //Grab the translation table from TargetAsmInfo if it exists
2685   if (!TAsm) {
2686     std::string E;
2687     const TargetMachineRegistry::Entry* Match = 
2688       TargetMachineRegistry::getClosestStaticTargetForModule(*TheModule, E);
2689     if (Match) {
2690       //Per platform Target Machines don't exist, so create it
2691       // this must be done only once
2692       const TargetMachine* TM = Match->CtorFn(*TheModule, "");
2693       TAsm = TM->getTargetAsmInfo();
2694     }
2695   }
2696   if (TAsm)
2697     table = TAsm->getAsmCBE();
2698
2699   //Search the translation table if it exists
2700   for (int i = 0; table && table[i]; i += 2)
2701     if (c.Codes[0] == table[i])
2702       return table[i+1];
2703
2704   //default is identity
2705   return c.Codes[0];
2706 }
2707
2708 //TODO: import logic from AsmPrinter.cpp
2709 static std::string gccifyAsm(std::string asmstr) {
2710   for (std::string::size_type i = 0; i != asmstr.size(); ++i)
2711     if (asmstr[i] == '\n')
2712       asmstr.replace(i, 1, "\\n");
2713     else if (asmstr[i] == '\t')
2714       asmstr.replace(i, 1, "\\t");
2715     else if (asmstr[i] == '$') {
2716       if (asmstr[i + 1] == '{') {
2717         std::string::size_type a = asmstr.find_first_of(':', i + 1);
2718         std::string::size_type b = asmstr.find_first_of('}', i + 1);
2719         std::string n = "%" + 
2720           asmstr.substr(a + 1, b - a - 1) +
2721           asmstr.substr(i + 2, a - i - 2);
2722         asmstr.replace(i, b - i + 1, n);
2723         i += n.size() - 1;
2724       } else
2725         asmstr.replace(i, 1, "%");
2726     }
2727     else if (asmstr[i] == '%')//grr
2728       { asmstr.replace(i, 1, "%%"); ++i;}
2729   
2730   return asmstr;
2731 }
2732
2733 //TODO: assumptions about what consume arguments from the call are likely wrong
2734 //      handle communitivity
2735 void CWriter::visitInlineAsm(CallInst &CI) {
2736   InlineAsm* as = cast<InlineAsm>(CI.getOperand(0));
2737   std::vector<InlineAsm::ConstraintInfo> Constraints = as->ParseConstraints();
2738   std::vector<std::pair<std::string, Value*> > Input;
2739   std::vector<std::pair<std::string, Value*> > Output;
2740   std::string Clobber;
2741   int count = CI.getType() == Type::VoidTy ? 1 : 0;
2742   for (std::vector<InlineAsm::ConstraintInfo>::iterator I = Constraints.begin(),
2743          E = Constraints.end(); I != E; ++I) {
2744     assert(I->Codes.size() == 1 && "Too many asm constraint codes to handle");
2745     std::string c = 
2746       InterpretASMConstraint(*I);
2747     switch(I->Type) {
2748     default:
2749       assert(0 && "Unknown asm constraint");
2750       break;
2751     case InlineAsm::isInput: {
2752       if (c.size()) {
2753         Input.push_back(std::make_pair(c, count ? CI.getOperand(count) : &CI));
2754         ++count; //consume arg
2755       }
2756       break;
2757     }
2758     case InlineAsm::isOutput: {
2759       if (c.size()) {
2760         Output.push_back(std::make_pair("="+((I->isEarlyClobber ? "&" : "")+c),
2761                                         count ? CI.getOperand(count) : &CI));
2762         ++count; //consume arg
2763       }
2764       break;
2765     }
2766     case InlineAsm::isClobber: {
2767       if (c.size()) 
2768         Clobber += ",\"" + c + "\"";
2769       break;
2770     }
2771     }
2772   }
2773   
2774   //fix up the asm string for gcc
2775   std::string asmstr = gccifyAsm(as->getAsmString());
2776   
2777   Out << "__asm__ volatile (\"" << asmstr << "\"\n";
2778   Out << "        :";
2779   for (std::vector<std::pair<std::string, Value*> >::iterator I = Output.begin(),
2780          E = Output.end(); I != E; ++I) {
2781     Out << "\"" << I->first << "\"(";
2782     writeOperandRaw(I->second);
2783     Out << ")";
2784     if (I + 1 != E)
2785       Out << ",";
2786   }
2787   Out << "\n        :";
2788   for (std::vector<std::pair<std::string, Value*> >::iterator I = Input.begin(),
2789          E = Input.end(); I != E; ++I) {
2790     Out << "\"" << I->first << "\"(";
2791     writeOperandRaw(I->second);
2792     Out << ")";
2793     if (I + 1 != E)
2794       Out << ",";
2795   }
2796   if (Clobber.size())
2797     Out << "\n        :" << Clobber.substr(1);
2798   Out << ")";
2799 }
2800
2801 void CWriter::visitMallocInst(MallocInst &I) {
2802   assert(0 && "lowerallocations pass didn't work!");
2803 }
2804
2805 void CWriter::visitAllocaInst(AllocaInst &I) {
2806   Out << '(';
2807   printType(Out, I.getType());
2808   Out << ") alloca(sizeof(";
2809   printType(Out, I.getType()->getElementType());
2810   Out << ')';
2811   if (I.isArrayAllocation()) {
2812     Out << " * " ;
2813     writeOperand(I.getOperand(0));
2814   }
2815   Out << ')';
2816 }
2817
2818 void CWriter::visitFreeInst(FreeInst &I) {
2819   assert(0 && "lowerallocations pass didn't work!");
2820 }
2821
2822 void CWriter::printIndexingExpression(Value *Ptr, gep_type_iterator I,
2823                                       gep_type_iterator E) {
2824   bool HasImplicitAddress = false;
2825   // If accessing a global value with no indexing, avoid *(&GV) syndrome
2826   if (isa<GlobalValue>(Ptr)) {
2827     HasImplicitAddress = true;
2828   } else if (isDirectAlloca(Ptr)) {
2829     HasImplicitAddress = true;
2830   }
2831
2832   if (I == E) {
2833     if (!HasImplicitAddress)
2834       Out << '*';  // Implicit zero first argument: '*x' is equivalent to 'x[0]'
2835
2836     writeOperandInternal(Ptr);
2837     return;
2838   }
2839
2840   const Constant *CI = dyn_cast<Constant>(I.getOperand());
2841   if (HasImplicitAddress && (!CI || !CI->isNullValue()))
2842     Out << "(&";
2843
2844   writeOperandInternal(Ptr);
2845
2846   if (HasImplicitAddress && (!CI || !CI->isNullValue())) {
2847     Out << ')';
2848     HasImplicitAddress = false;  // HIA is only true if we haven't addressed yet
2849   }
2850
2851   assert(!HasImplicitAddress || (CI && CI->isNullValue()) &&
2852          "Can only have implicit address with direct accessing");
2853
2854   if (HasImplicitAddress) {
2855     ++I;
2856   } else if (CI && CI->isNullValue()) {
2857     gep_type_iterator TmpI = I; ++TmpI;
2858
2859     // Print out the -> operator if possible...
2860     if (TmpI != E && isa<StructType>(*TmpI)) {
2861       Out << (HasImplicitAddress ? "." : "->");
2862       Out << "field" << cast<ConstantInt>(TmpI.getOperand())->getZExtValue();
2863       I = ++TmpI;
2864     }
2865   }
2866
2867   for (; I != E; ++I)
2868     if (isa<StructType>(*I)) {
2869       Out << ".field" << cast<ConstantInt>(I.getOperand())->getZExtValue();
2870     } else {
2871       Out << '[';
2872       writeOperandWithCast(I.getOperand(), Instruction::GetElementPtr);
2873       Out << ']';
2874     }
2875 }
2876
2877 void CWriter::visitLoadInst(LoadInst &I) {
2878   Out << '*';
2879   if (I.isVolatile()) {
2880     Out << "((";
2881     printType(Out, I.getType(), false, "volatile*");
2882     Out << ")";
2883   }
2884
2885   writeOperand(I.getOperand(0));
2886
2887   if (I.isVolatile())
2888     Out << ')';
2889 }
2890
2891 void CWriter::visitStoreInst(StoreInst &I) {
2892   Out << '*';
2893   if (I.isVolatile()) {
2894     Out << "((";
2895     printType(Out, I.getOperand(0)->getType(), false, " volatile*");
2896     Out << ")";
2897   }
2898   writeOperand(I.getPointerOperand());
2899   if (I.isVolatile()) Out << ')';
2900   Out << " = ";
2901   Value *Operand = I.getOperand(0);
2902   Constant *BitMask = 0;
2903   if (const IntegerType* ITy = dyn_cast<IntegerType>(Operand->getType()))
2904     if (!ITy->isPowerOf2ByteWidth())
2905       // We have a bit width that doesn't match an even power-of-2 byte
2906       // size. Consequently we must & the value with the type's bit mask
2907       BitMask = ConstantInt::get(ITy, ITy->getBitMask());
2908   if (BitMask)
2909     Out << "((";
2910   writeOperand(Operand);
2911   if (BitMask) {
2912     Out << ") & ";
2913     printConstant(BitMask);
2914     Out << ")"; 
2915   }
2916 }
2917
2918 void CWriter::visitGetElementPtrInst(GetElementPtrInst &I) {
2919   Out << '&';
2920   printIndexingExpression(I.getPointerOperand(), gep_type_begin(I),
2921                           gep_type_end(I));
2922 }
2923
2924 void CWriter::visitVAArgInst(VAArgInst &I) {
2925   Out << "va_arg(*(va_list*)";
2926   writeOperand(I.getOperand(0));
2927   Out << ", ";
2928   printType(Out, I.getType());
2929   Out << ");\n ";
2930 }
2931
2932 //===----------------------------------------------------------------------===//
2933 //                       External Interface declaration
2934 //===----------------------------------------------------------------------===//
2935
2936 bool CTargetMachine::addPassesToEmitWholeFile(PassManager &PM,
2937                                               std::ostream &o,
2938                                               CodeGenFileType FileType,
2939                                               bool Fast) {
2940   if (FileType != TargetMachine::AssemblyFile) return true;
2941
2942   PM.add(createLowerGCPass());
2943   PM.add(createLowerAllocationsPass(true));
2944   PM.add(createLowerInvokePass());
2945   PM.add(createCFGSimplificationPass());   // clean up after lower invoke.
2946   PM.add(new CBackendNameAllUsedStructsAndMergeFunctions());
2947   PM.add(new CWriter(o));
2948   return false;
2949 }