/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/ |
D | ExecutionEngineBindings.cpp | 181 std::vector<std::string> ArgVec; in LLVMRunFunctionAsMain() local 183 ArgVec.push_back(ArgV[I]); in LLVMRunFunctionAsMain() 185 return unwrap(EE)->runFunctionAsMain(unwrap<Function>(F), ArgVec, EnvP); in LLVMRunFunctionAsMain() 191 std::vector<GenericValue> ArgVec; in LLVMRunFunction() local 192 ArgVec.reserve(NumArgs); in LLVMRunFunction() 194 ArgVec.push_back(*unwrap(Args[I])); in LLVMRunFunction() 197 *Result = unwrap(EE)->runFunction(unwrap<Function>(F), ArgVec); in LLVMRunFunction()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/ |
D | ExecutionEngineBindings.cpp | 236 std::vector<std::string> ArgVec(ArgV, ArgV + ArgC); in LLVMRunFunctionAsMain() local 237 return unwrap(EE)->runFunctionAsMain(unwrap<Function>(F), ArgVec, EnvP); in LLVMRunFunctionAsMain() 245 std::vector<GenericValue> ArgVec; in LLVMRunFunction() local 246 ArgVec.reserve(NumArgs); in LLVMRunFunction() 248 ArgVec.push_back(*unwrap(Args[I])); in LLVMRunFunction() 251 *Result = unwrap(EE)->runFunction(unwrap<Function>(F), ArgVec); in LLVMRunFunction()
|
/external/llvm/lib/ExecutionEngine/ |
D | ExecutionEngineBindings.cpp | 233 std::vector<std::string> ArgVec(ArgV, ArgV + ArgC); in LLVMRunFunctionAsMain() local 234 return unwrap(EE)->runFunctionAsMain(unwrap<Function>(F), ArgVec, EnvP); in LLVMRunFunctionAsMain() 242 std::vector<GenericValue> ArgVec; in LLVMRunFunction() local 243 ArgVec.reserve(NumArgs); in LLVMRunFunction() 245 ArgVec.push_back(*unwrap(Args[I])); in LLVMRunFunction() 248 *Result = unwrap(EE)->runFunction(unwrap<Function>(F), ArgVec); in LLVMRunFunction()
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | Constants.cpp | 1612 std::vector<Constant*> ArgVec; in getGetElementPtr() local 1613 ArgVec.reserve(1 + Idxs.size()); in getGetElementPtr() 1614 ArgVec.push_back(C); in getGetElementPtr() 1616 ArgVec.push_back(cast<Constant>(Idxs[i])); in getGetElementPtr() 1617 const ExprMapKeyType Key(Instruction::GetElementPtr, ArgVec, 0, in getGetElementPtr() 1634 std::vector<Constant*> ArgVec; in getICmp() local 1635 ArgVec.push_back(LHS); in getICmp() 1636 ArgVec.push_back(RHS); in getICmp() 1638 const ExprMapKeyType Key(Instruction::ICmp, ArgVec, pred); in getICmp() 1657 std::vector<Constant*> ArgVec; in getFCmp() local [all …]
|
/external/llvm/lib/IR/ |
D | Constants.cpp | 1806 Constant *ArgVec[] = { C1, C2 }; in get() local 1807 ConstantExprKeyType Key(Opcode, ArgVec, 0, Flags); in get() 1887 Constant *ArgVec[] = { C, V1, V2 }; in getSelect() local 1888 ConstantExprKeyType Key(Instruction::Select, ArgVec); in getSelect() 1927 std::vector<Constant*> ArgVec; in getGetElementPtr() local 1928 ArgVec.reserve(1 + Idxs.size()); in getGetElementPtr() 1929 ArgVec.push_back(C); in getGetElementPtr() 1938 ArgVec.push_back(Idx); in getGetElementPtr() 1940 const ConstantExprKeyType Key(Instruction::GetElementPtr, ArgVec, 0, in getGetElementPtr() 1961 Constant *ArgVec[] = { LHS, RHS }; in getICmp() local [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/ |
D | Constants.cpp | 1855 Constant *ArgVec[] = { C1, C2 }; in get() local 1856 ConstantExprKeyType Key(Opcode, ArgVec, 0, Flags); in get() 1935 Constant *ArgVec[] = { C, V1, V2 }; in getSelect() local 1936 ConstantExprKeyType Key(Instruction::Select, ArgVec); in getSelect() 1977 std::vector<Constant*> ArgVec; in getGetElementPtr() local 1978 ArgVec.reserve(1 + Idxs.size()); in getGetElementPtr() 1979 ArgVec.push_back(C); in getGetElementPtr() 1988 ArgVec.push_back(Idx); in getGetElementPtr() 1994 const ConstantExprKeyType Key(Instruction::GetElementPtr, ArgVec, 0, in getGetElementPtr() 2014 Constant *ArgVec[] = { LHS, RHS }; in getICmp() local [all …]
|
/external/swiftshader/third_party/subzero/src/ |
D | IceTargetLoweringMIPS32.cpp | 3397 auto *ArgVec = llvm::cast<VariableVecOn32>(Arg); in lowerCall() local 3400 for (Variable *Elem : ArgVec->getContainers()) { in lowerCall() 3415 auto *ArgVec = llvm::cast<VariableVecOn32>(Arg); in lowerCall() local 3416 Operand *Elem0 = ArgVec->getContainers()[0]; in lowerCall() 3417 Operand *Elem1 = ArgVec->getContainers()[1]; in lowerCall() 3422 Operand *Elem2 = ArgVec->getContainers()[2]; in lowerCall() 3423 Operand *Elem3 = ArgVec->getContainers()[3]; in lowerCall()
|
/external/clang/lib/CodeGen/ |
D | MicrosoftCXXABI.cpp | 3868 std::vector<Stmt *> ArgVec; in getAddrOfCXXCtorClosure() local 3872 ArgVec.push_back(DefaultArg); in getAddrOfCXXCtorClosure() 3878 CGF.EmitCallArgs(Args, FPT, llvm::makeArrayRef(ArgVec), CD, IsCopy ? 1 : 0); in getAddrOfCXXCtorClosure()
|
/external/clang/lib/AST/ |
D | ASTContext.cpp | 3397 SmallVector<TemplateArgument, 4> ArgVec; in getTemplateSpecializationType() local 3398 ArgVec.reserve(Args.size()); in getTemplateSpecializationType() 3400 ArgVec.push_back(Arg.getArgument()); in getTemplateSpecializationType() 3402 return getTemplateSpecializationType(Template, ArgVec, Underlying); in getTemplateSpecializationType()
|