2002-04-08 04:49:59 +08:00
|
|
|
//===-- ExternalFunctions.cpp - Implement External Functions --------------===//
|
2005-04-22 06:43:08 +08:00
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2005-04-22 06:43:08 +08:00
|
|
|
//
|
2003-10-21 03:43:21 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2005-04-22 06:43:08 +08:00
|
|
|
//
|
2002-04-08 04:49:59 +08:00
|
|
|
// This file contains both code to deal with invoking "external" functions, but
|
|
|
|
// also contains code that implements "exported" external functions.
|
2001-09-10 12:50:17 +08:00
|
|
|
//
|
2009-02-04 14:26:47 +08:00
|
|
|
// There are currently two mechanisms for handling external functions in the
|
|
|
|
// Interpreter. The first is to implement lle_* wrapper functions that are
|
|
|
|
// specific to well-known library functions which manually translate the
|
|
|
|
// arguments from GenericValues and make the call. If such a wrapper does
|
|
|
|
// not exist, and libffi is available, then the Interpreter will attempt to
|
|
|
|
// invoke the function using libffi, after finding its address.
|
2001-09-10 12:50:17 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "Interpreter.h"
|
2016-08-24 01:14:32 +08:00
|
|
|
#include "llvm/ADT/APInt.h"
|
|
|
|
#include "llvm/ADT/ArrayRef.h"
|
2017-06-06 19:49:48 +08:00
|
|
|
#include "llvm/Config/config.h" // Detect libffi
|
2016-08-24 01:14:32 +08:00
|
|
|
#include "llvm/ExecutionEngine/GenericValue.h"
|
2013-01-02 19:36:10 +08:00
|
|
|
#include "llvm/IR/DataLayout.h"
|
|
|
|
#include "llvm/IR/DerivedTypes.h"
|
2016-08-24 01:14:32 +08:00
|
|
|
#include "llvm/IR/Function.h"
|
|
|
|
#include "llvm/IR/Type.h"
|
|
|
|
#include "llvm/Support/Casting.h"
|
2010-11-30 02:16:10 +08:00
|
|
|
#include "llvm/Support/DynamicLibrary.h"
|
2012-12-04 00:50:05 +08:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2007-07-28 02:26:35 +08:00
|
|
|
#include "llvm/Support/ManagedStatic.h"
|
2010-11-30 02:16:10 +08:00
|
|
|
#include "llvm/Support/Mutex.h"
|
2017-06-06 19:49:48 +08:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2016-08-24 01:14:32 +08:00
|
|
|
#include <cassert>
|
2012-12-04 00:50:05 +08:00
|
|
|
#include <cmath>
|
2003-11-05 09:18:49 +08:00
|
|
|
#include <csignal>
|
2016-08-24 01:14:32 +08:00
|
|
|
#include <cstdint>
|
2008-10-08 15:23:46 +08:00
|
|
|
#include <cstdio>
|
2008-02-20 19:08:44 +08:00
|
|
|
#include <cstring>
|
2012-12-04 00:50:05 +08:00
|
|
|
#include <map>
|
2019-08-07 18:57:25 +08:00
|
|
|
#include <mutex>
|
2016-08-24 01:14:32 +08:00
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
2007-12-12 14:16:47 +08:00
|
|
|
|
2009-04-13 12:26:06 +08:00
|
|
|
#ifdef HAVE_FFI_CALL
|
2009-02-04 14:26:47 +08:00
|
|
|
#ifdef HAVE_FFI_H
|
|
|
|
#include <ffi.h>
|
2009-04-13 12:26:06 +08:00
|
|
|
#define USE_LIBFFI
|
2009-02-04 14:26:47 +08:00
|
|
|
#elif HAVE_FFI_FFI_H
|
|
|
|
#include <ffi/ffi.h>
|
2009-04-13 12:26:06 +08:00
|
|
|
#define USE_LIBFFI
|
2009-02-04 14:26:47 +08:00
|
|
|
#endif
|
2007-12-12 14:16:47 +08:00
|
|
|
#endif
|
2009-01-23 04:09:20 +08:00
|
|
|
|
2003-12-15 07:25:48 +08:00
|
|
|
using namespace llvm;
|
2003-11-12 06:41:34 +08:00
|
|
|
|
2009-06-23 06:30:56 +08:00
|
|
|
static ManagedStatic<sys::Mutex> FunctionsLock;
|
|
|
|
|
2015-06-14 03:50:29 +08:00
|
|
|
typedef GenericValue (*ExFunc)(FunctionType *, ArrayRef<GenericValue>);
|
2009-02-04 14:26:47 +08:00
|
|
|
static ManagedStatic<std::map<const Function *, ExFunc> > ExportedFunctions;
|
2014-09-20 05:07:01 +08:00
|
|
|
static ManagedStatic<std::map<std::string, ExFunc> > FuncNames;
|
2001-09-10 12:50:17 +08:00
|
|
|
|
2009-04-13 12:26:06 +08:00
|
|
|
#ifdef USE_LIBFFI
|
2009-08-13 06:10:57 +08:00
|
|
|
typedef void (*RawFunc)();
|
2009-02-04 14:26:47 +08:00
|
|
|
static ManagedStatic<std::map<const Function *, RawFunc> > RawFunctions;
|
|
|
|
#endif
|
|
|
|
|
2001-10-27 12:15:57 +08:00
|
|
|
static Interpreter *TheInterpreter;
|
|
|
|
|
2011-07-18 12:54:35 +08:00
|
|
|
static char getTypeID(Type *Ty) {
|
2004-06-18 02:19:28 +08:00
|
|
|
switch (Ty->getTypeID()) {
|
2001-09-10 12:50:17 +08:00
|
|
|
case Type::VoidTyID: return 'V';
|
For PR1064:
Implement the arbitrary bit-width integer feature. The feature allows
integers of any bitwidth (up to 64) to be defined instead of just 1, 8,
16, 32, and 64 bit integers.
This change does several things:
1. Introduces a new Derived Type, IntegerType, to represent the number of
bits in an integer. The Type classes SubclassData field is used to
store the number of bits. This allows 2^23 bits in an integer type.
2. Removes the five integer Type::TypeID values for the 1, 8, 16, 32 and
64-bit integers. These are replaced with just IntegerType which is not
a primitive any more.
3. Adjust the rest of LLVM to account for this change.
Note that while this incremental change lays the foundation for arbitrary
bit-width integers, LLVM has not yet been converted to actually deal with
them in any significant way. Most optimization passes, for example, will
still only deal with the byte-width integer types. Future increments
will rectify this situation.
llvm-svn: 33113
2007-01-12 15:05:14 +08:00
|
|
|
case Type::IntegerTyID:
|
|
|
|
switch (cast<IntegerType>(Ty)->getBitWidth()) {
|
|
|
|
case 1: return 'o';
|
|
|
|
case 8: return 'B';
|
|
|
|
case 16: return 'S';
|
|
|
|
case 32: return 'I';
|
|
|
|
case 64: return 'L';
|
|
|
|
default: return 'N';
|
|
|
|
}
|
2001-09-10 12:50:17 +08:00
|
|
|
case Type::FloatTyID: return 'F';
|
|
|
|
case Type::DoubleTyID: return 'D';
|
|
|
|
case Type::PointerTyID: return 'P';
|
2006-12-31 13:51:36 +08:00
|
|
|
case Type::FunctionTyID:return 'M';
|
2001-09-10 12:50:17 +08:00
|
|
|
case Type::StructTyID: return 'T';
|
|
|
|
case Type::ArrayTyID: return 'A';
|
|
|
|
default: return 'U';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-31 07:03:25 +08:00
|
|
|
// Try to find address of external function given a Function object.
|
|
|
|
// Please note, that interpreter doesn't know how to assemble a
|
|
|
|
// real call in general case (this is JIT job), that's why it assumes,
|
|
|
|
// that all external functions has the same (and pretty "general") signature.
|
|
|
|
// The typical example of such functions are "lle_X_" ones.
|
2003-10-11 01:03:10 +08:00
|
|
|
static ExFunc lookupFunction(const Function *F) {
|
2001-09-10 12:50:17 +08:00
|
|
|
// Function not found, look it up... start by figuring out what the
|
|
|
|
// composite function name should be.
|
2002-01-21 06:54:45 +08:00
|
|
|
std::string ExtName = "lle_";
|
2011-07-18 12:54:35 +08:00
|
|
|
FunctionType *FT = F->getFunctionType();
|
2019-01-11 00:07:20 +08:00
|
|
|
ExtName += getTypeID(FT->getReturnType());
|
|
|
|
for (Type *T : FT->params())
|
|
|
|
ExtName += getTypeID(T);
|
2015-03-30 23:42:36 +08:00
|
|
|
ExtName += ("_" + F->getName()).str();
|
2001-09-10 12:50:17 +08:00
|
|
|
|
2009-07-08 02:33:04 +08:00
|
|
|
sys::ScopedLock Writer(*FunctionsLock);
|
2014-09-20 05:07:01 +08:00
|
|
|
ExFunc FnPtr = (*FuncNames)[ExtName];
|
2014-04-24 14:44:33 +08:00
|
|
|
if (!FnPtr)
|
2015-03-30 23:42:36 +08:00
|
|
|
FnPtr = (*FuncNames)[("lle_X_" + F->getName()).str()];
|
2014-04-24 14:44:33 +08:00
|
|
|
if (!FnPtr) // Try calling a generic function... if it exists...
|
2015-03-30 23:42:36 +08:00
|
|
|
FnPtr = (ExFunc)(intptr_t)sys::DynamicLibrary::SearchForAddressOfSymbol(
|
|
|
|
("lle_X_" + F->getName()).str());
|
2014-04-24 14:44:33 +08:00
|
|
|
if (FnPtr)
|
2009-02-04 14:26:47 +08:00
|
|
|
ExportedFunctions->insert(std::make_pair(F, FnPtr)); // Cache for later
|
2001-09-10 12:50:17 +08:00
|
|
|
return FnPtr;
|
|
|
|
}
|
|
|
|
|
2009-04-13 12:26:06 +08:00
|
|
|
#ifdef USE_LIBFFI
|
2011-07-18 12:54:35 +08:00
|
|
|
static ffi_type *ffiTypeFor(Type *Ty) {
|
2009-02-04 14:26:47 +08:00
|
|
|
switch (Ty->getTypeID()) {
|
|
|
|
case Type::VoidTyID: return &ffi_type_void;
|
|
|
|
case Type::IntegerTyID:
|
|
|
|
switch (cast<IntegerType>(Ty)->getBitWidth()) {
|
|
|
|
case 8: return &ffi_type_sint8;
|
|
|
|
case 16: return &ffi_type_sint16;
|
|
|
|
case 32: return &ffi_type_sint32;
|
|
|
|
case 64: return &ffi_type_sint64;
|
|
|
|
}
|
2021-06-09 00:33:59 +08:00
|
|
|
llvm_unreachable("Unhandled integer type bitwidth");
|
2009-02-04 14:26:47 +08:00
|
|
|
case Type::FloatTyID: return &ffi_type_float;
|
|
|
|
case Type::DoubleTyID: return &ffi_type_double;
|
|
|
|
case Type::PointerTyID: return &ffi_type_pointer;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
// TODO: Support other types such as StructTyID, ArrayTyID, OpaqueTyID, etc.
|
2010-04-08 06:58:41 +08:00
|
|
|
report_fatal_error("Type could not be mapped for use with libffi.");
|
2009-02-04 14:26:47 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-07-18 12:54:35 +08:00
|
|
|
static void *ffiValueFor(Type *Ty, const GenericValue &AV,
|
2009-02-04 14:26:47 +08:00
|
|
|
void *ArgDataPtr) {
|
|
|
|
switch (Ty->getTypeID()) {
|
|
|
|
case Type::IntegerTyID:
|
|
|
|
switch (cast<IntegerType>(Ty)->getBitWidth()) {
|
|
|
|
case 8: {
|
|
|
|
int8_t *I8Ptr = (int8_t *) ArgDataPtr;
|
|
|
|
*I8Ptr = (int8_t) AV.IntVal.getZExtValue();
|
|
|
|
return ArgDataPtr;
|
|
|
|
}
|
|
|
|
case 16: {
|
|
|
|
int16_t *I16Ptr = (int16_t *) ArgDataPtr;
|
|
|
|
*I16Ptr = (int16_t) AV.IntVal.getZExtValue();
|
|
|
|
return ArgDataPtr;
|
|
|
|
}
|
|
|
|
case 32: {
|
|
|
|
int32_t *I32Ptr = (int32_t *) ArgDataPtr;
|
|
|
|
*I32Ptr = (int32_t) AV.IntVal.getZExtValue();
|
|
|
|
return ArgDataPtr;
|
|
|
|
}
|
|
|
|
case 64: {
|
|
|
|
int64_t *I64Ptr = (int64_t *) ArgDataPtr;
|
|
|
|
*I64Ptr = (int64_t) AV.IntVal.getZExtValue();
|
|
|
|
return ArgDataPtr;
|
|
|
|
}
|
|
|
|
}
|
2021-06-09 00:33:59 +08:00
|
|
|
llvm_unreachable("Unhandled integer type bitwidth");
|
2009-02-04 14:26:47 +08:00
|
|
|
case Type::FloatTyID: {
|
|
|
|
float *FloatPtr = (float *) ArgDataPtr;
|
2009-11-18 13:43:15 +08:00
|
|
|
*FloatPtr = AV.FloatVal;
|
2009-02-04 14:26:47 +08:00
|
|
|
return ArgDataPtr;
|
|
|
|
}
|
|
|
|
case Type::DoubleTyID: {
|
|
|
|
double *DoublePtr = (double *) ArgDataPtr;
|
|
|
|
*DoublePtr = AV.DoubleVal;
|
|
|
|
return ArgDataPtr;
|
|
|
|
}
|
|
|
|
case Type::PointerTyID: {
|
|
|
|
void **PtrPtr = (void **) ArgDataPtr;
|
|
|
|
*PtrPtr = GVTOP(AV);
|
|
|
|
return ArgDataPtr;
|
|
|
|
}
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
// TODO: Support other types such as StructTyID, ArrayTyID, OpaqueTyID, etc.
|
2010-04-08 06:58:41 +08:00
|
|
|
report_fatal_error("Type value could not be mapped for use with libffi.");
|
2009-02-04 14:26:47 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-06-14 03:50:29 +08:00
|
|
|
static bool ffiInvoke(RawFunc Fn, Function *F, ArrayRef<GenericValue> ArgVals,
|
2015-07-17 00:34:23 +08:00
|
|
|
const DataLayout &TD, GenericValue &Result) {
|
2009-02-04 14:26:47 +08:00
|
|
|
ffi_cif cif;
|
2011-07-18 12:54:35 +08:00
|
|
|
FunctionType *FTy = F->getFunctionType();
|
2009-02-04 14:26:47 +08:00
|
|
|
const unsigned NumArgs = F->arg_size();
|
|
|
|
|
|
|
|
// TODO: We don't have type information about the remaining arguments, because
|
|
|
|
// this information is never passed into ExecutionEngine::runFunction().
|
|
|
|
if (ArgVals.size() > NumArgs && F->isVarArg()) {
|
2010-04-08 06:58:41 +08:00
|
|
|
report_fatal_error("Calling external var arg function '" + F->getName()
|
2009-07-11 21:10:19 +08:00
|
|
|
+ "' is not supported by the Interpreter.");
|
2009-02-04 14:26:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned ArgBytes = 0;
|
|
|
|
|
|
|
|
std::vector<ffi_type*> args(NumArgs);
|
|
|
|
for (Function::const_arg_iterator A = F->arg_begin(), E = F->arg_end();
|
|
|
|
A != E; ++A) {
|
|
|
|
const unsigned ArgNo = A->getArgNo();
|
2011-07-18 12:54:35 +08:00
|
|
|
Type *ArgTy = FTy->getParamType(ArgNo);
|
2009-02-04 14:26:47 +08:00
|
|
|
args[ArgNo] = ffiTypeFor(ArgTy);
|
2015-07-17 06:23:09 +08:00
|
|
|
ArgBytes += TD.getTypeStoreSize(ArgTy);
|
2009-02-04 14:26:47 +08:00
|
|
|
}
|
|
|
|
|
2009-09-19 00:46:16 +08:00
|
|
|
SmallVector<uint8_t, 128> ArgData;
|
|
|
|
ArgData.resize(ArgBytes);
|
|
|
|
uint8_t *ArgDataPtr = ArgData.data();
|
|
|
|
SmallVector<void*, 16> values(NumArgs);
|
2009-02-04 14:26:47 +08:00
|
|
|
for (Function::const_arg_iterator A = F->arg_begin(), E = F->arg_end();
|
|
|
|
A != E; ++A) {
|
|
|
|
const unsigned ArgNo = A->getArgNo();
|
2011-07-18 12:54:35 +08:00
|
|
|
Type *ArgTy = FTy->getParamType(ArgNo);
|
2009-02-04 14:26:47 +08:00
|
|
|
values[ArgNo] = ffiValueFor(ArgTy, ArgVals[ArgNo], ArgDataPtr);
|
2015-07-17 06:23:09 +08:00
|
|
|
ArgDataPtr += TD.getTypeStoreSize(ArgTy);
|
2009-02-04 14:26:47 +08:00
|
|
|
}
|
|
|
|
|
2011-07-18 12:54:35 +08:00
|
|
|
Type *RetTy = FTy->getReturnType();
|
2009-02-04 14:26:47 +08:00
|
|
|
ffi_type *rtype = ffiTypeFor(RetTy);
|
|
|
|
|
2018-11-20 09:01:26 +08:00
|
|
|
if (ffi_prep_cif(&cif, FFI_DEFAULT_ABI, NumArgs, rtype, args.data()) ==
|
|
|
|
FFI_OK) {
|
2009-09-19 00:46:16 +08:00
|
|
|
SmallVector<uint8_t, 128> ret;
|
2009-02-04 14:26:47 +08:00
|
|
|
if (RetTy->getTypeID() != Type::VoidTyID)
|
2015-07-17 06:23:09 +08:00
|
|
|
ret.resize(TD.getTypeStoreSize(RetTy));
|
2009-09-19 00:46:16 +08:00
|
|
|
ffi_call(&cif, Fn, ret.data(), values.data());
|
2009-02-04 14:26:47 +08:00
|
|
|
switch (RetTy->getTypeID()) {
|
|
|
|
case Type::IntegerTyID:
|
|
|
|
switch (cast<IntegerType>(RetTy)->getBitWidth()) {
|
2009-09-19 00:46:16 +08:00
|
|
|
case 8: Result.IntVal = APInt(8 , *(int8_t *) ret.data()); break;
|
|
|
|
case 16: Result.IntVal = APInt(16, *(int16_t*) ret.data()); break;
|
|
|
|
case 32: Result.IntVal = APInt(32, *(int32_t*) ret.data()); break;
|
|
|
|
case 64: Result.IntVal = APInt(64, *(int64_t*) ret.data()); break;
|
2009-02-04 14:26:47 +08:00
|
|
|
}
|
|
|
|
break;
|
2009-09-19 00:46:16 +08:00
|
|
|
case Type::FloatTyID: Result.FloatVal = *(float *) ret.data(); break;
|
|
|
|
case Type::DoubleTyID: Result.DoubleVal = *(double*) ret.data(); break;
|
|
|
|
case Type::PointerTyID: Result.PointerVal = *(void **) ret.data(); break;
|
2009-02-04 14:26:47 +08:00
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2009-04-13 12:26:06 +08:00
|
|
|
#endif // USE_LIBFFI
|
2009-02-04 14:26:47 +08:00
|
|
|
|
2005-01-22 03:59:37 +08:00
|
|
|
GenericValue Interpreter::callExternalFunction(Function *F,
|
2015-06-14 03:50:29 +08:00
|
|
|
ArrayRef<GenericValue> ArgVals) {
|
2001-10-27 12:15:57 +08:00
|
|
|
TheInterpreter = this;
|
|
|
|
|
2019-08-07 18:57:25 +08:00
|
|
|
std::unique_lock<sys::Mutex> Guard(*FunctionsLock);
|
2009-06-23 06:30:56 +08:00
|
|
|
|
2002-04-08 04:49:59 +08:00
|
|
|
// Do a lookup to see if the function is in our cache... this should just be a
|
2003-10-11 01:42:19 +08:00
|
|
|
// deferred annotation!
|
2009-02-04 14:26:47 +08:00
|
|
|
std::map<const Function *, ExFunc>::iterator FI = ExportedFunctions->find(F);
|
|
|
|
if (ExFunc Fn = (FI == ExportedFunctions->end()) ? lookupFunction(F)
|
2009-06-23 06:30:56 +08:00
|
|
|
: FI->second) {
|
2014-08-24 07:07:14 +08:00
|
|
|
Guard.unlock();
|
2009-02-04 14:26:47 +08:00
|
|
|
return Fn(F->getFunctionType(), ArgVals);
|
2009-06-23 06:30:56 +08:00
|
|
|
}
|
2009-02-04 14:26:47 +08:00
|
|
|
|
2009-04-13 12:26:06 +08:00
|
|
|
#ifdef USE_LIBFFI
|
2009-02-04 14:26:47 +08:00
|
|
|
std::map<const Function *, RawFunc>::iterator RF = RawFunctions->find(F);
|
|
|
|
RawFunc RawFn;
|
|
|
|
if (RF == RawFunctions->end()) {
|
|
|
|
RawFn = (RawFunc)(intptr_t)
|
2020-02-01 22:36:51 +08:00
|
|
|
sys::DynamicLibrary::SearchForAddressOfSymbol(std::string(F->getName()));
|
2010-03-31 04:15:13 +08:00
|
|
|
if (!RawFn)
|
2010-07-12 16:16:59 +08:00
|
|
|
RawFn = (RawFunc)(intptr_t)getPointerToGlobalIfAvailable(F);
|
2009-02-04 14:26:47 +08:00
|
|
|
if (RawFn != 0)
|
|
|
|
RawFunctions->insert(std::make_pair(F, RawFn)); // Cache for later
|
|
|
|
} else {
|
|
|
|
RawFn = RF->second;
|
2001-09-10 12:50:17 +08:00
|
|
|
}
|
2009-09-17 08:14:44 +08:00
|
|
|
|
2014-08-24 07:07:14 +08:00
|
|
|
Guard.unlock();
|
2001-09-10 12:50:17 +08:00
|
|
|
|
2009-02-04 14:26:47 +08:00
|
|
|
GenericValue Result;
|
2012-10-09 00:38:25 +08:00
|
|
|
if (RawFn != 0 && ffiInvoke(RawFn, F, ArgVals, getDataLayout(), Result))
|
2009-02-04 14:26:47 +08:00
|
|
|
return Result;
|
2009-04-13 12:26:06 +08:00
|
|
|
#endif // USE_LIBFFI
|
2009-02-04 14:26:47 +08:00
|
|
|
|
2009-07-11 21:10:19 +08:00
|
|
|
if (F->getName() == "__main")
|
2010-01-05 09:53:59 +08:00
|
|
|
errs() << "Tried to execute an unknown external function: "
|
2011-06-19 05:18:23 +08:00
|
|
|
<< *F->getType() << " __main\n";
|
2009-07-11 21:10:19 +08:00
|
|
|
else
|
2010-04-08 06:58:41 +08:00
|
|
|
report_fatal_error("Tried to execute an unknown external function: " +
|
2011-06-19 05:18:23 +08:00
|
|
|
F->getName());
|
2009-11-17 15:52:09 +08:00
|
|
|
#ifndef USE_LIBFFI
|
2010-01-05 09:53:59 +08:00
|
|
|
errs() << "Recompiling LLVM with --enable-libffi might help.\n";
|
2009-11-17 15:52:09 +08:00
|
|
|
#endif
|
2009-02-04 14:26:47 +08:00
|
|
|
return GenericValue();
|
2001-09-10 12:50:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
2002-03-29 11:57:15 +08:00
|
|
|
// Functions "exported" to the running application...
|
2001-09-10 12:50:17 +08:00
|
|
|
//
|
2009-08-08 04:50:09 +08:00
|
|
|
|
2003-05-14 22:21:30 +08:00
|
|
|
// void atexit(Function*)
|
2015-06-14 03:50:29 +08:00
|
|
|
static GenericValue lle_X_atexit(FunctionType *FT,
|
|
|
|
ArrayRef<GenericValue> Args) {
|
2003-05-14 22:21:30 +08:00
|
|
|
assert(Args.size() == 1);
|
|
|
|
TheInterpreter->addAtExitHandler((Function*)GVTOP(Args[0]));
|
|
|
|
GenericValue GV;
|
2007-03-06 11:08:12 +08:00
|
|
|
GV.IntVal = 0;
|
2003-05-14 22:21:30 +08:00
|
|
|
return GV;
|
2001-10-19 05:55:32 +08:00
|
|
|
}
|
|
|
|
|
2002-10-03 05:12:13 +08:00
|
|
|
// void exit(int)
|
2015-06-14 03:50:29 +08:00
|
|
|
static GenericValue lle_X_exit(FunctionType *FT, ArrayRef<GenericValue> Args) {
|
2001-10-27 12:15:57 +08:00
|
|
|
TheInterpreter->exitCalled(Args[0]);
|
|
|
|
return GenericValue();
|
|
|
|
}
|
|
|
|
|
2002-10-03 05:12:13 +08:00
|
|
|
// void abort(void)
|
2015-06-14 03:50:29 +08:00
|
|
|
static GenericValue lle_X_abort(FunctionType *FT, ArrayRef<GenericValue> Args) {
|
2009-07-11 21:10:19 +08:00
|
|
|
//FIXME: should we report or raise here?
|
2010-04-08 06:58:41 +08:00
|
|
|
//report_fatal_error("Interpreted program raised SIGABRT");
|
2003-11-05 09:18:49 +08:00
|
|
|
raise (SIGABRT);
|
2002-05-21 05:17:16 +08:00
|
|
|
return GenericValue();
|
|
|
|
}
|
|
|
|
|
2009-02-04 14:26:47 +08:00
|
|
|
// int sprintf(char *, const char *, ...) - a very rough implementation to make
|
2001-12-13 08:43:47 +08:00
|
|
|
// output useful.
|
2015-06-14 03:50:29 +08:00
|
|
|
static GenericValue lle_X_sprintf(FunctionType *FT,
|
|
|
|
ArrayRef<GenericValue> Args) {
|
2003-01-13 08:59:47 +08:00
|
|
|
char *OutputBuffer = (char *)GVTOP(Args[0]);
|
|
|
|
const char *FmtStr = (const char *)GVTOP(Args[1]);
|
2001-12-13 08:43:47 +08:00
|
|
|
unsigned ArgNo = 2;
|
2001-10-30 04:27:45 +08:00
|
|
|
|
|
|
|
// printf should return # chars printed. This is completely incorrect, but
|
|
|
|
// close enough for now.
|
2009-09-17 08:14:44 +08:00
|
|
|
GenericValue GV;
|
2007-03-06 11:08:12 +08:00
|
|
|
GV.IntVal = APInt(32, strlen(FmtStr));
|
2016-08-24 01:14:32 +08:00
|
|
|
while (true) {
|
2001-10-30 04:27:45 +08:00
|
|
|
switch (*FmtStr) {
|
|
|
|
case 0: return GV; // Null terminator...
|
|
|
|
default: // Normal nonspecial character
|
2001-12-13 08:43:47 +08:00
|
|
|
sprintf(OutputBuffer++, "%c", *FmtStr++);
|
2001-10-30 04:27:45 +08:00
|
|
|
break;
|
|
|
|
case '\\': { // Handle escape codes
|
2001-12-13 08:43:47 +08:00
|
|
|
sprintf(OutputBuffer, "%c%c", *FmtStr, *(FmtStr+1));
|
|
|
|
FmtStr += 2; OutputBuffer += 2;
|
2001-10-30 04:27:45 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case '%': { // Handle format specifiers
|
2001-11-08 03:46:27 +08:00
|
|
|
char FmtBuf[100] = "", Buffer[1000] = "";
|
|
|
|
char *FB = FmtBuf;
|
|
|
|
*FB++ = *FmtStr++;
|
|
|
|
char Last = *FB++ = *FmtStr++;
|
|
|
|
unsigned HowLong = 0;
|
|
|
|
while (Last != 'c' && Last != 'd' && Last != 'i' && Last != 'u' &&
|
|
|
|
Last != 'o' && Last != 'x' && Last != 'X' && Last != 'e' &&
|
|
|
|
Last != 'E' && Last != 'g' && Last != 'G' && Last != 'f' &&
|
|
|
|
Last != 'p' && Last != 's' && Last != '%') {
|
|
|
|
if (Last == 'l' || Last == 'L') HowLong++; // Keep track of l's
|
|
|
|
Last = *FB++ = *FmtStr++;
|
2001-10-30 04:27:45 +08:00
|
|
|
}
|
2001-11-08 03:46:27 +08:00
|
|
|
*FB = 0;
|
2005-04-22 06:43:08 +08:00
|
|
|
|
2001-11-08 03:46:27 +08:00
|
|
|
switch (Last) {
|
|
|
|
case '%':
|
2010-01-29 02:04:38 +08:00
|
|
|
memcpy(Buffer, "%", 2); break;
|
2001-11-08 03:46:27 +08:00
|
|
|
case 'c':
|
2007-03-06 11:08:12 +08:00
|
|
|
sprintf(Buffer, FmtBuf, uint32_t(Args[ArgNo++].IntVal.getZExtValue()));
|
|
|
|
break;
|
2001-11-08 03:46:27 +08:00
|
|
|
case 'd': case 'i':
|
|
|
|
case 'u': case 'o':
|
|
|
|
case 'x': case 'X':
|
2002-08-03 07:08:32 +08:00
|
|
|
if (HowLong >= 1) {
|
2003-08-24 22:02:47 +08:00
|
|
|
if (HowLong == 1 &&
|
2015-07-17 00:34:23 +08:00
|
|
|
TheInterpreter->getDataLayout().getPointerSizeInBits() == 64 &&
|
2006-05-25 03:21:13 +08:00
|
|
|
sizeof(long) < sizeof(int64_t)) {
|
2002-08-03 07:08:32 +08:00
|
|
|
// Make sure we use %lld with a 64 bit argument because we might be
|
|
|
|
// compiling LLI on a 32 bit compiler.
|
|
|
|
unsigned Size = strlen(FmtBuf);
|
|
|
|
FmtBuf[Size] = FmtBuf[Size-1];
|
|
|
|
FmtBuf[Size+1] = 0;
|
|
|
|
FmtBuf[Size-1] = 'l';
|
|
|
|
}
|
2007-03-06 11:08:12 +08:00
|
|
|
sprintf(Buffer, FmtBuf, Args[ArgNo++].IntVal.getZExtValue());
|
2002-08-03 07:08:32 +08:00
|
|
|
} else
|
2007-03-06 11:08:12 +08:00
|
|
|
sprintf(Buffer, FmtBuf,uint32_t(Args[ArgNo++].IntVal.getZExtValue()));
|
|
|
|
break;
|
2001-11-08 03:46:27 +08:00
|
|
|
case 'e': case 'E': case 'g': case 'G': case 'f':
|
|
|
|
sprintf(Buffer, FmtBuf, Args[ArgNo++].DoubleVal); break;
|
|
|
|
case 'p':
|
2003-01-13 08:59:47 +08:00
|
|
|
sprintf(Buffer, FmtBuf, (void*)GVTOP(Args[ArgNo++])); break;
|
2005-04-22 06:43:08 +08:00
|
|
|
case 's':
|
2003-01-13 08:59:47 +08:00
|
|
|
sprintf(Buffer, FmtBuf, (char*)GVTOP(Args[ArgNo++])); break;
|
2009-08-23 16:43:55 +08:00
|
|
|
default:
|
2010-01-05 09:53:59 +08:00
|
|
|
errs() << "<unknown printf code '" << *FmtStr << "'!>";
|
2001-11-08 03:46:27 +08:00
|
|
|
ArgNo++; break;
|
|
|
|
}
|
2010-01-29 02:04:38 +08:00
|
|
|
size_t Len = strlen(Buffer);
|
|
|
|
memcpy(OutputBuffer, Buffer, Len + 1);
|
|
|
|
OutputBuffer += Len;
|
2001-10-30 04:27:45 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-09-02 14:40:09 +08:00
|
|
|
return GV;
|
2001-10-30 04:27:45 +08:00
|
|
|
}
|
|
|
|
|
2009-02-04 14:26:47 +08:00
|
|
|
// int printf(const char *, ...) - a very rough implementation to make output
|
|
|
|
// useful.
|
2015-06-14 03:50:29 +08:00
|
|
|
static GenericValue lle_X_printf(FunctionType *FT,
|
|
|
|
ArrayRef<GenericValue> Args) {
|
2001-12-13 08:43:47 +08:00
|
|
|
char Buffer[10000];
|
2009-02-04 14:26:47 +08:00
|
|
|
std::vector<GenericValue> NewArgs;
|
2007-04-22 01:11:45 +08:00
|
|
|
NewArgs.push_back(PTOGV((void*)&Buffer[0]));
|
2021-01-07 10:27:33 +08:00
|
|
|
llvm::append_range(NewArgs, Args);
|
2007-03-31 00:41:50 +08:00
|
|
|
GenericValue GV = lle_X_sprintf(FT, NewArgs);
|
2009-08-23 16:43:55 +08:00
|
|
|
outs() << Buffer;
|
2001-12-13 08:43:47 +08:00
|
|
|
return GV;
|
|
|
|
}
|
|
|
|
|
2002-03-09 06:51:07 +08:00
|
|
|
// int sscanf(const char *format, ...);
|
2015-06-14 03:50:29 +08:00
|
|
|
static GenericValue lle_X_sscanf(FunctionType *FT,
|
|
|
|
ArrayRef<GenericValue> args) {
|
2002-03-09 06:51:07 +08:00
|
|
|
assert(args.size() < 10 && "Only handle up to 10 args to sscanf right now!");
|
|
|
|
|
2003-04-01 06:12:37 +08:00
|
|
|
char *Args[10];
|
2002-03-09 06:51:07 +08:00
|
|
|
for (unsigned i = 0; i < args.size(); ++i)
|
2003-04-01 06:12:37 +08:00
|
|
|
Args[i] = (char*)GVTOP(args[i]);
|
2002-03-09 06:51:07 +08:00
|
|
|
|
|
|
|
GenericValue GV;
|
2007-03-06 11:08:12 +08:00
|
|
|
GV.IntVal = APInt(32, sscanf(Args[0], Args[1], Args[2], Args[3], Args[4],
|
2013-09-02 14:40:09 +08:00
|
|
|
Args[5], Args[6], Args[7], Args[8], Args[9]));
|
2003-04-01 06:12:37 +08:00
|
|
|
return GV;
|
|
|
|
}
|
|
|
|
|
|
|
|
// int scanf(const char *format, ...);
|
2015-06-14 03:50:29 +08:00
|
|
|
static GenericValue lle_X_scanf(FunctionType *FT, ArrayRef<GenericValue> args) {
|
2003-04-01 06:12:37 +08:00
|
|
|
assert(args.size() < 10 && "Only handle up to 10 args to scanf right now!");
|
|
|
|
|
|
|
|
char *Args[10];
|
|
|
|
for (unsigned i = 0; i < args.size(); ++i)
|
|
|
|
Args[i] = (char*)GVTOP(args[i]);
|
|
|
|
|
|
|
|
GenericValue GV;
|
2007-03-06 11:08:12 +08:00
|
|
|
GV.IntVal = APInt(32, scanf( Args[0], Args[1], Args[2], Args[3], Args[4],
|
2013-09-02 14:40:09 +08:00
|
|
|
Args[5], Args[6], Args[7], Args[8], Args[9]));
|
2002-03-09 06:51:07 +08:00
|
|
|
return GV;
|
|
|
|
}
|
|
|
|
|
2009-02-04 14:26:47 +08:00
|
|
|
// int fprintf(FILE *, const char *, ...) - a very rough implementation to make
|
|
|
|
// output useful.
|
2015-06-14 03:50:29 +08:00
|
|
|
static GenericValue lle_X_fprintf(FunctionType *FT,
|
|
|
|
ArrayRef<GenericValue> Args) {
|
2003-04-22 06:43:20 +08:00
|
|
|
assert(Args.size() >= 2);
|
2002-11-07 07:05:03 +08:00
|
|
|
char Buffer[10000];
|
2009-02-04 14:26:47 +08:00
|
|
|
std::vector<GenericValue> NewArgs;
|
2003-01-13 08:59:47 +08:00
|
|
|
NewArgs.push_back(PTOGV(Buffer));
|
2002-11-07 07:05:03 +08:00
|
|
|
NewArgs.insert(NewArgs.end(), Args.begin()+1, Args.end());
|
2007-03-31 00:41:50 +08:00
|
|
|
GenericValue GV = lle_X_sprintf(FT, NewArgs);
|
2002-11-07 07:05:03 +08:00
|
|
|
|
2009-02-04 14:26:47 +08:00
|
|
|
fputs(Buffer, (FILE *) GVTOP(Args[0]));
|
2002-11-07 07:05:03 +08:00
|
|
|
return GV;
|
|
|
|
}
|
|
|
|
|
2013-09-11 20:42:39 +08:00
|
|
|
static GenericValue lle_X_memset(FunctionType *FT,
|
2015-06-14 03:50:29 +08:00
|
|
|
ArrayRef<GenericValue> Args) {
|
2013-09-02 14:40:09 +08:00
|
|
|
int val = (int)Args[1].IntVal.getSExtValue();
|
|
|
|
size_t len = (size_t)Args[2].IntVal.getZExtValue();
|
2013-09-11 20:42:39 +08:00
|
|
|
memset((void *)GVTOP(Args[0]), val, len);
|
2013-09-02 14:40:09 +08:00
|
|
|
// llvm.memset.* returns void, lle_X_* returns GenericValue,
|
|
|
|
// so here we return GenericValue with IntVal set to zero
|
|
|
|
GenericValue GV;
|
|
|
|
GV.IntVal = 0;
|
|
|
|
return GV;
|
|
|
|
}
|
|
|
|
|
2013-09-11 20:42:39 +08:00
|
|
|
static GenericValue lle_X_memcpy(FunctionType *FT,
|
2015-06-14 03:50:29 +08:00
|
|
|
ArrayRef<GenericValue> Args) {
|
2013-09-02 14:40:09 +08:00
|
|
|
memcpy(GVTOP(Args[0]), GVTOP(Args[1]),
|
|
|
|
(size_t)(Args[2].IntVal.getLimitedValue()));
|
|
|
|
|
2013-09-11 20:42:39 +08:00
|
|
|
// llvm.memcpy* returns void, lle_X_* returns GenericValue,
|
2013-09-02 14:40:09 +08:00
|
|
|
// so here we return GenericValue with IntVal set to zero
|
|
|
|
GenericValue GV;
|
|
|
|
GV.IntVal = 0;
|
|
|
|
return GV;
|
|
|
|
}
|
|
|
|
|
2003-05-09 00:18:31 +08:00
|
|
|
void Interpreter::initializeExternalFunctions() {
|
2009-07-08 02:33:04 +08:00
|
|
|
sys::ScopedLock Writer(*FunctionsLock);
|
2014-09-20 05:07:01 +08:00
|
|
|
(*FuncNames)["lle_X_atexit"] = lle_X_atexit;
|
|
|
|
(*FuncNames)["lle_X_exit"] = lle_X_exit;
|
|
|
|
(*FuncNames)["lle_X_abort"] = lle_X_abort;
|
|
|
|
|
|
|
|
(*FuncNames)["lle_X_printf"] = lle_X_printf;
|
|
|
|
(*FuncNames)["lle_X_sprintf"] = lle_X_sprintf;
|
|
|
|
(*FuncNames)["lle_X_sscanf"] = lle_X_sscanf;
|
|
|
|
(*FuncNames)["lle_X_scanf"] = lle_X_scanf;
|
|
|
|
(*FuncNames)["lle_X_fprintf"] = lle_X_fprintf;
|
|
|
|
(*FuncNames)["lle_X_memset"] = lle_X_memset;
|
|
|
|
(*FuncNames)["lle_X_memcpy"] = lle_X_memcpy;
|
2001-10-31 04:28:00 +08:00
|
|
|
}
|