Searched refs:ArgValues (Results 1 – 9 of 9) sorted by relevance
/external/llvm/lib/ExecutionEngine/MCJIT/ |
D | MCJIT.cpp | 122 const std::vector<GenericValue> &ArgValues) { in runFunction() argument 130 assert((FTy->getNumParams() == ArgValues.size() || in runFunction() 131 (FTy->isVarArg() && FTy->getNumParams() <= ArgValues.size())) && in runFunction() 133 assert(FTy->getNumParams() == ArgValues.size() && in runFunction() 139 switch (ArgValues.size()) { in runFunction() 149 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(), in runFunction() 150 (char **)GVTOP(ArgValues[1]), in runFunction() 151 (const char **)GVTOP(ArgValues[2]))); in runFunction() 162 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(), in runFunction() 163 (char **)GVTOP(ArgValues[1]))); in runFunction() [all …]
|
D | MCJIT.h | 59 const std::vector<GenericValue> &ArgValues);
|
/external/llvm/lib/ExecutionEngine/JIT/ |
D | JIT.cpp | 388 const std::vector<GenericValue> &ArgValues) { in runFunction() argument 396 assert((FTy->getNumParams() == ArgValues.size() || in runFunction() 397 (FTy->isVarArg() && FTy->getNumParams() <= ArgValues.size())) && in runFunction() 399 assert(FTy->getNumParams() == ArgValues.size() && in runFunction() 405 switch (ArgValues.size()) { in runFunction() 415 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(), in runFunction() 416 (char **)GVTOP(ArgValues[1]), in runFunction() 417 (const char **)GVTOP(ArgValues[2]))); in runFunction() 428 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(), in runFunction() 429 (char **)GVTOP(ArgValues[1]))); in runFunction() [all …]
|
D | JIT.h | 118 const std::vector<GenericValue> &ArgValues);
|
/external/llvm/lib/ExecutionEngine/Interpreter/ |
D | Interpreter.cpp | 76 const std::vector<GenericValue> &ArgValues) { in runFunction() argument 89 ActualArgs.push_back(ArgValues[i]); in runFunction()
|
D | Interpreter.h | 116 const std::vector<GenericValue> &ArgValues);
|
/external/llvm/include/llvm/ExecutionEngine/ |
D | ExecutionEngine.h | 232 const std::vector<GenericValue> &ArgValues) = 0;
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.cpp | 6456 SmallVector<SDValue, 4> ArgValues; in LowerArguments() local 6478 ArgValues.push_back(getCopyFromParts(DAG, dl, &InVals[i], in LowerArguments() 6487 if (ArgValues.empty()) in LowerArguments() 6493 dyn_cast<FrameIndexSDNode>(ArgValues[0].getNode())) in LowerArguments() 6496 SDValue Res = DAG.getMergeValues(&ArgValues[0], NumValues, in LowerArguments()
|
/external/llvm/lib/Target/ARM/ |
D | ARMISelLowering.cpp | 2459 SmallVector<SDValue, 16> ArgValues; in LowerFormalArguments() local
|