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

  /external/llvm/lib/ExecutionEngine/Orc/
OrcMCJITReplacement.cpp 31 void *FPtr = getPointerToFunction(F);
32 assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
51 (int (*)(int, char **, const char **))(intptr_t)FPtr;
64 int (*PF)(int, char **) = (int (*)(int, char **))(intptr_t)FPtr;
76 int (*PF)(int) = (int (*)(int))(intptr_t)FPtr;
93 rv.IntVal = APInt(BitWidth, ((bool (*)())(intptr_t)FPtr)());
95 rv.IntVal = APInt(BitWidth, ((char (*)())(intptr_t)FPtr)());
97 rv.IntVal = APInt(BitWidth, ((short (*)())(intptr_t)FPtr)());
99 rv.IntVal = APInt(BitWidth, ((int (*)())(intptr_t)FPtr)());
101 rv.IntVal = APInt(BitWidth, ((int64_t (*)())(intptr_t)FPtr)());
    [all...]
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.cpp 448 void *FPtr = getPointerToFunction(F);
449 assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
468 (int(*)(int, char **, const char **))(intptr_t)FPtr;
481 int (*PF)(int, char **) = (int(*)(int, char **))(intptr_t)FPtr;
494 int (*PF)(int) = (int(*)(int))(intptr_t)FPtr;
510 rv.IntVal = APInt(BitWidth, ((bool(*)())(intptr_t)FPtr)());
512 rv.IntVal = APInt(BitWidth, ((char(*)())(intptr_t)FPtr)());
514 rv.IntVal = APInt(BitWidth, ((short(*)())(intptr_t)FPtr)());
516 rv.IntVal = APInt(BitWidth, ((int(*)())(intptr_t)FPtr)());
518 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/lib/IR/
GCOV.cpp 108 for (const auto &FPtr : Functions)
109 FPtr->dump();
115 for (const auto &FPtr : Functions)
116 FPtr->collectLineCounts(FI);
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 788 void *FPtr = JITHelper->getPointerToFunction(LF);
792 double (*FP)() = (double (*)())(intptr_t)FPtr;
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 829 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
833 double (*FP)() = (double (*)())(intptr_t)FPtr;
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 944 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
948 double (*FP)() = (double (*)())(intptr_t)FPtr;
  /external/clang/test/CXX/drs/
dr2xx.cpp 570 typedef void (*FPtr)(double x[]);
573 FPtr fp = &f<3>;
576 FPtr gp = &g<>;
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 1117 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
1121 double (*FP)() = (double (*)())(intptr_t)FPtr;
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 1063 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
1066 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 1045 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
1048 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 553 milliseconds