HomeSort by relevance Sort by last modified time
    Searched refs:FPtr (Results 1 - 18 of 18) sorted by null

  /external/llvm/lib/ExecutionEngine/JIT/
JIT.cpp 241 void *FPtr = getPointerToFunction(F);
242 assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
261 (int(*)(int, char **, const char **))(intptr_t)FPtr;
274 int (*PF)(int, char **) = (int(*)(int, char **))(intptr_t)FPtr;
286 int (*PF)(int) = (int(*)(int))(intptr_t)FPtr;
292 int (*PF)(char *) = (int(*)(char *))(intptr_t)FPtr;
308 rv.IntVal = APInt(BitWidth, ((bool(*)())(intptr_t)FPtr)());
310 rv.IntVal = APInt(BitWidth, ((char(*)())(intptr_t)FPtr)());
312 rv.IntVal = APInt(BitWidth, ((short(*)())(intptr_t)FPtr)());
314 rv.IntVal = APInt(BitWidth, ((int(*)())(intptr_t)FPtr)());
    [all...]
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.cpp 436 void *FPtr = getPointerToFunction(F);
437 assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
456 (int(*)(int, char **, const char **))(intptr_t)FPtr;
469 int (*PF)(int, char **) = (int(*)(int, char **))(intptr_t)FPtr;
482 int (*PF)(int) = (int(*)(int))(intptr_t)FPtr;
498 rv.IntVal = APInt(BitWidth, ((bool(*)())(intptr_t)FPtr)());
500 rv.IntVal = APInt(BitWidth, ((char(*)())(intptr_t)FPtr)());
502 rv.IntVal = APInt(BitWidth, ((short(*)())(intptr_t)FPtr)());
504 rv.IntVal = APInt(BitWidth, ((int(*)())(intptr_t)FPtr)());
506 rv.IntVal = APInt(BitWidth, ((int64_t(*)())(intptr_t)FPtr)());
    [all...]
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITMultipleModuleTest.cpp 59 int32_t (*FPtr)(int32_t) = (int32_t (*)(int32_t))(intptr_t)ptr;
60 EXPECT_EQ(0, FPtr(0));
61 EXPECT_EQ(1, FPtr(1));
62 EXPECT_EQ(3, FPtr(2));
63 EXPECT_EQ(6, FPtr(3));
64 EXPECT_EQ(10, FPtr(4));
65 EXPECT_EQ(15, FPtr(5));
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 517 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
521 double (*FP)() = (double (*)())(intptr_t)FPtr;
  /external/llvm/lib/IR/
GCOV.cpp 95 for (const auto &FPtr : Functions)
96 FPtr->dump();
102 for (const auto &FPtr : Functions)
103 FPtr->collectLineCounts(FI);
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 762 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
766 double (*FP)() = (double (*)())(intptr_t)FPtr;
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 873 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
877 double (*FP)() = (double (*)())(intptr_t)FPtr;
  /external/clang/test/CXX/drs/
dr2xx.cpp 547 typedef void (*FPtr)(double x[]);
550 FPtr fp = &f<3>;
553 FPtr gp = &g<>;
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 1036 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
1040 double (*FP)() = (double (*)())(intptr_t)FPtr;
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 1064 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
1067 double (*FP)() = (double (*)())(intptr_t)FPtr;
    [all...]
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 1046 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
1049 double (*FP)() = (double (*)())(intptr_t)FPtr;
    [all...]
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp     [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 311 milliseconds