Modified the code so that it generates (0) for setjmp() and abort() for
[oota-llvm.git] / lib / Target / CBackend / CBackend.cpp
1 //===-- Writer.cpp - Library for converting LLVM code to C ----------------===//
2 //
3 // This library converts LLVM code to C code, compilable by GCC.
4 //
5 //===----------------------------------------------------------------------===//
6
7 #include "llvm/Assembly/CWriter.h"
8 #include "llvm/Constants.h"
9 #include "llvm/DerivedTypes.h"
10 #include "llvm/Module.h"
11 #include "llvm/Instructions.h"
12 #include "llvm/Pass.h"
13 #include "llvm/SymbolTable.h"
14 #include "llvm/Intrinsics.h"
15 #include "llvm/Analysis/FindUsedTypes.h"
16 #include "llvm/Analysis/ConstantsScanner.h"
17 #include "llvm/Support/InstVisitor.h"
18 #include "llvm/Support/InstIterator.h"
19 #include "llvm/Support/CallSite.h"
20 #include "llvm/Support/Mangler.h"
21 #include "Support/StringExtras.h"
22 #include "Support/STLExtras.h"
23 #include <algorithm>
24 #include <sstream>
25
26 namespace {
27   class CWriter : public Pass, public InstVisitor<CWriter> {
28     std::ostream &Out; 
29     Mangler *Mang;
30     const Module *TheModule;
31     std::map<const Type *, std::string> TypeNames;
32     std::set<const Value*> MangledGlobals;
33     bool needsMalloc, emittedInvoke;
34
35     std::map<const ConstantFP *, unsigned> FPConstantMap;
36   public:
37     CWriter(std::ostream &o) : Out(o) {}
38
39     void getAnalysisUsage(AnalysisUsage &AU) const {
40       AU.setPreservesAll();
41       AU.addRequired<FindUsedTypes>();
42     }
43
44     virtual bool run(Module &M) {
45       // Initialize
46       TheModule = &M;
47
48       // Ensure that all structure types have names...
49       bool Changed = nameAllUsedStructureTypes(M);
50       Mang = new Mangler(M);
51
52       // Run...
53       printModule(&M);
54
55       // Free memory...
56       delete Mang;
57       TypeNames.clear();
58       MangledGlobals.clear();
59       return false;
60     }
61
62     std::ostream &printType(std::ostream &Out, const Type *Ty,
63                             const std::string &VariableName = "",
64                             bool IgnoreName = false, bool namedContext = true);
65
66     void writeOperand(Value *Operand);
67     void writeOperandInternal(Value *Operand);
68
69   private :
70     bool nameAllUsedStructureTypes(Module &M);
71     void printModule(Module *M);
72     void printSymbolTable(const SymbolTable &ST);
73     void printContainedStructs(const Type *Ty, std::set<const StructType *> &);
74     void printFunctionSignature(const Function *F, bool Prototype);
75
76     void printFunction(Function *);
77
78     void printConstant(Constant *CPV);
79     void printConstantArray(ConstantArray *CPA);
80
81     // isInlinableInst - Attempt to inline instructions into their uses to build
82     // trees as much as possible.  To do this, we have to consistently decide
83     // what is acceptable to inline, so that variable declarations don't get
84     // printed and an extra copy of the expr is not emitted.
85     //
86     static bool isInlinableInst(const Instruction &I) {
87       // Must be an expression, must be used exactly once.  If it is dead, we
88       // emit it inline where it would go.
89       if (I.getType() == Type::VoidTy || I.use_size() != 1 ||
90           isa<TerminatorInst>(I) || isa<CallInst>(I) || isa<PHINode>(I) || 
91           isa<LoadInst>(I) || isa<VarArgInst>(I))
92         // Don't inline a load across a store or other bad things!
93         return false;
94
95       // Only inline instruction it it's use is in the same BB as the inst.
96       return I.getParent() == cast<Instruction>(I.use_back())->getParent();
97     }
98
99     // isDirectAlloca - Define fixed sized allocas in the entry block as direct
100     // variables which are accessed with the & operator.  This causes GCC to
101     // generate significantly better code than to emit alloca calls directly.
102     //
103     static const AllocaInst *isDirectAlloca(const Value *V) {
104       const AllocaInst *AI = dyn_cast<AllocaInst>(V);
105       if (!AI) return false;
106       if (AI->isArrayAllocation())
107         return 0;   // FIXME: we can also inline fixed size array allocas!
108       if (AI->getParent() != &AI->getParent()->getParent()->getEntryNode())
109         return 0;
110       return AI;
111     }
112
113     // Instruction visitation functions
114     friend class InstVisitor<CWriter>;
115
116     void visitReturnInst(ReturnInst &I);
117     void visitBranchInst(BranchInst &I);
118     void visitSwitchInst(SwitchInst &I);
119     void visitInvokeInst(InvokeInst &I);
120
121     void visitPHINode(PHINode &I);
122     void visitBinaryOperator(Instruction &I);
123
124     void visitCastInst (CastInst &I);
125     void visitCallInst (CallInst &I);
126     void visitCallSite (CallSite CS);
127     void visitShiftInst(ShiftInst &I) { visitBinaryOperator(I); }
128
129     void visitMallocInst(MallocInst &I);
130     void visitAllocaInst(AllocaInst &I);
131     void visitFreeInst  (FreeInst   &I);
132     void visitLoadInst  (LoadInst   &I);
133     void visitStoreInst (StoreInst  &I);
134     void visitGetElementPtrInst(GetElementPtrInst &I);
135     void visitVarArgInst(VarArgInst &I);
136
137     void visitInstruction(Instruction &I) {
138       std::cerr << "C Writer does not know about " << I;
139       abort();
140     }
141
142     void outputLValue(Instruction *I) {
143       Out << "  " << Mang->getValueName(I) << " = ";
144     }
145     void printBranchToBlock(BasicBlock *CurBlock, BasicBlock *SuccBlock,
146                             unsigned Indent);
147     void printIndexingExpression(Value *Ptr, User::op_iterator I,
148                                  User::op_iterator E);
149   };
150 }
151
152 // A pointer type should not use parens around *'s alone, e.g., (**)
153 inline bool ptrTypeNameNeedsParens(const std::string &NameSoFar) {
154   return (NameSoFar.find_last_not_of('*') != std::string::npos);
155 }
156
157 // Pass the Type* and the variable name and this prints out the variable
158 // declaration.
159 //
160 std::ostream &CWriter::printType(std::ostream &Out, const Type *Ty,
161                                  const std::string &NameSoFar,
162                                  bool IgnoreName, bool namedContext) {
163   if (Ty->isPrimitiveType())
164     switch (Ty->getPrimitiveID()) {
165     case Type::VoidTyID:   return Out << "void "               << NameSoFar;
166     case Type::BoolTyID:   return Out << "bool "               << NameSoFar;
167     case Type::UByteTyID:  return Out << "unsigned char "      << NameSoFar;
168     case Type::SByteTyID:  return Out << "signed char "        << NameSoFar;
169     case Type::UShortTyID: return Out << "unsigned short "     << NameSoFar;
170     case Type::ShortTyID:  return Out << "short "              << NameSoFar;
171     case Type::UIntTyID:   return Out << "unsigned "           << NameSoFar;
172     case Type::IntTyID:    return Out << "int "                << NameSoFar;
173     case Type::ULongTyID:  return Out << "unsigned long long " << NameSoFar;
174     case Type::LongTyID:   return Out << "signed long long "   << NameSoFar;
175     case Type::FloatTyID:  return Out << "float "              << NameSoFar;
176     case Type::DoubleTyID: return Out << "double "             << NameSoFar;
177     default :
178       std::cerr << "Unknown primitive type: " << Ty << "\n";
179       abort();
180     }
181   
182   // Check to see if the type is named.
183   if (!IgnoreName || isa<OpaqueType>(Ty)) {
184     std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
185     if (I != TypeNames.end()) {
186       return Out << I->second << " " << NameSoFar;
187     }
188   }
189
190   switch (Ty->getPrimitiveID()) {
191   case Type::FunctionTyID: {
192     const FunctionType *MTy = cast<FunctionType>(Ty);
193     std::stringstream FunctionInnards; 
194     FunctionInnards << " (" << NameSoFar << ") (";
195     for (FunctionType::ParamTypes::const_iterator
196            I = MTy->getParamTypes().begin(),
197            E = MTy->getParamTypes().end(); I != E; ++I) {
198       if (I != MTy->getParamTypes().begin())
199         FunctionInnards << ", ";
200       printType(FunctionInnards, *I, "");
201     }
202     if (MTy->isVarArg()) {
203       if (!MTy->getParamTypes().empty()) 
204         FunctionInnards << ", ...";
205     } else if (MTy->getParamTypes().empty()) {
206       FunctionInnards << "void";
207     }
208     FunctionInnards << ")";
209     std::string tstr = FunctionInnards.str();
210     printType(Out, MTy->getReturnType(), tstr);
211     return Out;
212   }
213   case Type::StructTyID: {
214     const StructType *STy = cast<StructType>(Ty);
215     Out << NameSoFar + " {\n";
216     unsigned Idx = 0;
217     for (StructType::ElementTypes::const_iterator
218            I = STy->getElementTypes().begin(),
219            E = STy->getElementTypes().end(); I != E; ++I) {
220       Out << "  ";
221       printType(Out, *I, "field" + utostr(Idx++));
222       Out << ";\n";
223     }
224     return Out << "}";
225   }  
226
227   case Type::PointerTyID: {
228     const PointerType *PTy = cast<PointerType>(Ty);
229     std::string ptrName = "*" + NameSoFar;
230
231     // Do not need parens around "* NameSoFar" if NameSoFar consists only
232     // of zero or more '*' chars *and* this is not an unnamed pointer type
233     // such as the result type in a cast statement.  Otherwise, enclose in ( ).
234     if (ptrTypeNameNeedsParens(NameSoFar) || !namedContext || 
235         PTy->getElementType()->getPrimitiveID() == Type::ArrayTyID)
236       ptrName = "(" + ptrName + ")";    // 
237
238     return printType(Out, PTy->getElementType(), ptrName);
239   }
240
241   case Type::ArrayTyID: {
242     const ArrayType *ATy = cast<ArrayType>(Ty);
243     unsigned NumElements = ATy->getNumElements();
244     return printType(Out, ATy->getElementType(),
245                      NameSoFar + "[" + utostr(NumElements) + "]");
246   }
247
248   case Type::OpaqueTyID: {
249     static int Count = 0;
250     std::string TyName = "struct opaque_" + itostr(Count++);
251     assert(TypeNames.find(Ty) == TypeNames.end());
252     TypeNames[Ty] = TyName;
253     return Out << TyName << " " << NameSoFar;
254   }
255   default:
256     assert(0 && "Unhandled case in getTypeProps!");
257     abort();
258   }
259
260   return Out;
261 }
262
263 void CWriter::printConstantArray(ConstantArray *CPA) {
264
265   // As a special case, print the array as a string if it is an array of
266   // ubytes or an array of sbytes with positive values.
267   // 
268   const Type *ETy = CPA->getType()->getElementType();
269   bool isString = (ETy == Type::SByteTy || ETy == Type::UByteTy);
270
271   // Make sure the last character is a null char, as automatically added by C
272   if (isString && (CPA->getNumOperands() == 0 ||
273                    !cast<Constant>(*(CPA->op_end()-1))->isNullValue()))
274     isString = false;
275   
276   if (isString) {
277     Out << "\"";
278     // Keep track of whether the last number was a hexadecimal escape
279     bool LastWasHex = false;
280
281     // Do not include the last character, which we know is null
282     for (unsigned i = 0, e = CPA->getNumOperands()-1; i != e; ++i) {
283       unsigned char C = cast<ConstantInt>(CPA->getOperand(i))->getRawValue();
284       
285       // Print it out literally if it is a printable character.  The only thing
286       // to be careful about is when the last letter output was a hex escape
287       // code, in which case we have to be careful not to print out hex digits
288       // explicitly (the C compiler thinks it is a continuation of the previous
289       // character, sheesh...)
290       //
291       if (isprint(C) && (!LastWasHex || !isxdigit(C))) {
292         LastWasHex = false;
293         if (C == '"' || C == '\\')
294           Out << "\\" << C;
295         else
296           Out << C;
297       } else {
298         LastWasHex = false;
299         switch (C) {
300         case '\n': Out << "\\n"; break;
301         case '\t': Out << "\\t"; break;
302         case '\r': Out << "\\r"; break;
303         case '\v': Out << "\\v"; break;
304         case '\a': Out << "\\a"; break;
305         case '\"': Out << "\\\""; break;
306         case '\'': Out << "\\\'"; break;           
307         default:
308           Out << "\\x";
309           Out << (char)(( C/16  < 10) ? ( C/16 +'0') : ( C/16 -10+'A'));
310           Out << (char)(((C&15) < 10) ? ((C&15)+'0') : ((C&15)-10+'A'));
311           LastWasHex = true;
312           break;
313         }
314       }
315     }
316     Out << "\"";
317   } else {
318     Out << "{";
319     if (CPA->getNumOperands()) {
320       Out << " ";
321       printConstant(cast<Constant>(CPA->getOperand(0)));
322       for (unsigned i = 1, e = CPA->getNumOperands(); i != e; ++i) {
323         Out << ", ";
324         printConstant(cast<Constant>(CPA->getOperand(i)));
325       }
326     }
327     Out << " }";
328   }
329 }
330
331 /// FPCSafeToPrint - Returns true if we may assume that CFP may be
332 /// written out textually as a double (rather than as a reference to a
333 /// stack-allocated variable). We decide this by converting CFP to a
334 /// string and back into a double, and then checking whether the
335 /// conversion results in a bit-equal double to the original value of
336 /// CFP. This depends on us and the target C compiler agreeing on the
337 /// conversion process (which is pretty likely since we only deal in
338 /// IEEE FP.) This is adapted from similar code in
339 /// lib/VMCore/AsmWriter.cpp:WriteConstantInt().
340 static bool FPCSafeToPrint (const ConstantFP *CFP) {
341   std::string StrVal = ftostr(CFP->getValue());
342   // Check to make sure that the stringized number is not some string like
343   // "Inf" or NaN, that atof will accept, but the lexer will not.  Check that
344   // the string matches the "[-+]?[0-9]" regex.
345   if ((StrVal[0] >= '0' && StrVal[0] <= '9') ||
346       ((StrVal[0] == '-' || StrVal[0] == '+') &&
347        (StrVal[1] >= '0' && StrVal[1] <= '9')))
348     // Reparse stringized version!
349     return (atof(StrVal.c_str()) == CFP->getValue());
350   return false;
351 }
352
353 // printConstant - The LLVM Constant to C Constant converter.
354 void CWriter::printConstant(Constant *CPV) {
355   if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CPV)) {
356     switch (CE->getOpcode()) {
357     case Instruction::Cast:
358       Out << "((";
359       printType(Out, CPV->getType());
360       Out << ")";
361       printConstant(CE->getOperand(0));
362       Out << ")";
363       return;
364
365     case Instruction::GetElementPtr:
366       Out << "(&(";
367       printIndexingExpression(CE->getOperand(0),
368                               CPV->op_begin()+1, CPV->op_end());
369       Out << "))";
370       return;
371     case Instruction::Add:
372       Out << "(";
373       printConstant(CE->getOperand(0));
374       Out << " + ";
375       printConstant(CE->getOperand(1));
376       Out << ")";
377       return;
378     case Instruction::Sub:
379       Out << "(";
380       printConstant(CE->getOperand(0));
381       Out << " - ";
382       printConstant(CE->getOperand(1));
383       Out << ")";
384       return;
385
386     default:
387       std::cerr << "CWriter Error: Unhandled constant expression: "
388                 << CE << "\n";
389       abort();
390     }
391   }
392
393   switch (CPV->getType()->getPrimitiveID()) {
394   case Type::BoolTyID:
395     Out << (CPV == ConstantBool::False ? "0" : "1"); break;
396   case Type::SByteTyID:
397   case Type::ShortTyID:
398     Out << cast<ConstantSInt>(CPV)->getValue(); break;
399   case Type::IntTyID:
400     if ((int)cast<ConstantSInt>(CPV)->getValue() == (int)0x80000000)
401       Out << "((int)0x80000000)";   // Handle MININT specially to avoid warning
402     else
403       Out << cast<ConstantSInt>(CPV)->getValue();
404     break;
405
406   case Type::LongTyID:
407     Out << cast<ConstantSInt>(CPV)->getValue() << "ll"; break;
408
409   case Type::UByteTyID:
410   case Type::UShortTyID:
411     Out << cast<ConstantUInt>(CPV)->getValue(); break;
412   case Type::UIntTyID:
413     Out << cast<ConstantUInt>(CPV)->getValue() << "u"; break;
414   case Type::ULongTyID:
415     Out << cast<ConstantUInt>(CPV)->getValue() << "ull"; break;
416
417   case Type::FloatTyID:
418   case Type::DoubleTyID: {
419     ConstantFP *FPC = cast<ConstantFP>(CPV);
420     std::map<const ConstantFP*, unsigned>::iterator I = FPConstantMap.find(FPC);
421     if (I != FPConstantMap.end()) {
422       // Because of FP precision problems we must load from a stack allocated
423       // value that holds the value in hex.
424       Out << "(*(" << (FPC->getType() == Type::FloatTy ? "float" : "double")
425           << "*)&FloatConstant" << I->second << ")";
426     } else {
427       if (FPCSafeToPrint (FPC)) {
428         Out << ftostr (FPC->getValue ());
429       } else {
430         Out << FPC->getValue(); // Who knows? Give it our best shot...
431       }
432     }
433     break;
434   }
435
436   case Type::ArrayTyID:
437     printConstantArray(cast<ConstantArray>(CPV));
438     break;
439
440   case Type::StructTyID: {
441     Out << "{";
442     if (CPV->getNumOperands()) {
443       Out << " ";
444       printConstant(cast<Constant>(CPV->getOperand(0)));
445       for (unsigned i = 1, e = CPV->getNumOperands(); i != e; ++i) {
446         Out << ", ";
447         printConstant(cast<Constant>(CPV->getOperand(i)));
448       }
449     }
450     Out << " }";
451     break;
452   }
453
454   case Type::PointerTyID:
455     if (isa<ConstantPointerNull>(CPV)) {
456       Out << "((";
457       printType(Out, CPV->getType());
458       Out << ")/*NULL*/0)";
459       break;
460     } else if (ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(CPV)) {
461       writeOperand(CPR->getValue());
462       break;
463     }
464     // FALL THROUGH
465   default:
466     std::cerr << "Unknown constant type: " << CPV << "\n";
467     abort();
468   }
469 }
470
471 void CWriter::writeOperandInternal(Value *Operand) {
472   if (Instruction *I = dyn_cast<Instruction>(Operand))
473     if (isInlinableInst(*I) && !isDirectAlloca(I)) {
474       // Should we inline this instruction to build a tree?
475       Out << "(";
476       visit(*I);
477       Out << ")";    
478       return;
479     }
480   
481   if (Constant *CPV = dyn_cast<Constant>(Operand)) {
482     printConstant(CPV); 
483   } else {
484     Out << Mang->getValueName(Operand);
485   }
486 }
487
488 void CWriter::writeOperand(Value *Operand) {
489   if (isa<GlobalVariable>(Operand) || isDirectAlloca(Operand))
490     Out << "(&";  // Global variables are references as their addresses by llvm
491
492   writeOperandInternal(Operand);
493
494   if (isa<GlobalVariable>(Operand) || isDirectAlloca(Operand))
495     Out << ")";
496 }
497
498 // nameAllUsedStructureTypes - If there are structure types in the module that
499 // are used but do not have names assigned to them in the symbol table yet then
500 // we assign them names now.
501 //
502 bool CWriter::nameAllUsedStructureTypes(Module &M) {
503   // Get a set of types that are used by the program...
504   std::set<const Type *> UT = getAnalysis<FindUsedTypes>().getTypes();
505
506   // Loop over the module symbol table, removing types from UT that are already
507   // named.
508   //
509   SymbolTable &MST = M.getSymbolTable();
510   if (MST.find(Type::TypeTy) != MST.end())
511     for (SymbolTable::type_iterator I = MST.type_begin(Type::TypeTy),
512            E = MST.type_end(Type::TypeTy); I != E; ++I)
513       UT.erase(cast<Type>(I->second));
514
515   // UT now contains types that are not named.  Loop over it, naming structure
516   // types.
517   //
518   bool Changed = false;
519   for (std::set<const Type *>::const_iterator I = UT.begin(), E = UT.end();
520        I != E; ++I)
521     if (const StructType *ST = dyn_cast<StructType>(*I)) {
522       ((Value*)ST)->setName("unnamed", &MST);
523       Changed = true;
524     }
525   return Changed;
526 }
527
528 // generateCompilerSpecificCode - This is where we add conditional compilation
529 // directives to cater to specific compilers as need be.
530 //
531 static void generateCompilerSpecificCode(std::ostream& Out) {
532   // Alloca is hard to get, and we don't want to include stdlib.h here...
533   Out << "/* get a declaration for alloca */\n"
534       << "#ifdef sun\n"
535       << "extern void *__builtin_alloca(unsigned long);\n"
536       << "#define alloca(x) __builtin_alloca(x)\n"
537       << "#else\n"
538       << "#ifndef __FreeBSD__\n"
539       << "#include <alloca.h>\n"
540       << "#endif\n"
541       << "#endif\n\n";
542
543   // We output GCC specific attributes to preserve 'linkonce'ness on globals.
544   // If we aren't being compiled with GCC, just drop these attributes.
545   Out << "#ifndef __GNUC__  /* Can only support \"linkonce\" vars with GCC */\n"
546       << "#define __attribute__(X)\n"
547       << "#endif\n";
548 }
549
550 void CWriter::printModule(Module *M) {
551   // Calculate which global values have names that will collide when we throw
552   // away type information.
553   {  // Scope to delete the FoundNames set when we are done with it...
554     std::set<std::string> FoundNames;
555     for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
556       if (I->hasName())                      // If the global has a name...
557         if (FoundNames.count(I->getName()))  // And the name is already used
558           MangledGlobals.insert(I);          // Mangle the name
559         else
560           FoundNames.insert(I->getName());   // Otherwise, keep track of name
561
562     for (Module::giterator I = M->gbegin(), E = M->gend(); I != E; ++I)
563       if (I->hasName())                      // If the global has a name...
564         if (FoundNames.count(I->getName()))  // And the name is already used
565           MangledGlobals.insert(I);          // Mangle the name
566         else
567           FoundNames.insert(I->getName());   // Otherwise, keep track of name
568   }
569
570   // get declaration for alloca
571   Out << "/* Provide Declarations */\n";
572   Out << "#include <stdarg.h>\n";
573 #ifdef HAVE_JUMP
574   Out << "#include <setjmp.h>\n";
575 #endif
576   generateCompilerSpecificCode(Out);
577   
578   // Provide a definition for `bool' if not compiling with a C++ compiler.
579   Out << "\n"
580       << "#ifndef __cplusplus\ntypedef unsigned char bool;\n#endif\n"
581     
582       << "\n\n/* Support for floating point constants */\n"
583       << "typedef unsigned long long ConstantDoubleTy;\n"
584       << "typedef unsigned int        ConstantFloatTy;\n"
585     
586       << "\n\n/* Support for the invoke instruction */\n"
587       << "extern struct __llvm_jmpbuf_list_t {\n"
588       << "  jmp_buf buf; struct __llvm_jmpbuf_list_t *next;\n"
589       << "} *__llvm_jmpbuf_list;\n"
590
591       << "\n\n/* Global Declarations */\n";
592
593   // First output all the declarations for the program, because C requires
594   // Functions & globals to be declared before they are used.
595   //
596
597   // Loop over the symbol table, emitting all named constants...
598   printSymbolTable(M->getSymbolTable());
599
600   // Global variable declarations...
601   if (!M->gempty()) {
602     Out << "\n/* External Global Variable Declarations */\n";
603     for (Module::giterator I = M->gbegin(), E = M->gend(); I != E; ++I) {
604       if (I->hasExternalLinkage()) {
605         Out << "extern ";
606         printType(Out, I->getType()->getElementType(), Mang->getValueName(I));
607         Out << ";\n";
608       }
609     }
610   }
611
612   // Function declarations
613   if (!M->empty()) {
614     Out << "\n/* Function Declarations */\n";
615     needsMalloc = true;
616     for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I) {
617       // If the function is external and the name collides don't print it.
618       // Sometimes the bytecode likes to have multiple "declarations" for
619       // external functions
620       if ((I->hasInternalLinkage() || !MangledGlobals.count(I)) &&
621           !I->getIntrinsicID()) {
622         printFunctionSignature(I, true);
623         Out << ";\n";
624       }
625     }
626   }
627
628   // Print Malloc prototype if needed
629   if (needsMalloc) {
630     Out << "\n/* Malloc to make sun happy */\n";
631     Out << "extern void * malloc();\n\n";
632   }
633
634   // Output the global variable declarations
635   if (!M->gempty()) {
636     Out << "\n\n/* Global Variable Declarations */\n";
637     for (Module::giterator I = M->gbegin(), E = M->gend(); I != E; ++I)
638       if (!I->isExternal()) {
639         Out << "extern ";
640         printType(Out, I->getType()->getElementType(), Mang->getValueName(I));
641       
642         Out << ";\n";
643       }
644   }
645
646   // Output the global variable definitions and contents...
647   if (!M->gempty()) {
648     Out << "\n\n/* Global Variable Definitions and Initialization */\n";
649     for (Module::giterator I = M->gbegin(), E = M->gend(); I != E; ++I)
650       if (!I->isExternal()) {
651         if (I->hasInternalLinkage())
652           Out << "static ";
653         printType(Out, I->getType()->getElementType(), Mang->getValueName(I));
654         if (I->hasLinkOnceLinkage())
655           Out << " __attribute__((common))";
656         if (!I->getInitializer()->isNullValue()) {
657           Out << " = " ;
658           writeOperand(I->getInitializer());
659         }
660         Out << ";\n";
661       }
662   }
663
664   // Output all of the functions...
665   emittedInvoke = false;
666   if (!M->empty()) {
667     Out << "\n\n/* Function Bodies */\n";
668     for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
669       printFunction(I);
670   }
671
672   // If the program included an invoke instruction, we need to output the
673   // support code for it here!
674   if (emittedInvoke) {
675     Out << "\n/* More support for the invoke instruction */\n"
676         << "struct __llvm_jmpbuf_list_t *__llvm_jmpbuf_list "
677         << "__attribute__((common)) = 0;\n";
678   }
679 }
680
681
682 /// printSymbolTable - Run through symbol table looking for type names.  If a
683 /// type name is found, emit it's declaration...
684 ///
685 void CWriter::printSymbolTable(const SymbolTable &ST) {
686   // If there are no type names, exit early.
687   if (ST.find(Type::TypeTy) == ST.end())
688     return;
689
690   // We are only interested in the type plane of the symbol table...
691   SymbolTable::type_const_iterator I   = ST.type_begin(Type::TypeTy);
692   SymbolTable::type_const_iterator End = ST.type_end(Type::TypeTy);
693   
694   // Print out forward declarations for structure types before anything else!
695   Out << "/* Structure forward decls */\n";
696   for (; I != End; ++I)
697     if (const Type *STy = dyn_cast<StructType>(I->second)) {
698       std::string Name = "struct l_" + Mangler::makeNameProper(I->first);
699       Out << Name << ";\n";
700       TypeNames.insert(std::make_pair(STy, Name));
701     }
702
703   Out << "\n";
704
705   // Now we can print out typedefs...
706   Out << "/* Typedefs */\n";
707   for (I = ST.type_begin(Type::TypeTy); I != End; ++I) {
708     const Type *Ty = cast<Type>(I->second);
709     std::string Name = "l_" + Mangler::makeNameProper(I->first);
710     Out << "typedef ";
711     printType(Out, Ty, Name);
712     Out << ";\n";
713   }
714
715   Out << "\n";
716
717   // Keep track of which structures have been printed so far...
718   std::set<const StructType *> StructPrinted;
719
720   // Loop over all structures then push them into the stack so they are
721   // printed in the correct order.
722   //
723   Out << "/* Structure contents */\n";
724   for (I = ST.type_begin(Type::TypeTy); I != End; ++I)
725     if (const StructType *STy = dyn_cast<StructType>(I->second))
726       printContainedStructs(STy, StructPrinted);
727 }
728
729 // Push the struct onto the stack and recursively push all structs
730 // this one depends on.
731 void CWriter::printContainedStructs(const Type *Ty,
732                                     std::set<const StructType*> &StructPrinted){
733   if (const StructType *STy = dyn_cast<StructType>(Ty)) {
734     //Check to see if we have already printed this struct
735     if (StructPrinted.count(STy) == 0) {
736       // Print all contained types first...
737       for (StructType::ElementTypes::const_iterator
738              I = STy->getElementTypes().begin(),
739              E = STy->getElementTypes().end(); I != E; ++I) {
740         const Type *Ty1 = I->get();
741         if (isa<StructType>(Ty1) || isa<ArrayType>(Ty1))
742           printContainedStructs(*I, StructPrinted);
743       }
744       
745       //Print structure type out..
746       StructPrinted.insert(STy);
747       std::string Name = TypeNames[STy];  
748       printType(Out, STy, Name, true);
749       Out << ";\n\n";
750     }
751
752     // If it is an array, check contained types and continue
753   } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)){
754     const Type *Ty1 = ATy->getElementType();
755     if (isa<StructType>(Ty1) || isa<ArrayType>(Ty1))
756       printContainedStructs(Ty1, StructPrinted);
757   }
758 }
759
760
761 void CWriter::printFunctionSignature(const Function *F, bool Prototype) {
762   // If the program provides its own malloc prototype we don't need
763   // to include the general one.  
764   if (Mang->getValueName(F) == "malloc")
765     needsMalloc = false;
766
767   if (F->hasInternalLinkage()) Out << "static ";
768   if (F->hasLinkOnceLinkage()) Out << "inline ";
769   
770   // Loop over the arguments, printing them...
771   const FunctionType *FT = cast<FunctionType>(F->getFunctionType());
772   
773   std::stringstream FunctionInnards; 
774     
775   // Print out the name...
776   FunctionInnards << Mang->getValueName(F) << "(";
777     
778   if (!F->isExternal()) {
779     if (!F->aempty()) {
780       std::string ArgName;
781       if (F->abegin()->hasName() || !Prototype)
782         ArgName = Mang->getValueName(F->abegin());
783       printType(FunctionInnards, F->afront().getType(), ArgName);
784       for (Function::const_aiterator I = ++F->abegin(), E = F->aend();
785            I != E; ++I) {
786         FunctionInnards << ", ";
787         if (I->hasName() || !Prototype)
788           ArgName = Mang->getValueName(I);
789         else 
790           ArgName = "";
791         printType(FunctionInnards, I->getType(), ArgName);
792       }
793     }
794   } else {
795     // Loop over the arguments, printing them...
796     for (FunctionType::ParamTypes::const_iterator I = 
797            FT->getParamTypes().begin(),
798            E = FT->getParamTypes().end(); I != E; ++I) {
799       if (I != FT->getParamTypes().begin()) FunctionInnards << ", ";
800       printType(FunctionInnards, *I);
801     }
802   }
803
804   // Finish printing arguments... if this is a vararg function, print the ...,
805   // unless there are no known types, in which case, we just emit ().
806   //
807   if (FT->isVarArg() && !FT->getParamTypes().empty()) {
808     if (FT->getParamTypes().size()) FunctionInnards << ", ";
809     FunctionInnards << "...";  // Output varargs portion of signature!
810   }
811   FunctionInnards << ")";
812   // Print out the return type and the entire signature for that matter
813   printType(Out, F->getReturnType(), FunctionInnards.str());
814 }
815
816 void CWriter::printFunction(Function *F) {
817   if (F->isExternal()) return;
818
819   printFunctionSignature(F, false);
820   Out << " {\n";
821
822   // print local variable information for the function
823   for (inst_iterator I = inst_begin(F), E = inst_end(F); I != E; ++I)
824     if (const AllocaInst *AI = isDirectAlloca(*I)) {
825       Out << "  ";
826       printType(Out, AI->getAllocatedType(), Mang->getValueName(AI));
827       Out << ";    /* Address exposed local */\n";
828     } else if ((*I)->getType() != Type::VoidTy && !isInlinableInst(**I)) {
829       Out << "  ";
830       printType(Out, (*I)->getType(), Mang->getValueName(*I));
831       Out << ";\n";
832       
833       if (isa<PHINode>(*I)) {  // Print out PHI node temporaries as well...
834         Out << "  ";
835         printType(Out, (*I)->getType(), Mang->getValueName(*I)+"__PHI_TEMPORARY");
836         Out << ";\n";
837       }
838     }
839
840   Out << "\n";
841
842   // Scan the function for floating point constants.  If any FP constant is used
843   // in the function, we want to redirect it here so that we do not depend on
844   // the precision of the printed form, unless the printed form preserves
845   // precision.
846   //
847   unsigned FPCounter = 0;
848   for (constant_iterator I = constant_begin(F), E = constant_end(F); I != E;++I)
849     if (const ConstantFP *FPC = dyn_cast<ConstantFP>(*I))
850       if ((!FPCSafeToPrint(FPC)) // Do not put in FPConstantMap if safe.
851           && (FPConstantMap.find(FPC) == FPConstantMap.end())) {
852         double Val = FPC->getValue();
853         
854         FPConstantMap[FPC] = FPCounter;  // Number the FP constants
855
856         if (FPC->getType() == Type::DoubleTy)
857           Out << "  const ConstantDoubleTy FloatConstant" << FPCounter++
858               << " = 0x" << std::hex << *(unsigned long long*)&Val << std::dec
859               << ";    /* " << Val << " */\n";
860         else if (FPC->getType() == Type::FloatTy) {
861           float fVal = Val;
862           Out << "  const ConstantFloatTy FloatConstant" << FPCounter++
863               << " = 0x" << std::hex << *(unsigned*)&fVal << std::dec
864               << ";    /* " << Val << " */\n";
865         } else
866           assert(0 && "Unknown float type!");
867       }
868
869   Out << "\n";
870  
871   // print the basic blocks
872   for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
873     BasicBlock *Prev = BB->getPrev();
874
875     // Don't print the label for the basic block if there are no uses, or if the
876     // only terminator use is the precessor basic block's terminator.  We have
877     // to scan the use list because PHI nodes use basic blocks too but do not
878     // require a label to be generated.
879     //
880     bool NeedsLabel = false;
881     for (Value::use_iterator UI = BB->use_begin(), UE = BB->use_end();
882          UI != UE; ++UI)
883       if (TerminatorInst *TI = dyn_cast<TerminatorInst>(*UI))
884         if (TI != Prev->getTerminator() ||
885             isa<SwitchInst>(Prev->getTerminator())) {
886           NeedsLabel = true;
887           break;        
888         }
889
890     if (NeedsLabel) Out << Mang->getValueName(BB) << ":\n";
891
892     // Output all of the instructions in the basic block...
893     for (BasicBlock::iterator II = BB->begin(), E = --BB->end(); II != E; ++II){
894       if (!isInlinableInst(*II) && !isDirectAlloca(II)) {
895         if (II->getType() != Type::VoidTy)
896           outputLValue(II);
897         else
898           Out << "  ";
899         visit(*II);
900         Out << ";\n";
901       }
902     }
903
904     // Don't emit prefix or suffix for the terminator...
905     visit(*BB->getTerminator());
906   }
907   
908   Out << "}\n\n";
909   FPConstantMap.clear();
910 }
911
912 // Specific Instruction type classes... note that all of the casts are
913 // neccesary because we use the instruction classes as opaque types...
914 //
915 void CWriter::visitReturnInst(ReturnInst &I) {
916   // Don't output a void return if this is the last basic block in the function
917   if (I.getNumOperands() == 0 && 
918       &*--I.getParent()->getParent()->end() == I.getParent() &&
919       !I.getParent()->size() == 1) {
920     return;
921   }
922
923   Out << "  return";
924   if (I.getNumOperands()) {
925     Out << " ";
926     writeOperand(I.getOperand(0));
927   }
928   Out << ";\n";
929 }
930
931 void CWriter::visitSwitchInst(SwitchInst &SI) {
932   Out << "  switch (";
933   writeOperand(SI.getOperand(0));
934   Out << ") {\n  default:\n";
935   printBranchToBlock(SI.getParent(), SI.getDefaultDest(), 2);
936   Out << ";\n";
937   for (unsigned i = 2, e = SI.getNumOperands(); i != e; i += 2) {
938     Out << "  case ";
939     writeOperand(SI.getOperand(i));
940     Out << ":\n";
941     BasicBlock *Succ = cast<BasicBlock>(SI.getOperand(i+1));
942     printBranchToBlock(SI.getParent(), Succ, 2);
943     if (Succ == SI.getParent()->getNext())
944       Out << "    break;\n";
945   }
946   Out << "  }\n";
947 }
948
949 void CWriter::visitInvokeInst(InvokeInst &II) {
950   Out << "  {\n"
951       << "    struct __llvm_jmpbuf_list_t Entry;\n"
952       << "    Entry.next = __llvm_jmpbuf_list;\n"
953       << "    if (setjmp(Entry.buf)) {\n"
954       << "      __llvm_jmpbuf_list = Entry.next;\n";
955   printBranchToBlock(II.getParent(), II.getExceptionalDest(), 4);
956   Out << "    }\n"
957       << "    __llvm_jmpbuf_list = &Entry;\n"
958       << "    ";
959   visitCallSite(&II);
960   Out << ";\n"
961       << "    __llvm_jmpbuf_list = Entry.next;\n"
962       << "  }\n";
963   printBranchToBlock(II.getParent(), II.getNormalDest(), 0);
964   emittedInvoke = true;
965 }
966
967
968 static bool isGotoCodeNeccessary(BasicBlock *From, BasicBlock *To) {
969   // If PHI nodes need copies, we need the copy code...
970   if (isa<PHINode>(To->front()) ||
971       From->getNext() != To)      // Not directly successor, need goto
972     return true;
973
974   // Otherwise we don't need the code.
975   return false;
976 }
977
978 void CWriter::printBranchToBlock(BasicBlock *CurBB, BasicBlock *Succ,
979                                  unsigned Indent) {
980   for (BasicBlock::iterator I = Succ->begin();
981        PHINode *PN = dyn_cast<PHINode>(I); ++I) {
982     //  now we have to do the printing
983     Out << std::string(Indent, ' ');
984     Out << "  " << Mang->getValueName(I) << "__PHI_TEMPORARY = ";
985     writeOperand(PN->getIncomingValue(PN->getBasicBlockIndex(CurBB)));
986     Out << ";   /* for PHI node */\n";
987   }
988
989   if (CurBB->getNext() != Succ) {
990     Out << std::string(Indent, ' ') << "  goto ";
991     writeOperand(Succ);
992     Out << ";\n";
993   }
994 }
995
996 // Brach instruction printing - Avoid printing out a brach to a basic block that
997 // immediately succeeds the current one.
998 //
999 void CWriter::visitBranchInst(BranchInst &I) {
1000   if (I.isConditional()) {
1001     if (isGotoCodeNeccessary(I.getParent(), I.getSuccessor(0))) {
1002       Out << "  if (";
1003       writeOperand(I.getCondition());
1004       Out << ") {\n";
1005       
1006       printBranchToBlock(I.getParent(), I.getSuccessor(0), 2);
1007       
1008       if (isGotoCodeNeccessary(I.getParent(), I.getSuccessor(1))) {
1009         Out << "  } else {\n";
1010         printBranchToBlock(I.getParent(), I.getSuccessor(1), 2);
1011       }
1012     } else {
1013       // First goto not neccesary, assume second one is...
1014       Out << "  if (!";
1015       writeOperand(I.getCondition());
1016       Out << ") {\n";
1017
1018       printBranchToBlock(I.getParent(), I.getSuccessor(1), 2);
1019     }
1020
1021     Out << "  }\n";
1022   } else {
1023     printBranchToBlock(I.getParent(), I.getSuccessor(0), 0);
1024   }
1025   Out << "\n";
1026 }
1027
1028 // PHI nodes get copied into temporary values at the end of predecessor basic
1029 // blocks.  We now need to copy these temporary values into the REAL value for
1030 // the PHI.
1031 void CWriter::visitPHINode(PHINode &I) {
1032   writeOperand(&I);
1033   Out << "__PHI_TEMPORARY";
1034 }
1035
1036
1037 void CWriter::visitBinaryOperator(Instruction &I) {
1038   // binary instructions, shift instructions, setCond instructions.
1039   assert(!isa<PointerType>(I.getType()));
1040
1041   // We must cast the results of binary operations which might be promoted.
1042   bool needsCast = false;
1043   if ((I.getType() == Type::UByteTy) || (I.getType() == Type::SByteTy)
1044       || (I.getType() == Type::UShortTy) || (I.getType() == Type::ShortTy)
1045       || (I.getType() == Type::FloatTy)) {
1046     needsCast = true;
1047     Out << "((";
1048     printType(Out, I.getType(), "", false, false);
1049     Out << ")(";
1050   }
1051       
1052   writeOperand(I.getOperand(0));
1053
1054   switch (I.getOpcode()) {
1055   case Instruction::Add: Out << " + "; break;
1056   case Instruction::Sub: Out << " - "; break;
1057   case Instruction::Mul: Out << "*"; break;
1058   case Instruction::Div: Out << "/"; break;
1059   case Instruction::Rem: Out << "%"; break;
1060   case Instruction::And: Out << " & "; break;
1061   case Instruction::Or: Out << " | "; break;
1062   case Instruction::Xor: Out << " ^ "; break;
1063   case Instruction::SetEQ: Out << " == "; break;
1064   case Instruction::SetNE: Out << " != "; break;
1065   case Instruction::SetLE: Out << " <= "; break;
1066   case Instruction::SetGE: Out << " >= "; break;
1067   case Instruction::SetLT: Out << " < "; break;
1068   case Instruction::SetGT: Out << " > "; break;
1069   case Instruction::Shl : Out << " << "; break;
1070   case Instruction::Shr : Out << " >> "; break;
1071   default: std::cerr << "Invalid operator type!" << I; abort();
1072   }
1073
1074   writeOperand(I.getOperand(1));
1075
1076   if (needsCast) {
1077     Out << "))";
1078   }
1079 }
1080
1081 void CWriter::visitCastInst(CastInst &I) {
1082   if (I.getType() == Type::BoolTy) {
1083     Out << "(";
1084     writeOperand(I.getOperand(0));
1085     Out << " != 0)";
1086     return;
1087   }
1088   Out << "(";
1089   printType(Out, I.getType(), "", /*ignoreName*/false, /*namedContext*/false);
1090   Out << ")";
1091   if (isa<PointerType>(I.getType())&&I.getOperand(0)->getType()->isIntegral() ||
1092       isa<PointerType>(I.getOperand(0)->getType())&&I.getType()->isIntegral()) {
1093     // Avoid "cast to pointer from integer of different size" warnings
1094     Out << "(long)";  
1095   }
1096   
1097   writeOperand(I.getOperand(0));
1098 }
1099
1100 void CWriter::visitCallInst(CallInst &I) {
1101   // Handle intrinsic function calls first...
1102   if (Function *F = I.getCalledFunction())
1103     if (LLVMIntrinsic::ID ID = (LLVMIntrinsic::ID)F->getIntrinsicID()) {
1104       switch (ID) {
1105       default:  assert(0 && "Unknown LLVM intrinsic!");
1106       case LLVMIntrinsic::va_start: 
1107         Out << "va_start((va_list)*";
1108         writeOperand(I.getOperand(1));
1109         Out << ", ";
1110         // Output the last argument to the enclosing function...
1111         writeOperand(&I.getParent()->getParent()->aback());
1112         Out << ")";
1113         return;
1114       case LLVMIntrinsic::va_end:
1115         Out << "va_end((va_list)*";
1116         writeOperand(I.getOperand(1));
1117         Out << ")";
1118         return;
1119       case LLVMIntrinsic::va_copy:
1120         Out << "va_copy((va_list)*";
1121         writeOperand(I.getOperand(1));
1122         Out << ", (va_list)";
1123         writeOperand(I.getOperand(2));
1124         Out << ")";
1125         return;
1126         
1127       case LLVMIntrinsic::setjmp:
1128 #ifdef HAVE_JUMP
1129         Out << "setjmp(*(jmp_buf*)";
1130         writeOperand(I.getOperand(1));
1131         Out << ")";
1132 #else
1133         //
1134         // For right now, we don't really support non-local jumps.  So
1135         // make setjmp() always evaluate to zero for now.
1136         //
1137         Out << "(0)";
1138 #endif
1139         return;
1140       case LLVMIntrinsic::longjmp:
1141 #ifdef HAVE_JUMP
1142         Out << "longjmp(*(jmp_buf*)";
1143         writeOperand(I.getOperand(1));
1144         Out << ", ";
1145         writeOperand(I.getOperand(2));
1146         Out << ")";
1147 #else
1148         //
1149         // For right now, we don't really support non-local jumps.  So
1150         // make longjmp() abort the program.
1151         //
1152         Out << "abort()";
1153 #endif
1154         return;
1155       }
1156     }
1157   visitCallSite(&I);
1158 }
1159
1160 void CWriter::visitCallSite(CallSite CS) {
1161   const PointerType  *PTy   = cast<PointerType>(CS.getCalledValue()->getType());
1162   const FunctionType *FTy   = cast<FunctionType>(PTy->getElementType());
1163   const Type         *RetTy = FTy->getReturnType();
1164   
1165   writeOperand(CS.getCalledValue());
1166   Out << "(";
1167
1168   if (CS.arg_begin() != CS.arg_end()) {
1169     CallSite::arg_iterator AI = CS.arg_begin(), AE = CS.arg_end();
1170     writeOperand(*AI);
1171
1172     for (++AI; AI != AE; ++AI) {
1173       Out << ", ";
1174       writeOperand(*AI);
1175     }
1176   }
1177   Out << ")";
1178 }  
1179
1180 void CWriter::visitMallocInst(MallocInst &I) {
1181   Out << "(";
1182   printType(Out, I.getType());
1183   Out << ")malloc(sizeof(";
1184   printType(Out, I.getType()->getElementType());
1185   Out << ")";
1186
1187   if (I.isArrayAllocation()) {
1188     Out << " * " ;
1189     writeOperand(I.getOperand(0));
1190   }
1191   Out << ")";
1192 }
1193
1194 void CWriter::visitAllocaInst(AllocaInst &I) {
1195   Out << "(";
1196   printType(Out, I.getType());
1197   Out << ") alloca(sizeof(";
1198   printType(Out, I.getType()->getElementType());
1199   Out << ")";
1200   if (I.isArrayAllocation()) {
1201     Out << " * " ;
1202     writeOperand(I.getOperand(0));
1203   }
1204   Out << ")";
1205 }
1206
1207 void CWriter::visitFreeInst(FreeInst &I) {
1208   Out << "free(";
1209   writeOperand(I.getOperand(0));
1210   Out << ")";
1211 }
1212
1213 void CWriter::printIndexingExpression(Value *Ptr, User::op_iterator I,
1214                                       User::op_iterator E) {
1215   bool HasImplicitAddress = false;
1216   // If accessing a global value with no indexing, avoid *(&GV) syndrome
1217   if (GlobalValue *V = dyn_cast<GlobalValue>(Ptr)) {
1218     HasImplicitAddress = true;
1219   } else if (ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(Ptr)) {
1220     HasImplicitAddress = true;
1221     Ptr = CPR->getValue();         // Get to the global...
1222   } else if (isDirectAlloca(Ptr)) {
1223     HasImplicitAddress = true;
1224   }
1225
1226   if (I == E) {
1227     if (!HasImplicitAddress)
1228       Out << "*";  // Implicit zero first argument: '*x' is equivalent to 'x[0]'
1229
1230     writeOperandInternal(Ptr);
1231     return;
1232   }
1233
1234   const Constant *CI = dyn_cast<Constant>(I);
1235   if (HasImplicitAddress && (!CI || !CI->isNullValue()))
1236     Out << "(&";
1237
1238   writeOperandInternal(Ptr);
1239
1240   if (HasImplicitAddress && (!CI || !CI->isNullValue())) {
1241     Out << ")";
1242     HasImplicitAddress = false;  // HIA is only true if we haven't addressed yet
1243   }
1244
1245   assert(!HasImplicitAddress || (CI && CI->isNullValue()) &&
1246          "Can only have implicit address with direct accessing");
1247
1248   if (HasImplicitAddress) {
1249     ++I;
1250   } else if (CI && CI->isNullValue() && I+1 != E) {
1251     // Print out the -> operator if possible...
1252     if ((*(I+1))->getType() == Type::UByteTy) {
1253       Out << (HasImplicitAddress ? "." : "->");
1254       Out << "field" << cast<ConstantUInt>(*(I+1))->getValue();
1255       I += 2;
1256     } 
1257   }
1258
1259   for (; I != E; ++I)
1260     if ((*I)->getType() == Type::LongTy) {
1261       Out << "[";
1262       writeOperand(*I);
1263       Out << "]";
1264     } else {
1265       Out << ".field" << cast<ConstantUInt>(*I)->getValue();
1266     }
1267 }
1268
1269 void CWriter::visitLoadInst(LoadInst &I) {
1270   Out << "*";
1271   writeOperand(I.getOperand(0));
1272 }
1273
1274 void CWriter::visitStoreInst(StoreInst &I) {
1275   Out << "*";
1276   writeOperand(I.getPointerOperand());
1277   Out << " = ";
1278   writeOperand(I.getOperand(0));
1279 }
1280
1281 void CWriter::visitGetElementPtrInst(GetElementPtrInst &I) {
1282   Out << "&";
1283   printIndexingExpression(I.getPointerOperand(), I.idx_begin(), I.idx_end());
1284 }
1285
1286 void CWriter::visitVarArgInst(VarArgInst &I) {
1287   Out << "va_arg((va_list)*";
1288   writeOperand(I.getOperand(0));
1289   Out << ", ";
1290   printType(Out, I.getType(), "", /*ignoreName*/false, /*namedContext*/false);
1291   Out << ")";  
1292 }
1293
1294
1295 //===----------------------------------------------------------------------===//
1296 //                       External Interface declaration
1297 //===----------------------------------------------------------------------===//
1298
1299 Pass *createWriteToCPass(std::ostream &o) { return new CWriter(o); }