Searched refs:ArgValues (Results 1 - 12 of 12) sorted by relevance

/external/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.cpp79 const std::vector<GenericValue> &ArgValues) {
92 ActualArgs.push_back(ArgValues[i]);
78 runFunction(Function *F, const std::vector<GenericValue> &ArgValues) argument
H A DInterpreter.h116 const std::vector<GenericValue> &ArgValues) override;
/external/llvm/lib/ExecutionEngine/JIT/
H A DJIT.cpp238 const std::vector<GenericValue> &ArgValues) {
246 assert((FTy->getNumParams() == ArgValues.size() ||
247 (FTy->isVarArg() && FTy->getNumParams() <= ArgValues.size())) &&
249 assert(FTy->getNumParams() == ArgValues.size() &&
255 switch (ArgValues.size()) {
265 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
266 (char **)GVTOP(ArgValues[1]),
267 (const char **)GVTOP(ArgValues[2])));
278 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
279 (char **)GVTOP(ArgValues[
237 runFunction(Function *F, const std::vector<GenericValue> &ArgValues) argument
[all...]
H A DJIT.h118 const std::vector<GenericValue> &ArgValues) override;
/external/clang/lib/CodeGen/
H A DCGCUDANV.cpp81 SmallVector<llvm::Value *, 16> ArgValues; local
86 ArgValues.push_back(V);
100 Args[0] = CGF.Builder.CreatePointerCast(ArgValues[I], VoidPtrTy);
/external/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.cpp433 const std::vector<GenericValue> &ArgValues) {
441 assert((FTy->getNumParams() == ArgValues.size() ||
442 (FTy->isVarArg() && FTy->getNumParams() <= ArgValues.size())) &&
444 assert(FTy->getNumParams() == ArgValues.size() &&
450 switch (ArgValues.size()) {
460 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
461 (char **)GVTOP(ArgValues[1]),
462 (const char **)GVTOP(ArgValues[2])));
473 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
474 (char **)GVTOP(ArgValues[
432 runFunction(Function *F, const std::vector<GenericValue> &ArgValues) argument
[all...]
H A DMCJIT.h288 const std::vector<GenericValue> &ArgValues) override;
/external/llvm/include/llvm/ExecutionEngine/
H A DExecutionEngine.h255 const std::vector<GenericValue> &ArgValues) = 0;
/external/clang/lib/AST/
H A DExprConstant.cpp3591 static bool EvaluateArgs(ArrayRef<const Expr*> Args, ArgVector &ArgValues,
3596 if (!Evaluate(ArgValues[I - Args.begin()], Info, *I)) {
3612 ArgVector ArgValues(Args.size());
3613 if (!EvaluateArgs(Args, ArgValues, Info))
3619 CallStackFrame Frame(Info, CallLoc, Callee, This, ArgValues.data());
3629 RHS.setFrom(Info.Ctx, ArgValues[0]);
3655 ArgVector ArgValues(Args.size());
3656 if (!EvaluateArgs(Args, ArgValues, Info))
3668 CallStackFrame Frame(Info, CallLoc, Definition, &This, ArgValues.data());
3688 RHS.setFrom(Info.Ctx, ArgValues[
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp7527 SmallVector<SDValue, 4> ArgValues;
7555 ArgValues.push_back(getCopyFromParts(DAG, dl, &InVals[i],
7564 if (ArgValues.empty())
7569 dyn_cast<FrameIndexSDNode>(ArgValues[0].getNode()))
7572 SDValue Res = DAG.getMergeValues(makeArrayRef(ArgValues.data(), NumValues),
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp1686 SmallVector<SDValue, 16> ArgValues; local
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp2925 SmallVector<SDValue, 16> ArgValues; local

Completed in 404 milliseconds