Home
last modified time | relevance | path

Searched refs:ArgValues (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.cpp81 ArrayRef<GenericValue> ArgValues) { in runFunction() argument
93 ArgValues.slice(0, std::min(ArgValues.size(), ArgCount)); in runFunction()
H A DInterpreter.h107 ArrayRef<GenericValue> ArgValues) override;
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.cpp510 GenericValue MCJIT::runFunction(Function *F, ArrayRef<GenericValue> ArgValues) { in runFunction() argument
519 assert((FTy->getNumParams() == ArgValues.size() || in runFunction()
520 (FTy->isVarArg() && FTy->getNumParams() <= ArgValues.size())) && in runFunction()
522 assert(FTy->getNumParams() == ArgValues.size() && in runFunction()
528 switch (ArgValues.size()) { in runFunction()
538 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(), in runFunction()
539 (char **)GVTOP(ArgValues[1]), in runFunction()
540 (const char **)GVTOP(ArgValues[2]))); in runFunction()
551 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(), in runFunction()
552 (char **)GVTOP(ArgValues[1]))); in runFunction()
[all …]
H A DMCJIT.h254 ArrayRef<GenericValue> ArgValues) override;
/freebsd/contrib/llvm-project/llvm/lib/TableGen/
H A DTGParser.h251 const Record *Rec, ArrayRef<const ArgumentInit *> ArgValues, SMLoc Loc,
254 ArrayRef<const ArgumentInit *> ArgValues,
257 ArrayRef<const ArgumentInit *> ArgValues,
H A DTGParser.cpp585 ArrayRef<const ArgumentInit *> ArgValues, in resolveArguments() argument
588 assert(ArgValues.size() <= ArgNames.size() && in resolveArguments()
593 for (auto *Arg : ArgValues) { in resolveArguments()
629 ArrayRef<const ArgumentInit *> ArgValues, in resolveArgumentsOfClass() argument
632 Rec, ArgValues, Loc, in resolveArgumentsOfClass()
640 ArrayRef<const ArgumentInit *> ArgValues, const Init *DefmName, SMLoc Loc) { in resolveArgumentsOfMultiClass() argument
643 return resolveArguments(&MC->Rec, ArgValues, Loc, in resolveArgumentsOfMultiClass()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaX86.cpp455 std::bitset<TileRegHigh + 1> ArgValues; in CheckBuiltinTileDuplicate() local
467 if (ArgValues.test(ArgExtValue)) in CheckBuiltinTileDuplicate()
471 ArgValues.set(ArgExtValue); in CheckBuiltinTileDuplicate()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DExecutionEngine.h227 ArrayRef<GenericValue> ArgValues) = 0;
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp11816 SmallVector<SDValue, 4> ArgValues; in LowerArguments() local
11880 ArgValues.push_back(OutVal); in LowerArguments()
11887 if (ArgValues.empty()) in LowerArguments()
11892 dyn_cast<FrameIndexSDNode>(ArgValues[0].getNode())) in LowerArguments()
11895 SDValue Res = DAG.getMergeValues(ArrayRef(ArgValues.data(), NumValues), in LowerArguments()