Searched defs:FPtr (Results 1 - 10 of 10) sorted by relevance

/external/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.cpp156 void *FPtr = getPointerToFunction(F); local
157 assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
176 (int(*)(int, char **, const char **))(intptr_t)FPtr;
189 int (*PF)(int, char **) = (int(*)(int, char **))(intptr_t)FPtr;
202 int (*PF)(int) = (int(*)(int))(intptr_t)FPtr;
218 rv.IntVal = APInt(BitWidth, ((bool(*)())(intptr_t)FPtr)());
220 rv.IntVal = APInt(BitWidth, ((char(*)())(intptr_t)FPtr)());
222 rv.IntVal = APInt(BitWidth, ((short(*)())(intptr_t)FPtr)());
224 rv.IntVal = APInt(BitWidth, ((int(*)())(intptr_t)FPtr)());
226 rv.IntVal = APInt(BitWidth, ((int64_t(*)())(intptr_t)FPtr)());
[all...]
/external/llvm/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp515 void *FPtr = TheExecutionEngine->getPointerToFunction(LF); local
519 double (*FP)() = (double (*)())(intptr_t)FPtr;
/external/llvm/lib/ExecutionEngine/JIT/
H A DJIT.cpp393 void *FPtr = getPointerToFunction(F); local
394 assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
413 (int(*)(int, char **, const char **))(intptr_t)FPtr;
426 int (*PF)(int, char **) = (int(*)(int, char **))(intptr_t)FPtr;
438 int (*PF)(int) = (int(*)(int))(intptr_t)FPtr;
444 int (*PF)(char *) = (int(*)(char *))(intptr_t)FPtr;
460 rv.IntVal = APInt(BitWidth, ((bool(*)())(intptr_t)FPtr)());
462 rv.IntVal = APInt(BitWidth, ((char(*)())(intptr_t)FPtr)());
464 rv.IntVal = APInt(BitWidth, ((short(*)())(intptr_t)FPtr)());
466 rv.IntVal = APInt(BitWidth, ((int(*)())(intptr_t)FPtr)());
[all...]
/external/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp760 void *FPtr = TheExecutionEngine->getPointerToFunction(LF); local
764 double (*FP)() = (double (*)())(intptr_t)FPtr;
/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp871 void *FPtr = TheExecutionEngine->getPointerToFunction(LF); local
875 double (*FP)() = (double (*)())(intptr_t)FPtr;
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.h96 DotDebugLocEntry(const MCSymbol *B, const MCSymbol *E, const ConstantFP *FPtr) argument
98 Constant(true) { Constants.CFP = FPtr; EntryKind = E_ConstantFP; }
/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp1034 void *FPtr = TheExecutionEngine->getPointerToFunction(LF); local
1038 double (*FP)() = (double (*)())(intptr_t)FPtr;
/external/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp813 SDValue FPtr = Op.getOperand(2); // nested function local
858 OutChains[4] = DAG.getStore(Chain, dl, FPtr, Addr,
/external/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp1489 SDValue FPtr = Op.getOperand(2); // nested function local
1510 Entry.Node = FPtr; Args.push_back(Entry);
1513 // Lower to a call to __trampoline_setup(Trmp, TrampSize, FPtr, ctx_reg)
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp10299 SDValue FPtr = Op.getOperand(2); // nested function local
10326 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
10411 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);

Completed in 4065 milliseconds