diff options
author | Chris Lattner <sabre@nondot.org> | 2004-08-16 01:07:04 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-08-16 01:07:04 +0000 |
commit | 3361c5da6f456847516d9c968ccec117f20862db (patch) | |
tree | 398d136e005be4a53ff1df3ae9f126181835b609 | |
parent | b1cad0b3bc3fe79c33cf05a0c21de8a9ebe3aec1 (diff) | |
download | bcm5719-llvm-3361c5da6f456847516d9c968ccec117f20862db.tar.gz bcm5719-llvm-3361c5da6f456847516d9c968ccec117f20862db.zip |
Add a special case for argc,argv
llvm-svn: 15802
-rw-r--r-- | llvm/lib/ExecutionEngine/JIT/JIT.cpp | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/llvm/lib/ExecutionEngine/JIT/JIT.cpp b/llvm/lib/ExecutionEngine/JIT/JIT.cpp index d185e00d87c..675ef479d11 100644 --- a/llvm/lib/ExecutionEngine/JIT/JIT.cpp +++ b/llvm/lib/ExecutionEngine/JIT/JIT.cpp @@ -77,8 +77,7 @@ GenericValue JIT::runFunction(Function *F, if (RetTy == Type::IntTy || RetTy == Type::UIntTy || RetTy == Type::VoidTy) { switch (ArgValues.size()) { case 3: - if (FTy->getNumParams() == 3 && - (FTy->getParamType(0) == Type::IntTy || + if ((FTy->getParamType(0) == Type::IntTy || FTy->getParamType(0) == Type::UIntTy) && isa<PointerType>(FTy->getParamType(1)) && isa<PointerType>(FTy->getParamType(2))) { @@ -92,6 +91,18 @@ GenericValue JIT::runFunction(Function *F, return rv; } break; + case 2: + if ((FTy->getParamType(0) == Type::IntTy || + FTy->getParamType(0) == Type::UIntTy) && + isa<PointerType>(FTy->getParamType(1))) { + int (*PF)(int, char **) = (int(*)(int, char **))FPtr; + + // Call the function. + GenericValue rv; + rv.IntVal = PF(ArgValues[0].IntVal, (char **)GVTOP(ArgValues[1])); + return rv; + } + break; case 1: if (FTy->getNumParams() == 1 && (FTy->getParamType(0) == Type::IntTy || |