HomeSort by: relevance | last modified time | path
    Searched defs:FPtr (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.cpp 516 void *FPtr = getPointerToFunction(F);
518 assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
537 (int(*)(int, char **, const char **))(intptr_t)FPtr;
550 int (*PF)(int, char **) = (int(*)(int, char **))(intptr_t)FPtr;
563 int (*PF)(int) = (int(*)(int))(intptr_t)FPtr;
579 rv.IntVal = APInt(BitWidth, ((bool(*)())(intptr_t)FPtr)());
581 rv.IntVal = APInt(BitWidth, ((char(*)())(intptr_t)FPtr)());
583 rv.IntVal = APInt(BitWidth, ((short(*)())(intptr_t)FPtr)());
585 rv.IntVal = APInt(BitWidth, ((int(*)())(intptr_t)FPtr)());
587 rv.IntVal = APInt(BitWidth, ((int64_t(*)())(intptr_t)FPtr)());
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 1059 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
1062 double (*FP)() = (double (*)())(intptr_t)FPtr;
toy.cpp 1428 void *FPtr = TheHelper->getPointerToFunction(LF);
1432 double (*FP)() = (double (*)())(intptr_t)FPtr;
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 1043 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
1046 double (*FP)() = (double (*)())(intptr_t)FPtr;
toy.cpp 1326 void *FPtr = TheHelper->getPointerToFunction(LF);
1330 double (*FP)() = (double (*)())(intptr_t)FPtr;
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 1505 void *FPtr = TheHelper->getPointerToFunction(LF);
1508 double (*FP)() = (double (*)())(intptr_t)FPtr;
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 1285 void *FPtr = TheHelper->getPointerToFunction(LF);
1289 double (*FP)() = (double (*)())(intptr_t)FPtr;
  /src/external/apache2/llvm/dist/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 863 SDValue FPtr = Op.getOperand(2); // nested function
872 // LDAPF_u10 r11, fptr
877 // fptr:
878 // .word fptr
908 DAG.getStore(Chain, dl, FPtr, Addr, MachinePointerInfo(TrmpAddr, 16));
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp 3690 SDValue FPtr = Op.getOperand(2); // nested function
3709 Entry.Node = FPtr; Args.push_back(Entry);
3712 // Lower to a call to __trampoline_setup(Trmp, TrampSize, FPtr, ctx_reg)

Completed in 60 milliseconds