d24557abe05ccabe73cbaf77e354415fcb6abde9
[oota-llvm.git] / lib / ExecutionEngine / Interpreter / ExternalFunctions.cpp
1 //===-- ExternalFunctions.cpp - Implement External Functions --------------===//
2 // 
3 //  This file contains both code to deal with invoking "external" functions, but
4 //  also contains code that implements "exported" external functions.
5 //
6 //  External functions in LLI are implemented by dlopen'ing the lli executable
7 //  and using dlsym to look op the functions that we want to invoke.  If a
8 //  function is found, then the arguments are mangled and passed in to the
9 //  function call.
10 //
11 //===----------------------------------------------------------------------===//
12
13 #include "Interpreter.h"
14 #include "ExecutionAnnotations.h"
15 #include "llvm/Module.h"
16 #include "llvm/DerivedTypes.h"
17 #include "llvm/SymbolTable.h"
18 #include "llvm/Target/TargetData.h"
19 #include <map>
20 #include "Config/dlfcn.h"
21 #include "Config/link.h"
22 #include <cmath>
23 #include "Config/stdio.h"
24 using std::vector;
25
26 typedef GenericValue (*ExFunc)(FunctionType *, const vector<GenericValue> &);
27 static std::map<const Function *, ExFunc> Functions;
28 static std::map<std::string, ExFunc> FuncNames;
29
30 static Interpreter *TheInterpreter;
31
32 // getCurrentExecutablePath() - Return the directory that the lli executable
33 // lives in.
34 //
35 std::string Interpreter::getCurrentExecutablePath() const {
36   Dl_info Info;
37   if (dladdr(&TheInterpreter, &Info) == 0) return "";
38   
39   std::string LinkAddr(Info.dli_fname);
40   unsigned SlashPos = LinkAddr.rfind('/');
41   if (SlashPos != std::string::npos)
42     LinkAddr.resize(SlashPos);    // Trim the executable name off...
43
44   return LinkAddr;
45 }
46
47
48 static char getTypeID(const Type *Ty) {
49   switch (Ty->getPrimitiveID()) {
50   case Type::VoidTyID:    return 'V';
51   case Type::BoolTyID:    return 'o';
52   case Type::UByteTyID:   return 'B';
53   case Type::SByteTyID:   return 'b';
54   case Type::UShortTyID:  return 'S';
55   case Type::ShortTyID:   return 's';
56   case Type::UIntTyID:    return 'I';
57   case Type::IntTyID:     return 'i';
58   case Type::ULongTyID:   return 'L';
59   case Type::LongTyID:    return 'l';
60   case Type::FloatTyID:   return 'F';
61   case Type::DoubleTyID:  return 'D';
62   case Type::PointerTyID: return 'P';
63   case Type::FunctionTyID:  return 'M';
64   case Type::StructTyID:  return 'T';
65   case Type::ArrayTyID:   return 'A';
66   case Type::OpaqueTyID:  return 'O';
67   default: return 'U';
68   }
69 }
70
71 static ExFunc lookupFunction(const Function *M) {
72   // Function not found, look it up... start by figuring out what the
73   // composite function name should be.
74   std::string ExtName = "lle_";
75   const FunctionType *MT = M->getFunctionType();
76   for (unsigned i = 0; const Type *Ty = MT->getContainedType(i); ++i)
77     ExtName += getTypeID(Ty);
78   ExtName += "_" + M->getName();
79
80   //std::cout << "Tried: '" << ExtName << "'\n";
81   ExFunc FnPtr = FuncNames[ExtName];
82   if (FnPtr == 0)
83     FnPtr = (ExFunc)dlsym(RTLD_DEFAULT, ExtName.c_str());
84   if (FnPtr == 0)
85     FnPtr = FuncNames["lle_X_"+M->getName()];
86   if (FnPtr == 0)  // Try calling a generic function... if it exists...
87     FnPtr = (ExFunc)dlsym(RTLD_DEFAULT, ("lle_X_"+M->getName()).c_str());
88   if (FnPtr != 0)
89     Functions.insert(std::make_pair(M, FnPtr));  // Cache for later
90   return FnPtr;
91 }
92
93 GenericValue Interpreter::callExternalFunction(Function *M,
94                                      const std::vector<GenericValue> &ArgVals) {
95   TheInterpreter = this;
96
97   // Do a lookup to see if the function is in our cache... this should just be a
98   // defered annotation!
99   std::map<const Function *, ExFunc>::iterator FI = Functions.find(M);
100   ExFunc Fn = (FI == Functions.end()) ? lookupFunction(M) : FI->second;
101   if (Fn == 0) {
102     std::cout << "Tried to execute an unknown external function: "
103               << M->getType()->getDescription() << " " << M->getName() << "\n";
104     return GenericValue();
105   }
106
107   // TODO: FIXME when types are not const!
108   GenericValue Result = Fn(const_cast<FunctionType*>(M->getFunctionType()),
109                            ArgVals);
110   return Result;
111 }
112
113
114 //===----------------------------------------------------------------------===//
115 //  Functions "exported" to the running application...
116 //
117 extern "C" {  // Don't add C++ manglings to llvm mangling :)
118
119 // void putchar(sbyte)
120 GenericValue lle_Vb_putchar(FunctionType *M, const vector<GenericValue> &Args) {
121   std::cout << Args[0].SByteVal;
122   return GenericValue();
123 }
124
125 // int putchar(int)
126 GenericValue lle_ii_putchar(FunctionType *M, const vector<GenericValue> &Args) {
127   std::cout << ((char)Args[0].IntVal) << std::flush;
128   return Args[0];
129 }
130
131 // void putchar(ubyte)
132 GenericValue lle_VB_putchar(FunctionType *M, const vector<GenericValue> &Args) {
133   std::cout << Args[0].SByteVal << std::flush;
134   return Args[0];
135 }
136
137 // void atexit(Function*)
138 GenericValue lle_X_atexit(FunctionType *M, const vector<GenericValue> &Args) {
139   assert(Args.size() == 1);
140   TheInterpreter->addAtExitHandler((Function*)GVTOP(Args[0]));
141   GenericValue GV;
142   GV.IntVal = 0;
143   return GV;
144 }
145
146 // void exit(int)
147 GenericValue lle_X_exit(FunctionType *M, const vector<GenericValue> &Args) {
148   TheInterpreter->exitCalled(Args[0]);
149   return GenericValue();
150 }
151
152 // void abort(void)
153 GenericValue lle_X_abort(FunctionType *M, const vector<GenericValue> &Args) {
154   std::cerr << "***PROGRAM ABORTED***!\n";
155   GenericValue GV;
156   GV.IntVal = 1;
157   TheInterpreter->exitCalled(GV);
158   return GenericValue();
159 }
160
161 // void *malloc(uint)
162 GenericValue lle_X_malloc(FunctionType *M, const vector<GenericValue> &Args) {
163   assert(Args.size() == 1 && "Malloc expects one argument!");
164   return PTOGV(malloc(Args[0].UIntVal));
165 }
166
167 // void *calloc(uint, uint)
168 GenericValue lle_X_calloc(FunctionType *M, const vector<GenericValue> &Args) {
169   assert(Args.size() == 2 && "calloc expects two arguments!");
170   return PTOGV(calloc(Args[0].UIntVal, Args[1].UIntVal));
171 }
172
173 // void free(void *)
174 GenericValue lle_X_free(FunctionType *M, const vector<GenericValue> &Args) {
175   assert(Args.size() == 1);
176   free(GVTOP(Args[0]));
177   return GenericValue();
178 }
179
180 // int atoi(char *)
181 GenericValue lle_X_atoi(FunctionType *M, const vector<GenericValue> &Args) {
182   assert(Args.size() == 1);
183   GenericValue GV;
184   GV.IntVal = atoi((char*)GVTOP(Args[0]));
185   return GV;
186 }
187
188 // double pow(double, double)
189 GenericValue lle_X_pow(FunctionType *M, const vector<GenericValue> &Args) {
190   assert(Args.size() == 2);
191   GenericValue GV;
192   GV.DoubleVal = pow(Args[0].DoubleVal, Args[1].DoubleVal);
193   return GV;
194 }
195
196 // double exp(double)
197 GenericValue lle_X_exp(FunctionType *M, const vector<GenericValue> &Args) {
198   assert(Args.size() == 1);
199   GenericValue GV;
200   GV.DoubleVal = exp(Args[0].DoubleVal);
201   return GV;
202 }
203
204 // double sqrt(double)
205 GenericValue lle_X_sqrt(FunctionType *M, const vector<GenericValue> &Args) {
206   assert(Args.size() == 1);
207   GenericValue GV;
208   GV.DoubleVal = sqrt(Args[0].DoubleVal);
209   return GV;
210 }
211
212 // double log(double)
213 GenericValue lle_X_log(FunctionType *M, const vector<GenericValue> &Args) {
214   assert(Args.size() == 1);
215   GenericValue GV;
216   GV.DoubleVal = log(Args[0].DoubleVal);
217   return GV;
218 }
219
220 // double floor(double)
221 GenericValue lle_X_floor(FunctionType *M, const vector<GenericValue> &Args) {
222   assert(Args.size() == 1);
223   GenericValue GV;
224   GV.DoubleVal = floor(Args[0].DoubleVal);
225   return GV;
226 }
227
228 // double drand48()
229 GenericValue lle_X_drand48(FunctionType *M, const vector<GenericValue> &Args) {
230   assert(Args.size() == 0);
231   GenericValue GV;
232   GV.DoubleVal = drand48();
233   return GV;
234 }
235
236 // long lrand48()
237 GenericValue lle_X_lrand48(FunctionType *M, const vector<GenericValue> &Args) {
238   assert(Args.size() == 0);
239   GenericValue GV;
240   GV.IntVal = lrand48();
241   return GV;
242 }
243
244 // void srand48(long)
245 GenericValue lle_X_srand48(FunctionType *M, const vector<GenericValue> &Args) {
246   assert(Args.size() == 1);
247   srand48(Args[0].IntVal);
248   return GenericValue();
249 }
250
251 // void srand(uint)
252 GenericValue lle_X_srand(FunctionType *M, const vector<GenericValue> &Args) {
253   assert(Args.size() == 1);
254   srand(Args[0].UIntVal);
255   return GenericValue();
256 }
257
258 // int puts(const char*)
259 GenericValue lle_X_puts(FunctionType *M, const vector<GenericValue> &Args) {
260   assert(Args.size() == 1);
261   GenericValue GV;
262   GV.IntVal = puts((char*)GVTOP(Args[0]));
263   return GV;
264 }
265
266 // int sprintf(sbyte *, sbyte *, ...) - a very rough implementation to make
267 // output useful.
268 GenericValue lle_X_sprintf(FunctionType *M, const vector<GenericValue> &Args) {
269   char *OutputBuffer = (char *)GVTOP(Args[0]);
270   const char *FmtStr = (const char *)GVTOP(Args[1]);
271   unsigned ArgNo = 2;
272
273   // printf should return # chars printed.  This is completely incorrect, but
274   // close enough for now.
275   GenericValue GV; GV.IntVal = strlen(FmtStr);
276   while (1) {
277     switch (*FmtStr) {
278     case 0: return GV;             // Null terminator...
279     default:                       // Normal nonspecial character
280       sprintf(OutputBuffer++, "%c", *FmtStr++);
281       break;
282     case '\\': {                   // Handle escape codes
283       sprintf(OutputBuffer, "%c%c", *FmtStr, *(FmtStr+1));
284       FmtStr += 2; OutputBuffer += 2;
285       break;
286     }
287     case '%': {                    // Handle format specifiers
288       char FmtBuf[100] = "", Buffer[1000] = "";
289       char *FB = FmtBuf;
290       *FB++ = *FmtStr++;
291       char Last = *FB++ = *FmtStr++;
292       unsigned HowLong = 0;
293       while (Last != 'c' && Last != 'd' && Last != 'i' && Last != 'u' &&
294              Last != 'o' && Last != 'x' && Last != 'X' && Last != 'e' &&
295              Last != 'E' && Last != 'g' && Last != 'G' && Last != 'f' &&
296              Last != 'p' && Last != 's' && Last != '%') {
297         if (Last == 'l' || Last == 'L') HowLong++;  // Keep track of l's
298         Last = *FB++ = *FmtStr++;
299       }
300       *FB = 0;
301       
302       switch (Last) {
303       case '%':
304         sprintf(Buffer, FmtBuf); break;
305       case 'c':
306         sprintf(Buffer, FmtBuf, Args[ArgNo++].IntVal); break;
307       case 'd': case 'i':
308       case 'u': case 'o':
309       case 'x': case 'X':
310         if (HowLong >= 1) {
311           if (HowLong == 1 &&
312               TheInterpreter->getModule().getPointerSize()==Module::Pointer64 &&
313               sizeof(long) < sizeof(long long)) {
314             // Make sure we use %lld with a 64 bit argument because we might be
315             // compiling LLI on a 32 bit compiler.
316             unsigned Size = strlen(FmtBuf);
317             FmtBuf[Size] = FmtBuf[Size-1];
318             FmtBuf[Size+1] = 0;
319             FmtBuf[Size-1] = 'l';
320           }
321           sprintf(Buffer, FmtBuf, Args[ArgNo++].ULongVal);
322         } else
323           sprintf(Buffer, FmtBuf, Args[ArgNo++].IntVal); break;
324       case 'e': case 'E': case 'g': case 'G': case 'f':
325         sprintf(Buffer, FmtBuf, Args[ArgNo++].DoubleVal); break;
326       case 'p':
327         sprintf(Buffer, FmtBuf, (void*)GVTOP(Args[ArgNo++])); break;
328       case 's': 
329         sprintf(Buffer, FmtBuf, (char*)GVTOP(Args[ArgNo++])); break;
330       default:  std::cout << "<unknown printf code '" << *FmtStr << "'!>";
331         ArgNo++; break;
332       }
333       strcpy(OutputBuffer, Buffer);
334       OutputBuffer += strlen(Buffer);
335       }
336       break;
337     }
338   }
339 }
340
341 // int printf(sbyte *, ...) - a very rough implementation to make output useful.
342 GenericValue lle_X_printf(FunctionType *M, const vector<GenericValue> &Args) {
343   char Buffer[10000];
344   vector<GenericValue> NewArgs;
345   NewArgs.push_back(PTOGV(Buffer));
346   NewArgs.insert(NewArgs.end(), Args.begin(), Args.end());
347   GenericValue GV = lle_X_sprintf(M, NewArgs);
348   std::cout << Buffer;
349   return GV;
350 }
351
352 static void ByteswapSCANFResults(const char *Fmt, void *Arg0, void *Arg1,
353                                  void *Arg2, void *Arg3, void *Arg4, void *Arg5,
354                                  void *Arg6, void *Arg7, void *Arg8) {
355   void *Args[] = { Arg0, Arg1, Arg2, Arg3, Arg4, Arg5, Arg6, Arg7, Arg8, 0 };
356
357   // Loop over the format string, munging read values as appropriate (performs
358   // byteswaps as necessary).
359   unsigned ArgNo = 0;
360   while (*Fmt) {
361     if (*Fmt++ == '%') {
362       // Read any flag characters that may be present...
363       bool Suppress = false;
364       bool Half = false;
365       bool Long = false;
366       bool LongLong = false;  // long long or long double
367
368       while (1) {
369         switch (*Fmt++) {
370         case '*': Suppress = true; break;
371         case 'a': /*Allocate = true;*/ break;  // We don't need to track this
372         case 'h': Half = true; break;
373         case 'l': Long = true; break;
374         case 'q':
375         case 'L': LongLong = true; break;
376         default:
377           if (Fmt[-1] > '9' || Fmt[-1] < '0')   // Ignore field width specs
378             goto Out;
379         }
380       }
381     Out:
382
383       // Read the conversion character
384       if (!Suppress && Fmt[-1] != '%') { // Nothing to do?
385         unsigned Size = 0;
386         const Type *Ty = 0;
387
388         switch (Fmt[-1]) {
389         case 'i': case 'o': case 'u': case 'x': case 'X': case 'n': case 'p':
390         case 'd':
391           if (Long || LongLong) {
392             Size = 8; Ty = Type::ULongTy;
393           } else if (Half) {
394             Size = 4; Ty = Type::UShortTy;
395           } else {
396             Size = 4; Ty = Type::UIntTy;
397           }
398           break;
399
400         case 'e': case 'g': case 'E':
401         case 'f':
402           if (Long || LongLong) {
403             Size = 8; Ty = Type::DoubleTy;
404           } else {
405             Size = 4; Ty = Type::FloatTy;
406           }
407           break;
408
409         case 's': case 'c': case '[':  // No byteswap needed
410           Size = 1;
411           Ty = Type::SByteTy;
412           break;
413
414         default: break;
415         }
416
417         if (Size) {
418           GenericValue GV;
419           void *Arg = Args[ArgNo++];
420           memcpy(&GV, Arg, Size);
421           TheInterpreter->StoreValueToMemory(GV, (GenericValue*)Arg, Ty);
422         }
423       }
424     }
425   }
426 }
427
428 // int sscanf(const char *format, ...);
429 GenericValue lle_X_sscanf(FunctionType *M, const vector<GenericValue> &args) {
430   assert(args.size() < 10 && "Only handle up to 10 args to sscanf right now!");
431
432   char *Args[10];
433   for (unsigned i = 0; i < args.size(); ++i)
434     Args[i] = (char*)GVTOP(args[i]);
435
436   GenericValue GV;
437   GV.IntVal = sscanf(Args[0], Args[1], Args[2], Args[3], Args[4],
438                      Args[5], Args[6], Args[7], Args[8], Args[9]);
439   ByteswapSCANFResults(Args[1], Args[2], Args[3], Args[4],
440                        Args[5], Args[6], Args[7], Args[8], Args[9], 0);
441   return GV;
442 }
443
444 // int scanf(const char *format, ...);
445 GenericValue lle_X_scanf(FunctionType *M, const vector<GenericValue> &args) {
446   assert(args.size() < 10 && "Only handle up to 10 args to scanf right now!");
447
448   char *Args[10];
449   for (unsigned i = 0; i < args.size(); ++i)
450     Args[i] = (char*)GVTOP(args[i]);
451
452   GenericValue GV;
453   GV.IntVal = scanf(Args[0], Args[1], Args[2], Args[3], Args[4],
454                     Args[5], Args[6], Args[7], Args[8], Args[9]);
455   ByteswapSCANFResults(Args[0], Args[1], Args[2], Args[3], Args[4],
456                        Args[5], Args[6], Args[7], Args[8], Args[9]);
457   return GV;
458 }
459
460
461 // int clock(void) - Profiling implementation
462 GenericValue lle_i_clock(FunctionType *M, const vector<GenericValue> &Args) {
463   extern int clock(void);
464   GenericValue GV; GV.IntVal = clock();
465   return GV;
466 }
467
468
469 //===----------------------------------------------------------------------===//
470 // String Functions...
471 //===----------------------------------------------------------------------===//
472
473 // int strcmp(const char *S1, const char *S2);
474 GenericValue lle_X_strcmp(FunctionType *M, const vector<GenericValue> &Args) {
475   assert(Args.size() == 2);
476   GenericValue Ret;
477   Ret.IntVal = strcmp((char*)GVTOP(Args[0]), (char*)GVTOP(Args[1]));
478   return Ret;
479 }
480
481 // char *strcat(char *Dest, const char *src);
482 GenericValue lle_X_strcat(FunctionType *M, const vector<GenericValue> &Args) {
483   assert(Args.size() == 2);
484   return PTOGV(strcat((char*)GVTOP(Args[0]), (char*)GVTOP(Args[1])));
485 }
486
487 // char *strcpy(char *Dest, const char *src);
488 GenericValue lle_X_strcpy(FunctionType *M, const vector<GenericValue> &Args) {
489   assert(Args.size() == 2);
490   return PTOGV(strcpy((char*)GVTOP(Args[0]), (char*)GVTOP(Args[1])));
491 }
492
493 // long strlen(const char *src);
494 GenericValue lle_X_strlen(FunctionType *M, const vector<GenericValue> &Args) {
495   assert(Args.size() == 1);
496   GenericValue Ret;
497   Ret.LongVal = strlen((char*)GVTOP(Args[0]));
498   return Ret;
499 }
500
501 // char *__strdup(const char *src);
502 GenericValue lle_X___strdup(FunctionType *M, const vector<GenericValue> &Args) {
503   assert(Args.size() == 1);
504   return PTOGV(strdup((char*)GVTOP(Args[0])));
505 }
506
507 // void *memset(void *S, int C, size_t N)
508 GenericValue lle_X_memset(FunctionType *M, const vector<GenericValue> &Args) {
509   assert(Args.size() == 3);
510   return PTOGV(memset(GVTOP(Args[0]), Args[1].IntVal, Args[2].UIntVal));
511 }
512
513 // void *memcpy(void *Dest, void *src, size_t Size);
514 GenericValue lle_X_memcpy(FunctionType *M, const vector<GenericValue> &Args) {
515   assert(Args.size() == 3);
516   return PTOGV(memcpy((char*)GVTOP(Args[0]), (char*)GVTOP(Args[1]),
517                       Args[2].UIntVal));
518 }
519
520 //===----------------------------------------------------------------------===//
521 // IO Functions...
522 //===----------------------------------------------------------------------===//
523
524 // getFILE - Turn a pointer in the host address space into a legit pointer in
525 // the interpreter address space.  For the most part, this is an identity
526 // transformation, but if the program refers to stdio, stderr, stdin then they
527 // have pointers that are relative to the __iob array.  If this is the case,
528 // change the FILE into the REAL stdio stream.
529 // 
530 static FILE *getFILE(void *Ptr) {
531   static Module *LastMod = 0;
532   static PointerTy IOBBase = 0;
533   static unsigned FILESize;
534
535   if (LastMod != &TheInterpreter->getModule()) { // Module change or initialize?
536     Module *M = LastMod = &TheInterpreter->getModule();
537
538     // Check to see if the currently loaded module contains an __iob symbol...
539     GlobalVariable *IOB = 0;
540     SymbolTable &ST = M->getSymbolTable();
541     for (SymbolTable::iterator I = ST.begin(), E = ST.end(); I != E; ++I) {
542       SymbolTable::VarMap &M = I->second;
543       for (SymbolTable::VarMap::iterator J = M.begin(), E = M.end();
544            J != E; ++J)
545         if (J->first == "__iob")
546           if ((IOB = dyn_cast<GlobalVariable>(J->second)))
547             break;
548       if (IOB) break;
549     }
550
551 #if 0   /// FIXME!  __iob support for LLI
552     // If we found an __iob symbol now, find out what the actual address it's
553     // held in is...
554     if (IOB) {
555       // Get the address the array lives in...
556       GlobalAddress *Address = 
557         (GlobalAddress*)IOB->getOrCreateAnnotation(GlobalAddressAID);
558       IOBBase = (PointerTy)(GenericValue*)Address->Ptr;
559
560       // Figure out how big each element of the array is...
561       const ArrayType *AT =
562         dyn_cast<ArrayType>(IOB->getType()->getElementType());
563       if (AT)
564         FILESize = TD.getTypeSize(AT->getElementType());
565       else
566         FILESize = 16*8;  // Default size
567     }
568 #endif
569   }
570
571   // Check to see if this is a reference to __iob...
572   if (IOBBase) {
573     unsigned FDNum = ((unsigned long)Ptr-IOBBase)/FILESize;
574     if (FDNum == 0)
575       return stdin;
576     else if (FDNum == 1)
577       return stdout;
578     else if (FDNum == 2)
579       return stderr;
580   }
581
582   return (FILE*)Ptr;
583 }
584
585
586 // FILE *fopen(const char *filename, const char *mode);
587 GenericValue lle_X_fopen(FunctionType *M, const vector<GenericValue> &Args) {
588   assert(Args.size() == 2);
589   return PTOGV(fopen((const char *)GVTOP(Args[0]),
590                      (const char *)GVTOP(Args[1])));
591 }
592
593 // int fclose(FILE *F);
594 GenericValue lle_X_fclose(FunctionType *M, const vector<GenericValue> &Args) {
595   assert(Args.size() == 1);
596   GenericValue GV;
597   GV.IntVal = fclose(getFILE(GVTOP(Args[0])));
598   return GV;
599 }
600
601 // int feof(FILE *stream);
602 GenericValue lle_X_feof(FunctionType *M, const vector<GenericValue> &Args) {
603   assert(Args.size() == 1);
604   GenericValue GV;
605
606   GV.IntVal = feof(getFILE(GVTOP(Args[0])));
607   return GV;
608 }
609
610 // size_t fread(void *ptr, size_t size, size_t nitems, FILE *stream);
611 GenericValue lle_X_fread(FunctionType *M, const vector<GenericValue> &Args) {
612   assert(Args.size() == 4);
613   GenericValue GV;
614
615   GV.UIntVal = fread((void*)GVTOP(Args[0]), Args[1].UIntVal,
616                      Args[2].UIntVal, getFILE(GVTOP(Args[3])));
617   return GV;
618 }
619
620 // size_t fwrite(const void *ptr, size_t size, size_t nitems, FILE *stream);
621 GenericValue lle_X_fwrite(FunctionType *M, const vector<GenericValue> &Args) {
622   assert(Args.size() == 4);
623   GenericValue GV;
624
625   GV.UIntVal = fwrite((void*)GVTOP(Args[0]), Args[1].UIntVal,
626                       Args[2].UIntVal, getFILE(GVTOP(Args[3])));
627   return GV;
628 }
629
630 // char *fgets(char *s, int n, FILE *stream);
631 GenericValue lle_X_fgets(FunctionType *M, const vector<GenericValue> &Args) {
632   assert(Args.size() == 3);
633   return GVTOP(fgets((char*)GVTOP(Args[0]), Args[1].IntVal,
634                      getFILE(GVTOP(Args[2]))));
635 }
636
637 // FILE *freopen(const char *path, const char *mode, FILE *stream);
638 GenericValue lle_X_freopen(FunctionType *M, const vector<GenericValue> &Args) {
639   assert(Args.size() == 3);
640   return PTOGV(freopen((char*)GVTOP(Args[0]), (char*)GVTOP(Args[1]),
641                        getFILE(GVTOP(Args[2]))));
642 }
643
644 // int fflush(FILE *stream);
645 GenericValue lle_X_fflush(FunctionType *M, const vector<GenericValue> &Args) {
646   assert(Args.size() == 1);
647   GenericValue GV;
648   GV.IntVal = fflush(getFILE(GVTOP(Args[0])));
649   return GV;
650 }
651
652 // int getc(FILE *stream);
653 GenericValue lle_X_getc(FunctionType *M, const vector<GenericValue> &Args) {
654   assert(Args.size() == 1);
655   GenericValue GV;
656   GV.IntVal = getc(getFILE(GVTOP(Args[0])));
657   return GV;
658 }
659
660 // int _IO_getc(FILE *stream);
661 GenericValue lle_X__IO_getc(FunctionType *F, const vector<GenericValue> &Args) {
662   return lle_X_getc(F, Args);
663 }
664
665 // int fputc(int C, FILE *stream);
666 GenericValue lle_X_fputc(FunctionType *M, const vector<GenericValue> &Args) {
667   assert(Args.size() == 2);
668   GenericValue GV;
669   GV.IntVal = fputc(Args[0].IntVal, getFILE(GVTOP(Args[1])));
670   return GV;
671 }
672
673 // int ungetc(int C, FILE *stream);
674 GenericValue lle_X_ungetc(FunctionType *M, const vector<GenericValue> &Args) {
675   assert(Args.size() == 2);
676   GenericValue GV;
677   GV.IntVal = ungetc(Args[0].IntVal, getFILE(GVTOP(Args[1])));
678   return GV;
679 }
680
681 // int fprintf(FILE *,sbyte *, ...) - a very rough implementation to make output
682 // useful.
683 GenericValue lle_X_fprintf(FunctionType *M, const vector<GenericValue> &Args) {
684   assert(Args.size() >= 2);
685   char Buffer[10000];
686   vector<GenericValue> NewArgs;
687   NewArgs.push_back(PTOGV(Buffer));
688   NewArgs.insert(NewArgs.end(), Args.begin()+1, Args.end());
689   GenericValue GV = lle_X_sprintf(M, NewArgs);
690
691   fputs(Buffer, getFILE(GVTOP(Args[0])));
692   return GV;
693 }
694
695 //===----------------------------------------------------------------------===//
696 // LLVM Intrinsic Functions...
697 //===----------------------------------------------------------------------===//
698
699 // void llvm.va_start(<va_list> *) - Implement the va_start operation...
700 GenericValue llvm_va_start(FunctionType *F, const vector<GenericValue> &Args) {
701   assert(Args.size() == 1);
702   GenericValue *VAListP = (GenericValue *)GVTOP(Args[0]);
703   GenericValue Val;
704   Val.UIntVal = 0;   // Start at the first '...' argument...
705   TheInterpreter->StoreValueToMemory(Val, VAListP, Type::UIntTy);
706   return GenericValue();
707 }
708
709 // void llvm.va_end(<va_list> *) - Implement the va_end operation...
710 GenericValue llvm_va_end(FunctionType *F, const vector<GenericValue> &Args) {
711   assert(Args.size() == 1);
712   return GenericValue();    // Noop!
713 }
714
715 // void llvm.va_copy(<va_list> *, <va_list>) - Implement the va_copy
716 // operation...
717 GenericValue llvm_va_copy(FunctionType *F, const vector<GenericValue> &Args) {
718   assert(Args.size() == 2);
719   GenericValue *DestVAList = (GenericValue*)GVTOP(Args[0]);
720   TheInterpreter->StoreValueToMemory(Args[1], DestVAList, Type::UIntTy);
721   return GenericValue();
722 }
723
724 } // End extern "C"
725
726
727 void Interpreter::initializeExternalFunctions() {
728   FuncNames["lle_Vb_putchar"]     = lle_Vb_putchar;
729   FuncNames["lle_ii_putchar"]     = lle_ii_putchar;
730   FuncNames["lle_VB_putchar"]     = lle_VB_putchar;
731   FuncNames["lle_X_exit"]         = lle_X_exit;
732   FuncNames["lle_X_abort"]        = lle_X_abort;
733   FuncNames["lle_X_malloc"]       = lle_X_malloc;
734   FuncNames["lle_X_calloc"]       = lle_X_calloc;
735   FuncNames["lle_X_free"]         = lle_X_free;
736   FuncNames["lle_X_atoi"]         = lle_X_atoi;
737   FuncNames["lle_X_pow"]          = lle_X_pow;
738   FuncNames["lle_X_exp"]          = lle_X_exp;
739   FuncNames["lle_X_log"]          = lle_X_log;
740   FuncNames["lle_X_floor"]        = lle_X_floor;
741   FuncNames["lle_X_srand"]        = lle_X_srand;
742   FuncNames["lle_X_drand48"]      = lle_X_drand48;
743   FuncNames["lle_X_srand48"]      = lle_X_srand48;
744   FuncNames["lle_X_lrand48"]      = lle_X_lrand48;
745   FuncNames["lle_X_sqrt"]         = lle_X_sqrt;
746   FuncNames["lle_X_puts"]         = lle_X_puts;
747   FuncNames["lle_X_printf"]       = lle_X_printf;
748   FuncNames["lle_X_sprintf"]      = lle_X_sprintf;
749   FuncNames["lle_X_sscanf"]       = lle_X_sscanf;
750   FuncNames["lle_X_scanf"]        = lle_X_scanf;
751   FuncNames["lle_i_clock"]        = lle_i_clock;
752
753   FuncNames["lle_X_strcmp"]       = lle_X_strcmp;
754   FuncNames["lle_X_strcat"]       = lle_X_strcat;
755   FuncNames["lle_X_strcpy"]       = lle_X_strcpy;
756   FuncNames["lle_X_strlen"]       = lle_X_strlen;
757   FuncNames["lle_X___strdup"]     = lle_X___strdup;
758   FuncNames["lle_X_memset"]       = lle_X_memset;
759   FuncNames["lle_X_memcpy"]       = lle_X_memcpy;
760
761   FuncNames["lle_X_fopen"]        = lle_X_fopen;
762   FuncNames["lle_X_fclose"]       = lle_X_fclose;
763   FuncNames["lle_X_feof"]         = lle_X_feof;
764   FuncNames["lle_X_fread"]        = lle_X_fread;
765   FuncNames["lle_X_fwrite"]       = lle_X_fwrite;
766   FuncNames["lle_X_fgets"]        = lle_X_fgets;
767   FuncNames["lle_X_fflush"]       = lle_X_fflush;
768   FuncNames["lle_X_fgetc"]        = lle_X_getc;
769   FuncNames["lle_X_getc"]         = lle_X_getc;
770   FuncNames["lle_X__IO_getc"]     = lle_X__IO_getc;
771   FuncNames["lle_X_fputc"]        = lle_X_fputc;
772   FuncNames["lle_X_ungetc"]       = lle_X_ungetc;
773   FuncNames["lle_X_fprintf"]      = lle_X_fprintf;
774   FuncNames["lle_X_freopen"]      = lle_X_freopen;
775
776   FuncNames["lle_X_llvm.va_start"]= llvm_va_start;
777   FuncNames["lle_X_llvm.va_end"]  = llvm_va_end;
778   FuncNames["lle_X_llvm.va_copy"] = llvm_va_copy;
779 }