Searched refs:ArgVals (Results 1 - 5 of 5) sorted by relevance

/freebsd-11.0-release/contrib/llvm/lib/ExecutionEngine/Interpreter/
H A DExternalFunctions.cpp180 static bool ffiInvoke(RawFunc Fn, Function *F, ArrayRef<GenericValue> ArgVals, argument
188 if (ArgVals.size() > NumArgs && F->isVarArg()) {
212 values[ArgNo] = ffiValueFor(ArgTy, ArgVals[ArgNo], ArgDataPtr);
246 ArrayRef<GenericValue> ArgVals) {
257 return Fn(F->getFunctionType(), ArgVals);
277 if (RawFn != 0 && ffiInvoke(RawFn, F, ArgVals, getDataLayout(), Result))
245 callExternalFunction(Function *F, ArrayRef<GenericValue> ArgVals) argument
H A DInterpreter.h138 void callFunction(Function *F, ArrayRef<GenericValue> ArgVals);
195 ArrayRef<GenericValue> ArgVals);
H A DExecution.cpp1109 std::vector<GenericValue> ArgVals;
1111 ArgVals.reserve(NumArgs);
1116 ArgVals.push_back(getOperandValue(V, SF));
1122 callFunction((Function*)GVTOP(SRC), ArgVals);
2076 void Interpreter::callFunction(Function *F, ArrayRef<GenericValue> ArgVals) { argument
2078 ECStack.back().Caller.arg_size() == ArgVals.size()) &&
2087 GenericValue Result = callExternalFunction (F, ArgVals);
2098 assert((ArgVals.size() == F->arg_size() ||
2099 (ArgVals.size() > F->arg_size() && F->getFunctionType()->isVarArg()))&&
2106 SetValue(&*AI, ArgVals[
[all...]
/freebsd-11.0-release/contrib/llvm/include/llvm/ExecutionEngine/Orc/
H A DRPCUtils.h97 std::error_code operator()(ArgT &ArgVal, ArgTs &... ArgVals) { argument
99 return ReadArgs<ArgTs...>::operator()(ArgVals...);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGCall.cpp1868 SmallVector<ParamValue, 16> ArgVals;
1869 ArgVals.reserve(Args.size());
1899 ArgVals.push_back(ParamValue::forIndirect(V));
1926 ArgVals.push_back(ParamValue::forIndirect(V));
1934 ArgVals.push_back(ParamValue::forDirect(V));
2039 ArgVals.push_back(ParamValue::forDirect(V));
2096 ArgVals.push_back(ParamValue::forDirect(V));
2098 ArgVals.push_back(ParamValue::forIndirect(Alloca));
2109 ArgVals.push_back(ParamValue::forIndirect(Alloca));
2125 ArgVals
[all...]

Completed in 115 milliseconds