blob: 8c45a36b56a1181bdbe3a1bad5676360c2e7075c [file] [log] [blame]
Chris Lattner2fbfdcf2002-04-07 20:49:59 +00001//===-- ExternalFunctions.cpp - Implement External Functions --------------===//
Misha Brukmand1c881a2005-04-21 22:43:08 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmand1c881a2005-04-21 22:43:08 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Misha Brukmand1c881a2005-04-21 22:43:08 +00009//
Chris Lattner2fbfdcf2002-04-07 20:49:59 +000010// This file contains both code to deal with invoking "external" functions, but
11// also contains code that implements "exported" external functions.
Chris Lattner7720c8e2001-09-10 04:50:17 +000012//
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +000013// There are currently two mechanisms for handling external functions in the
14// Interpreter. The first is to implement lle_* wrapper functions that are
15// specific to well-known library functions which manually translate the
16// arguments from GenericValues and make the call. If such a wrapper does
17// not exist, and libffi is available, then the Interpreter will attempt to
18// invoke the function using libffi, after finding its address.
Chris Lattner7720c8e2001-09-10 04:50:17 +000019//
20//===----------------------------------------------------------------------===//
21
22#include "Interpreter.h"
23#include "llvm/DerivedTypes.h"
Misha Brukmanb8d15b22003-10-14 21:42:11 +000024#include "llvm/Module.h"
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +000025#include "llvm/Config/config.h" // Detect libffi
Torok Edwin7d696d82009-07-11 13:10:19 +000026#include "llvm/Support/ErrorHandling.h"
Reid Spencerdf5a37e2004-11-29 14:11:29 +000027#include "llvm/System/DynamicLibrary.h"
Chris Lattner005cbce2002-10-02 21:12:13 +000028#include "llvm/Target/TargetData.h"
Chuck Rose III936baaa2007-07-27 18:26:35 +000029#include "llvm/Support/ManagedStatic.h"
Owen Andersonc2265702009-06-22 22:30:56 +000030#include "llvm/System/Mutex.h"
Brian Gaekeb56a6bc2003-11-05 01:18:49 +000031#include <csignal>
Duncan Sands4520dd22008-10-08 07:23:46 +000032#include <cstdio>
Misha Brukmanb8d15b22003-10-14 21:42:11 +000033#include <map>
Jeff Cohen97af7512006-12-02 02:22:01 +000034#include <cmath>
Anton Korobeynikovae9f3a32008-02-20 11:08:44 +000035#include <cstring>
Zhou Sheng621dead2007-12-12 06:16:47 +000036
Nick Lewycky93f70fc2009-04-13 04:26:06 +000037#ifdef HAVE_FFI_CALL
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +000038#ifdef HAVE_FFI_H
39#include <ffi.h>
Nick Lewycky93f70fc2009-04-13 04:26:06 +000040#define USE_LIBFFI
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +000041#elif HAVE_FFI_FFI_H
42#include <ffi/ffi.h>
Nick Lewycky93f70fc2009-04-13 04:26:06 +000043#define USE_LIBFFI
Zhou Sheng621dead2007-12-12 06:16:47 +000044#endif
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +000045#endif
Tanya Lattner32aaee62009-01-22 20:09:20 +000046
Chris Lattnerf7a743d2003-12-14 23:25:48 +000047using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000048
Owen Andersonc2265702009-06-22 22:30:56 +000049static ManagedStatic<sys::Mutex> FunctionsLock;
50
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +000051typedef GenericValue (*ExFunc)(const FunctionType *,
52 const std::vector<GenericValue> &);
53static ManagedStatic<std::map<const Function *, ExFunc> > ExportedFunctions;
Chris Lattner697954c2002-01-20 22:54:45 +000054static std::map<std::string, ExFunc> FuncNames;
Chris Lattner7720c8e2001-09-10 04:50:17 +000055
Nick Lewycky93f70fc2009-04-13 04:26:06 +000056#ifdef USE_LIBFFI
Dan Gohmana9ad0412009-08-12 22:10:57 +000057typedef void (*RawFunc)();
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +000058static ManagedStatic<std::map<const Function *, RawFunc> > RawFunctions;
59#endif
60
Chris Lattnere43db882001-10-27 04:15:57 +000061static Interpreter *TheInterpreter;
62
Chris Lattner7720c8e2001-09-10 04:50:17 +000063static char getTypeID(const Type *Ty) {
Chris Lattnerf70c22b2004-06-17 18:19:28 +000064 switch (Ty->getTypeID()) {
Chris Lattner7720c8e2001-09-10 04:50:17 +000065 case Type::VoidTyID: return 'V';
Reid Spencera54b7cb2007-01-12 07:05:14 +000066 case Type::IntegerTyID:
67 switch (cast<IntegerType>(Ty)->getBitWidth()) {
68 case 1: return 'o';
69 case 8: return 'B';
70 case 16: return 'S';
71 case 32: return 'I';
72 case 64: return 'L';
73 default: return 'N';
74 }
Chris Lattner7720c8e2001-09-10 04:50:17 +000075 case Type::FloatTyID: return 'F';
76 case Type::DoubleTyID: return 'D';
77 case Type::PointerTyID: return 'P';
Reid Spencere49661b2006-12-31 05:51:36 +000078 case Type::FunctionTyID:return 'M';
Chris Lattner7720c8e2001-09-10 04:50:17 +000079 case Type::StructTyID: return 'T';
80 case Type::ArrayTyID: return 'A';
81 case Type::OpaqueTyID: return 'O';
82 default: return 'U';
83 }
84}
85
Anton Korobeynikov42346f52007-07-30 23:03:25 +000086// Try to find address of external function given a Function object.
87// Please note, that interpreter doesn't know how to assemble a
88// real call in general case (this is JIT job), that's why it assumes,
89// that all external functions has the same (and pretty "general") signature.
90// The typical example of such functions are "lle_X_" ones.
Brian Gaeke58a6faa2003-10-10 17:03:10 +000091static ExFunc lookupFunction(const Function *F) {
Chris Lattner7720c8e2001-09-10 04:50:17 +000092 // Function not found, look it up... start by figuring out what the
93 // composite function name should be.
Chris Lattner697954c2002-01-20 22:54:45 +000094 std::string ExtName = "lle_";
Brian Gaeke58a6faa2003-10-10 17:03:10 +000095 const FunctionType *FT = F->getFunctionType();
96 for (unsigned i = 0, e = FT->getNumContainedTypes(); i != e; ++i)
97 ExtName += getTypeID(FT->getContainedType(i));
Daniel Dunbarf6ccee52009-07-24 08:24:36 +000098 ExtName + "_" + F->getNameStr();
Chris Lattner7720c8e2001-09-10 04:50:17 +000099
Owen Andersona9d1f2c2009-07-07 18:33:04 +0000100 sys::ScopedLock Writer(*FunctionsLock);
Chris Lattner4721f132001-10-30 20:28:00 +0000101 ExFunc FnPtr = FuncNames[ExtName];
102 if (FnPtr == 0)
Daniel Dunbarf6ccee52009-07-24 08:24:36 +0000103 FnPtr = FuncNames["lle_X_" + F->getNameStr()];
Chris Lattner7720c8e2001-09-10 04:50:17 +0000104 if (FnPtr == 0) // Try calling a generic function... if it exists...
Daniel Dunbar8f603022009-07-22 21:10:12 +0000105 FnPtr = (ExFunc)(intptr_t)
Daniel Dunbarf6ccee52009-07-24 08:24:36 +0000106 sys::DynamicLibrary::SearchForAddressOfSymbol("lle_X_"+F->getNameStr());
Chris Lattner7720c8e2001-09-10 04:50:17 +0000107 if (FnPtr != 0)
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +0000108 ExportedFunctions->insert(std::make_pair(F, FnPtr)); // Cache for later
Chris Lattner7720c8e2001-09-10 04:50:17 +0000109 return FnPtr;
110}
111
Nick Lewycky93f70fc2009-04-13 04:26:06 +0000112#ifdef USE_LIBFFI
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +0000113static ffi_type *ffiTypeFor(const Type *Ty) {
114 switch (Ty->getTypeID()) {
115 case Type::VoidTyID: return &ffi_type_void;
116 case Type::IntegerTyID:
117 switch (cast<IntegerType>(Ty)->getBitWidth()) {
118 case 8: return &ffi_type_sint8;
119 case 16: return &ffi_type_sint16;
120 case 32: return &ffi_type_sint32;
121 case 64: return &ffi_type_sint64;
122 }
123 case Type::FloatTyID: return &ffi_type_float;
124 case Type::DoubleTyID: return &ffi_type_double;
125 case Type::PointerTyID: return &ffi_type_pointer;
126 default: break;
127 }
128 // TODO: Support other types such as StructTyID, ArrayTyID, OpaqueTyID, etc.
Torok Edwin7d696d82009-07-11 13:10:19 +0000129 llvm_report_error("Type could not be mapped for use with libffi.");
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +0000130 return NULL;
131}
132
133static void *ffiValueFor(const Type *Ty, const GenericValue &AV,
134 void *ArgDataPtr) {
135 switch (Ty->getTypeID()) {
136 case Type::IntegerTyID:
137 switch (cast<IntegerType>(Ty)->getBitWidth()) {
138 case 8: {
139 int8_t *I8Ptr = (int8_t *) ArgDataPtr;
140 *I8Ptr = (int8_t) AV.IntVal.getZExtValue();
141 return ArgDataPtr;
142 }
143 case 16: {
144 int16_t *I16Ptr = (int16_t *) ArgDataPtr;
145 *I16Ptr = (int16_t) AV.IntVal.getZExtValue();
146 return ArgDataPtr;
147 }
148 case 32: {
149 int32_t *I32Ptr = (int32_t *) ArgDataPtr;
150 *I32Ptr = (int32_t) AV.IntVal.getZExtValue();
151 return ArgDataPtr;
152 }
153 case 64: {
154 int64_t *I64Ptr = (int64_t *) ArgDataPtr;
155 *I64Ptr = (int64_t) AV.IntVal.getZExtValue();
156 return ArgDataPtr;
157 }
158 }
159 case Type::FloatTyID: {
160 float *FloatPtr = (float *) ArgDataPtr;
161 *FloatPtr = AV.DoubleVal;
162 return ArgDataPtr;
163 }
164 case Type::DoubleTyID: {
165 double *DoublePtr = (double *) ArgDataPtr;
166 *DoublePtr = AV.DoubleVal;
167 return ArgDataPtr;
168 }
169 case Type::PointerTyID: {
170 void **PtrPtr = (void **) ArgDataPtr;
171 *PtrPtr = GVTOP(AV);
172 return ArgDataPtr;
173 }
174 default: break;
175 }
176 // TODO: Support other types such as StructTyID, ArrayTyID, OpaqueTyID, etc.
Torok Edwin7d696d82009-07-11 13:10:19 +0000177 llvm_report_error("Type value could not be mapped for use with libffi.");
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +0000178 return NULL;
179}
180
181static bool ffiInvoke(RawFunc Fn, Function *F,
182 const std::vector<GenericValue> &ArgVals,
183 const TargetData *TD, GenericValue &Result) {
184 ffi_cif cif;
185 const FunctionType *FTy = F->getFunctionType();
186 const unsigned NumArgs = F->arg_size();
187
188 // TODO: We don't have type information about the remaining arguments, because
189 // this information is never passed into ExecutionEngine::runFunction().
190 if (ArgVals.size() > NumArgs && F->isVarArg()) {
Torok Edwin7d696d82009-07-11 13:10:19 +0000191 llvm_report_error("Calling external var arg function '" + F->getName()
192 + "' is not supported by the Interpreter.");
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +0000193 }
194
195 unsigned ArgBytes = 0;
196
197 std::vector<ffi_type*> args(NumArgs);
198 for (Function::const_arg_iterator A = F->arg_begin(), E = F->arg_end();
199 A != E; ++A) {
200 const unsigned ArgNo = A->getArgNo();
201 const Type *ArgTy = FTy->getParamType(ArgNo);
202 args[ArgNo] = ffiTypeFor(ArgTy);
203 ArgBytes += TD->getTypeStoreSize(ArgTy);
204 }
205
Nick Lewycky7de3bd22009-09-18 16:46:16 +0000206 SmallVector<uint8_t, 128> ArgData;
207 ArgData.resize(ArgBytes);
208 uint8_t *ArgDataPtr = ArgData.data();
209 SmallVector<void*, 16> values(NumArgs);
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +0000210 for (Function::const_arg_iterator A = F->arg_begin(), E = F->arg_end();
211 A != E; ++A) {
212 const unsigned ArgNo = A->getArgNo();
213 const Type *ArgTy = FTy->getParamType(ArgNo);
214 values[ArgNo] = ffiValueFor(ArgTy, ArgVals[ArgNo], ArgDataPtr);
215 ArgDataPtr += TD->getTypeStoreSize(ArgTy);
216 }
217
218 const Type *RetTy = FTy->getReturnType();
219 ffi_type *rtype = ffiTypeFor(RetTy);
220
221 if (ffi_prep_cif(&cif, FFI_DEFAULT_ABI, NumArgs, rtype, &args[0]) == FFI_OK) {
Nick Lewycky7de3bd22009-09-18 16:46:16 +0000222 SmallVector<uint8_t, 128> ret;
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +0000223 if (RetTy->getTypeID() != Type::VoidTyID)
Nick Lewycky7de3bd22009-09-18 16:46:16 +0000224 ret.resize(TD->getTypeStoreSize(RetTy));
225 ffi_call(&cif, Fn, ret.data(), values.data());
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +0000226 switch (RetTy->getTypeID()) {
227 case Type::IntegerTyID:
228 switch (cast<IntegerType>(RetTy)->getBitWidth()) {
Nick Lewycky7de3bd22009-09-18 16:46:16 +0000229 case 8: Result.IntVal = APInt(8 , *(int8_t *) ret.data()); break;
230 case 16: Result.IntVal = APInt(16, *(int16_t*) ret.data()); break;
231 case 32: Result.IntVal = APInt(32, *(int32_t*) ret.data()); break;
232 case 64: Result.IntVal = APInt(64, *(int64_t*) ret.data()); break;
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +0000233 }
234 break;
Nick Lewycky7de3bd22009-09-18 16:46:16 +0000235 case Type::FloatTyID: Result.FloatVal = *(float *) ret.data(); break;
236 case Type::DoubleTyID: Result.DoubleVal = *(double*) ret.data(); break;
237 case Type::PointerTyID: Result.PointerVal = *(void **) ret.data(); break;
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +0000238 default: break;
239 }
240 return true;
241 }
242
243 return false;
244}
Nick Lewycky93f70fc2009-04-13 04:26:06 +0000245#endif // USE_LIBFFI
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +0000246
Chris Lattner4e7dd8f2005-01-21 19:59:37 +0000247GenericValue Interpreter::callExternalFunction(Function *F,
Chris Lattner44edb6b2003-05-14 14:21:30 +0000248 const std::vector<GenericValue> &ArgVals) {
Chris Lattnere43db882001-10-27 04:15:57 +0000249 TheInterpreter = this;
250
Owen Andersonc2265702009-06-22 22:30:56 +0000251 FunctionsLock->acquire();
252
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000253 // Do a lookup to see if the function is in our cache... this should just be a
Misha Brukmand5d96b92003-10-10 17:42:19 +0000254 // deferred annotation!
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +0000255 std::map<const Function *, ExFunc>::iterator FI = ExportedFunctions->find(F);
256 if (ExFunc Fn = (FI == ExportedFunctions->end()) ? lookupFunction(F)
Owen Andersonc2265702009-06-22 22:30:56 +0000257 : FI->second) {
258 FunctionsLock->release();
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +0000259 return Fn(F->getFunctionType(), ArgVals);
Owen Andersonc2265702009-06-22 22:30:56 +0000260 }
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +0000261
Nick Lewycky93f70fc2009-04-13 04:26:06 +0000262#ifdef USE_LIBFFI
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +0000263 std::map<const Function *, RawFunc>::iterator RF = RawFunctions->find(F);
264 RawFunc RawFn;
265 if (RF == RawFunctions->end()) {
266 RawFn = (RawFunc)(intptr_t)
267 sys::DynamicLibrary::SearchForAddressOfSymbol(F->getName());
268 if (RawFn != 0)
269 RawFunctions->insert(std::make_pair(F, RawFn)); // Cache for later
270 } else {
271 RawFn = RF->second;
Chris Lattner7720c8e2001-09-10 04:50:17 +0000272 }
Daniel Dunbare4a57432009-09-17 00:14:44 +0000273
Owen Andersonc2265702009-06-22 22:30:56 +0000274 FunctionsLock->release();
Chris Lattner7720c8e2001-09-10 04:50:17 +0000275
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +0000276 GenericValue Result;
277 if (RawFn != 0 && ffiInvoke(RawFn, F, ArgVals, getTargetData(), Result))
278 return Result;
Nick Lewycky93f70fc2009-04-13 04:26:06 +0000279#endif // USE_LIBFFI
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +0000280
Torok Edwin7d696d82009-07-11 13:10:19 +0000281 if (F->getName() == "__main")
Chris Lattnerd9ea85a2009-08-23 08:43:55 +0000282 errs() << "Tried to execute an unknown external function: "
Torok Edwin7d696d82009-07-11 13:10:19 +0000283 << F->getType()->getDescription() << " __main\n";
284 else
285 llvm_report_error("Tried to execute an unknown external function: " +
286 F->getType()->getDescription() + " " +F->getName());
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +0000287 return GenericValue();
Chris Lattner7720c8e2001-09-10 04:50:17 +0000288}
289
290
291//===----------------------------------------------------------------------===//
Chris Lattnerb408b122002-03-29 03:57:15 +0000292// Functions "exported" to the running application...
Chris Lattner7720c8e2001-09-10 04:50:17 +0000293//
Daniel Dunbar482cccd2009-08-07 20:50:09 +0000294
295// Visual Studio warns about returning GenericValue in extern "C" linkage
296#ifdef _MSC_VER
297 #pragma warning(disable : 4190)
298#endif
299
Chris Lattner7720c8e2001-09-10 04:50:17 +0000300extern "C" { // Don't add C++ manglings to llvm mangling :)
301
Chris Lattner44edb6b2003-05-14 14:21:30 +0000302// void atexit(Function*)
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +0000303GenericValue lle_X_atexit(const FunctionType *FT,
304 const std::vector<GenericValue> &Args) {
Chris Lattner44edb6b2003-05-14 14:21:30 +0000305 assert(Args.size() == 1);
306 TheInterpreter->addAtExitHandler((Function*)GVTOP(Args[0]));
307 GenericValue GV;
Reid Spencerbfcd5992007-03-06 03:08:12 +0000308 GV.IntVal = 0;
Chris Lattner44edb6b2003-05-14 14:21:30 +0000309 return GV;
Chris Lattnerf8f2afb2001-10-18 21:55:32 +0000310}
311
Chris Lattner005cbce2002-10-02 21:12:13 +0000312// void exit(int)
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +0000313GenericValue lle_X_exit(const FunctionType *FT,
314 const std::vector<GenericValue> &Args) {
Chris Lattnere43db882001-10-27 04:15:57 +0000315 TheInterpreter->exitCalled(Args[0]);
316 return GenericValue();
317}
318
Chris Lattner005cbce2002-10-02 21:12:13 +0000319// void abort(void)
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +0000320GenericValue lle_X_abort(const FunctionType *FT,
321 const std::vector<GenericValue> &Args) {
Torok Edwin7d696d82009-07-11 13:10:19 +0000322 //FIXME: should we report or raise here?
323 //llvm_report_error("Interpreted program raised SIGABRT");
Brian Gaekeb56a6bc2003-11-05 01:18:49 +0000324 raise (SIGABRT);
Chris Lattner1ee34a52002-05-20 21:17:16 +0000325 return GenericValue();
326}
327
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +0000328// int sprintf(char *, const char *, ...) - a very rough implementation to make
Chris Lattnere7c6f722001-12-13 00:43:47 +0000329// output useful.
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +0000330GenericValue lle_X_sprintf(const FunctionType *FT,
331 const std::vector<GenericValue> &Args) {
Chris Lattnerb1118742003-01-13 00:59:47 +0000332 char *OutputBuffer = (char *)GVTOP(Args[0]);
333 const char *FmtStr = (const char *)GVTOP(Args[1]);
Chris Lattnere7c6f722001-12-13 00:43:47 +0000334 unsigned ArgNo = 2;
Chris Lattner08845a22001-10-29 20:27:45 +0000335
336 // printf should return # chars printed. This is completely incorrect, but
337 // close enough for now.
Daniel Dunbare4a57432009-09-17 00:14:44 +0000338 GenericValue GV;
Reid Spencerbfcd5992007-03-06 03:08:12 +0000339 GV.IntVal = APInt(32, strlen(FmtStr));
Chris Lattner08845a22001-10-29 20:27:45 +0000340 while (1) {
341 switch (*FmtStr) {
342 case 0: return GV; // Null terminator...
343 default: // Normal nonspecial character
Chris Lattnere7c6f722001-12-13 00:43:47 +0000344 sprintf(OutputBuffer++, "%c", *FmtStr++);
Chris Lattner08845a22001-10-29 20:27:45 +0000345 break;
346 case '\\': { // Handle escape codes
Chris Lattnere7c6f722001-12-13 00:43:47 +0000347 sprintf(OutputBuffer, "%c%c", *FmtStr, *(FmtStr+1));
348 FmtStr += 2; OutputBuffer += 2;
Chris Lattner08845a22001-10-29 20:27:45 +0000349 break;
350 }
351 case '%': { // Handle format specifiers
Chris Lattnerea38c0e2001-11-07 19:46:27 +0000352 char FmtBuf[100] = "", Buffer[1000] = "";
353 char *FB = FmtBuf;
354 *FB++ = *FmtStr++;
355 char Last = *FB++ = *FmtStr++;
356 unsigned HowLong = 0;
357 while (Last != 'c' && Last != 'd' && Last != 'i' && Last != 'u' &&
358 Last != 'o' && Last != 'x' && Last != 'X' && Last != 'e' &&
359 Last != 'E' && Last != 'g' && Last != 'G' && Last != 'f' &&
360 Last != 'p' && Last != 's' && Last != '%') {
361 if (Last == 'l' || Last == 'L') HowLong++; // Keep track of l's
362 Last = *FB++ = *FmtStr++;
Chris Lattner08845a22001-10-29 20:27:45 +0000363 }
Chris Lattnerea38c0e2001-11-07 19:46:27 +0000364 *FB = 0;
Misha Brukmand1c881a2005-04-21 22:43:08 +0000365
Chris Lattnerea38c0e2001-11-07 19:46:27 +0000366 switch (Last) {
367 case '%':
Dan Gohman1eac4e02008-08-05 23:36:35 +0000368 strcpy(Buffer, "%"); break;
Chris Lattnerea38c0e2001-11-07 19:46:27 +0000369 case 'c':
Reid Spencerbfcd5992007-03-06 03:08:12 +0000370 sprintf(Buffer, FmtBuf, uint32_t(Args[ArgNo++].IntVal.getZExtValue()));
371 break;
Chris Lattnerea38c0e2001-11-07 19:46:27 +0000372 case 'd': case 'i':
373 case 'u': case 'o':
374 case 'x': case 'X':
Chris Lattner69ab7a82002-08-02 23:08:32 +0000375 if (HowLong >= 1) {
Chris Lattner1543e402003-08-24 14:02:47 +0000376 if (HowLong == 1 &&
Chris Lattnerfe854032006-08-16 01:24:12 +0000377 TheInterpreter->getTargetData()->getPointerSizeInBits() == 64 &&
Reid Spencer19b7e0e2006-05-24 19:21:13 +0000378 sizeof(long) < sizeof(int64_t)) {
Chris Lattner69ab7a82002-08-02 23:08:32 +0000379 // Make sure we use %lld with a 64 bit argument because we might be
380 // compiling LLI on a 32 bit compiler.
381 unsigned Size = strlen(FmtBuf);
382 FmtBuf[Size] = FmtBuf[Size-1];
383 FmtBuf[Size+1] = 0;
384 FmtBuf[Size-1] = 'l';
385 }
Reid Spencerbfcd5992007-03-06 03:08:12 +0000386 sprintf(Buffer, FmtBuf, Args[ArgNo++].IntVal.getZExtValue());
Chris Lattner69ab7a82002-08-02 23:08:32 +0000387 } else
Reid Spencerbfcd5992007-03-06 03:08:12 +0000388 sprintf(Buffer, FmtBuf,uint32_t(Args[ArgNo++].IntVal.getZExtValue()));
389 break;
Chris Lattnerea38c0e2001-11-07 19:46:27 +0000390 case 'e': case 'E': case 'g': case 'G': case 'f':
391 sprintf(Buffer, FmtBuf, Args[ArgNo++].DoubleVal); break;
392 case 'p':
Chris Lattnerb1118742003-01-13 00:59:47 +0000393 sprintf(Buffer, FmtBuf, (void*)GVTOP(Args[ArgNo++])); break;
Misha Brukmand1c881a2005-04-21 22:43:08 +0000394 case 's':
Chris Lattnerb1118742003-01-13 00:59:47 +0000395 sprintf(Buffer, FmtBuf, (char*)GVTOP(Args[ArgNo++])); break;
Chris Lattnerd9ea85a2009-08-23 08:43:55 +0000396 default:
397 errs() << "<unknown printf code '" << *FmtStr << "'!>";
Chris Lattnerea38c0e2001-11-07 19:46:27 +0000398 ArgNo++; break;
Chris Lattner08845a22001-10-29 20:27:45 +0000399 }
Chris Lattnere7c6f722001-12-13 00:43:47 +0000400 strcpy(OutputBuffer, Buffer);
401 OutputBuffer += strlen(Buffer);
Chris Lattnerea38c0e2001-11-07 19:46:27 +0000402 }
Chris Lattner08845a22001-10-29 20:27:45 +0000403 break;
404 }
Chris Lattner08845a22001-10-29 20:27:45 +0000405 }
Reid Spencerb3b07272007-04-21 17:11:45 +0000406 return GV;
Chris Lattner08845a22001-10-29 20:27:45 +0000407}
408
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +0000409// int printf(const char *, ...) - a very rough implementation to make output
410// useful.
411GenericValue lle_X_printf(const FunctionType *FT,
412 const std::vector<GenericValue> &Args) {
Chris Lattnere7c6f722001-12-13 00:43:47 +0000413 char Buffer[10000];
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +0000414 std::vector<GenericValue> NewArgs;
Reid Spencerb3b07272007-04-21 17:11:45 +0000415 NewArgs.push_back(PTOGV((void*)&Buffer[0]));
Chris Lattnere7c6f722001-12-13 00:43:47 +0000416 NewArgs.insert(NewArgs.end(), Args.begin(), Args.end());
Reid Spencer97e0c222007-03-30 16:41:50 +0000417 GenericValue GV = lle_X_sprintf(FT, NewArgs);
Chris Lattnerd9ea85a2009-08-23 08:43:55 +0000418 outs() << Buffer;
Chris Lattnere7c6f722001-12-13 00:43:47 +0000419 return GV;
420}
421
Owen Anderson1d0be152009-08-13 21:58:54 +0000422static void ByteswapSCANFResults(LLVMContext &C,
423 const char *Fmt, void *Arg0, void *Arg1,
Chris Lattnerf9a88b62003-03-31 22:12:37 +0000424 void *Arg2, void *Arg3, void *Arg4, void *Arg5,
425 void *Arg6, void *Arg7, void *Arg8) {
426 void *Args[] = { Arg0, Arg1, Arg2, Arg3, Arg4, Arg5, Arg6, Arg7, Arg8, 0 };
427
428 // Loop over the format string, munging read values as appropriate (performs
Misha Brukman5560c9d2003-08-18 14:43:39 +0000429 // byteswaps as necessary).
Chris Lattnerf9a88b62003-03-31 22:12:37 +0000430 unsigned ArgNo = 0;
431 while (*Fmt) {
432 if (*Fmt++ == '%') {
433 // Read any flag characters that may be present...
434 bool Suppress = false;
435 bool Half = false;
436 bool Long = false;
437 bool LongLong = false; // long long or long double
438
439 while (1) {
440 switch (*Fmt++) {
441 case '*': Suppress = true; break;
442 case 'a': /*Allocate = true;*/ break; // We don't need to track this
443 case 'h': Half = true; break;
444 case 'l': Long = true; break;
445 case 'q':
446 case 'L': LongLong = true; break;
447 default:
448 if (Fmt[-1] > '9' || Fmt[-1] < '0') // Ignore field width specs
449 goto Out;
450 }
451 }
452 Out:
453
454 // Read the conversion character
455 if (!Suppress && Fmt[-1] != '%') { // Nothing to do?
456 unsigned Size = 0;
457 const Type *Ty = 0;
458
459 switch (Fmt[-1]) {
460 case 'i': case 'o': case 'u': case 'x': case 'X': case 'n': case 'p':
461 case 'd':
462 if (Long || LongLong) {
Owen Anderson1d0be152009-08-13 21:58:54 +0000463 Size = 8; Ty = Type::getInt64Ty(C);
Chris Lattnerf9a88b62003-03-31 22:12:37 +0000464 } else if (Half) {
Owen Anderson1d0be152009-08-13 21:58:54 +0000465 Size = 4; Ty = Type::getInt16Ty(C);
Chris Lattnerf9a88b62003-03-31 22:12:37 +0000466 } else {
Owen Anderson1d0be152009-08-13 21:58:54 +0000467 Size = 4; Ty = Type::getInt32Ty(C);
Chris Lattnerf9a88b62003-03-31 22:12:37 +0000468 }
469 break;
470
471 case 'e': case 'g': case 'E':
472 case 'f':
473 if (Long || LongLong) {
Owen Anderson1d0be152009-08-13 21:58:54 +0000474 Size = 8; Ty = Type::getDoubleTy(C);
Chris Lattnerf9a88b62003-03-31 22:12:37 +0000475 } else {
Owen Anderson1d0be152009-08-13 21:58:54 +0000476 Size = 4; Ty = Type::getFloatTy(C);
Chris Lattnerf9a88b62003-03-31 22:12:37 +0000477 }
478 break;
479
480 case 's': case 'c': case '[': // No byteswap needed
481 Size = 1;
Owen Anderson1d0be152009-08-13 21:58:54 +0000482 Ty = Type::getInt8Ty(C);
Chris Lattnerf9a88b62003-03-31 22:12:37 +0000483 break;
484
485 default: break;
486 }
487
488 if (Size) {
489 GenericValue GV;
490 void *Arg = Args[ArgNo++];
491 memcpy(&GV, Arg, Size);
492 TheInterpreter->StoreValueToMemory(GV, (GenericValue*)Arg, Ty);
493 }
494 }
495 }
496 }
497}
498
Chris Lattner665ee882002-03-08 22:51:07 +0000499// int sscanf(const char *format, ...);
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +0000500GenericValue lle_X_sscanf(const FunctionType *FT,
501 const std::vector<GenericValue> &args) {
Chris Lattner665ee882002-03-08 22:51:07 +0000502 assert(args.size() < 10 && "Only handle up to 10 args to sscanf right now!");
503
Chris Lattnerf9a88b62003-03-31 22:12:37 +0000504 char *Args[10];
Chris Lattner665ee882002-03-08 22:51:07 +0000505 for (unsigned i = 0; i < args.size(); ++i)
Chris Lattnerf9a88b62003-03-31 22:12:37 +0000506 Args[i] = (char*)GVTOP(args[i]);
Chris Lattner665ee882002-03-08 22:51:07 +0000507
508 GenericValue GV;
Reid Spencerbfcd5992007-03-06 03:08:12 +0000509 GV.IntVal = APInt(32, sscanf(Args[0], Args[1], Args[2], Args[3], Args[4],
510 Args[5], Args[6], Args[7], Args[8], Args[9]));
Owen Anderson1d0be152009-08-13 21:58:54 +0000511 ByteswapSCANFResults(FT->getContext(),
512 Args[1], Args[2], Args[3], Args[4],
Chris Lattnerf9a88b62003-03-31 22:12:37 +0000513 Args[5], Args[6], Args[7], Args[8], Args[9], 0);
514 return GV;
515}
516
517// int scanf(const char *format, ...);
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +0000518GenericValue lle_X_scanf(const FunctionType *FT,
519 const std::vector<GenericValue> &args) {
Chris Lattnerf9a88b62003-03-31 22:12:37 +0000520 assert(args.size() < 10 && "Only handle up to 10 args to scanf right now!");
521
522 char *Args[10];
523 for (unsigned i = 0; i < args.size(); ++i)
524 Args[i] = (char*)GVTOP(args[i]);
525
526 GenericValue GV;
Reid Spencerbfcd5992007-03-06 03:08:12 +0000527 GV.IntVal = APInt(32, scanf( Args[0], Args[1], Args[2], Args[3], Args[4],
528 Args[5], Args[6], Args[7], Args[8], Args[9]));
Owen Anderson1d0be152009-08-13 21:58:54 +0000529 ByteswapSCANFResults(FT->getContext(),
530 Args[0], Args[1], Args[2], Args[3], Args[4],
Chris Lattnerf9a88b62003-03-31 22:12:37 +0000531 Args[5], Args[6], Args[7], Args[8], Args[9]);
Chris Lattner665ee882002-03-08 22:51:07 +0000532 return GV;
533}
534
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +0000535// int fprintf(FILE *, const char *, ...) - a very rough implementation to make
536// output useful.
537GenericValue lle_X_fprintf(const FunctionType *FT,
538 const std::vector<GenericValue> &Args) {
Chris Lattner9dbf6dd2003-04-21 22:43:20 +0000539 assert(Args.size() >= 2);
Chris Lattnercf9b4f02002-11-06 23:05:03 +0000540 char Buffer[10000];
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +0000541 std::vector<GenericValue> NewArgs;
Chris Lattnerb1118742003-01-13 00:59:47 +0000542 NewArgs.push_back(PTOGV(Buffer));
Chris Lattnercf9b4f02002-11-06 23:05:03 +0000543 NewArgs.insert(NewArgs.end(), Args.begin()+1, Args.end());
Reid Spencer97e0c222007-03-30 16:41:50 +0000544 GenericValue GV = lle_X_sprintf(FT, NewArgs);
Chris Lattnercf9b4f02002-11-06 23:05:03 +0000545
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +0000546 fputs(Buffer, (FILE *) GVTOP(Args[0]));
Chris Lattnercf9b4f02002-11-06 23:05:03 +0000547 return GV;
548}
549
Chris Lattner7720c8e2001-09-10 04:50:17 +0000550} // End extern "C"
Chris Lattner4721f132001-10-30 20:28:00 +0000551
Daniel Dunbar482cccd2009-08-07 20:50:09 +0000552// Done with externals; turn the warning back on
553#ifdef _MSC_VER
554 #pragma warning(default: 4190)
555#endif
556
Chris Lattner4721f132001-10-30 20:28:00 +0000557
Chris Lattnerda82ed52003-05-08 16:18:31 +0000558void Interpreter::initializeExternalFunctions() {
Owen Andersona9d1f2c2009-07-07 18:33:04 +0000559 sys::ScopedLock Writer(*FunctionsLock);
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +0000560 FuncNames["lle_X_atexit"] = lle_X_atexit;
Chris Lattner0f279b22001-11-03 10:15:32 +0000561 FuncNames["lle_X_exit"] = lle_X_exit;
Chris Lattner1ee34a52002-05-20 21:17:16 +0000562 FuncNames["lle_X_abort"] = lle_X_abort;
Nick Lewyckyf9c5c5c2009-02-04 06:26:47 +0000563
Chris Lattner0f279b22001-11-03 10:15:32 +0000564 FuncNames["lle_X_printf"] = lle_X_printf;
Chris Lattnere7c6f722001-12-13 00:43:47 +0000565 FuncNames["lle_X_sprintf"] = lle_X_sprintf;
Chris Lattner665ee882002-03-08 22:51:07 +0000566 FuncNames["lle_X_sscanf"] = lle_X_sscanf;
Chris Lattnerf9a88b62003-03-31 22:12:37 +0000567 FuncNames["lle_X_scanf"] = lle_X_scanf;
Chris Lattnercf9b4f02002-11-06 23:05:03 +0000568 FuncNames["lle_X_fprintf"] = lle_X_fprintf;
Chris Lattner4721f132001-10-30 20:28:00 +0000569}