/external/llvm-project/llvm/test/MC/WebAssembly/ |
D | types.ll | 40 ; CHECK-NEXT: ParamTypes: 43 ; CHECK-NEXT: ParamTypes: 47 ; CHECK-NEXT: ParamTypes: 51 ; CHECK-NEXT: ParamTypes: 55 ; CHECK-NEXT: ParamTypes: 59 ; CHECK-NEXT: ParamTypes: 63 ; CHECK-NEXT: ParamTypes: 67 ; CHECK-NEXT: ParamTypes:
|
D | libcall.ll | 20 ; CHECK-NEXT: ParamTypes: 25 ; CHECK-NEXT: ParamTypes:
|
D | event-section.ll | 22 ; CHECK-NEXT: ParamTypes: 27 ; CHECK-NEXT: ParamTypes:
|
D | external-func-address.ll | 30 ; CHECK-NEXT: ParamTypes: 34 ; CHECK-NEXT: ParamTypes:
|
D | type-index.s | 25 # BIN-NEXT: ParamTypes: 30 # BIN-NEXT: ParamTypes:
|
/external/llvm-project/lld/test/wasm/ |
D | multivalue-return-func-types.s | 58 # CHECK-NEXT: ParamTypes: [] 61 # CHECK-NEXT: ParamTypes: [] 65 # CHECK-NEXT: ParamTypes: [] 70 # CHECK-NEXT: ParamTypes: [] 75 # CHECK-NEXT: ParamTypes: []
|
D | gc-sections.ll | 41 ; CHECK-NEXT: ParamTypes: [] 45 ; CHECK-NEXT: ParamTypes: [] 48 ; CHECK-NEXT: ParamTypes: [] 99 ; NO-GC-NEXT: ParamTypes: [] 102 ; NO-GC-NEXT: ParamTypes: 107 ; NO-GC-NEXT: ParamTypes: [] 111 ; NO-GC-NEXT: ParamTypes: []
|
D | call-indirect.ll | 43 ; CHECK-NEXT: ParamTypes: 47 ; CHECK-NEXT: ParamTypes: 51 ; CHECK-NEXT: ParamTypes: 56 ; CHECK-NEXT: ParamTypes: 59 ; CHECK-NEXT: ParamTypes:
|
D | function-index.test | 10 CHECK: ParamTypes: 15 CHECK: ParamTypes:
|
D | function-imports.ll | 21 ; CHECK-NEXT: ParamTypes: 26 ; CHECK-NEXT: ParamTypes:
|
D | undefined-weak-call.s | 41 # CHECK-NEXT: ParamTypes: 44 # CHECK-NEXT: ParamTypes: 48 # CHECK-NEXT: ParamTypes:
|
D | function-imports-first.ll | 20 ; CHECK-NEXT: ParamTypes: [] 23 ; CHECK-NEXT: ParamTypes:
|
D | event-section.ll | 25 ; CHECK-NEXT: ParamTypes: [] 28 ; CHECK-NEXT: ParamTypes:
|
/external/llvm-project/clang/lib/AST/Interp/ |
D | Function.h | 83 bool hasRVO() const { return ParamTypes.size() != Params.size(); } in hasRVO() 93 return llvm::make_range(ParamTypes.rbegin(), ParamTypes.rend()); in args_reverse() 114 llvm::SmallVector<PrimType, 8> &&ParamTypes, 148 llvm::SmallVector<PrimType, 8> ParamTypes; variable
|
D | Function.cpp | 19 llvm::SmallVector<PrimType, 8> &&ParamTypes, in Function() argument 22 ParamTypes(std::move(ParamTypes)), Params(std::move(Params)) {} in Function()
|
D | ByteCodeEmitter.cpp | 28 SmallVector<PrimType, 8> ParamTypes; in compileFunc() local 35 ParamTypes.push_back(PT_Ptr); in compileFunc() 53 ParamTypes.push_back(Ty); in compileFunc() 57 Function *Func = P.createFunction(F, ParamOffset, std::move(ParamTypes), in compileFunc()
|
/external/llvm-project/llvm/test/CodeGen/WebAssembly/ |
D | multivalue.ll | 263 ; OBJ-NEXT: ParamTypes: [] 268 ; OBJ-NEXT: ParamTypes: 275 ; OBJ-NEXT: ParamTypes: [] 278 ; OBJ-NEXT: ParamTypes: 284 ; OBJ-NEXT: ParamTypes: [] 288 ; OBJ-NEXT: ParamTypes: [] 292 ; OBJ-NEXT: ParamTypes: 296 ; OBJ-NEXT: ParamTypes: 300 ; OBJ-NEXT: ParamTypes: 307 ; OBJ-NEXT: ParamTypes: []
|
/external/llvm-project/clang/utils/TableGen/ |
D | MveEmitter.cpp | 403 std::vector<std::string> *ParamTypes = nullptr; member 440 if (ParamTypes && ParamTypes->size() == ParamNumber) in allocParam() 441 ParamTypes->push_back(std::string(Type)); in allocParam() 730 std::vector<const Type *> ParamTypes; member in __anonf88c1dfe0111::IRIntrinsicResult 732 IRIntrinsicResult(StringRef IntrinsicID, std::vector<const Type *> ParamTypes, in IRIntrinsicResult() argument 734 : IntrinsicID(std::string(IntrinsicID)), ParamTypes(ParamTypes), in IRIntrinsicResult() 741 if (!ParamTypes.empty()) { in genCode() 744 for (auto T : ParamTypes) { in genCode() 1246 std::vector<const Type *> ParamTypes; in getCodeForDag() local 1248 ParamTypes.push_back(getType(RParam, Param)); in getCodeForDag() [all …]
|
/external/skia/src/sksl/ir/ |
D | SkSLFunctionDeclaration.h | 113 using ParamTypes = SkSTArray<8, const Type*>; variable 115 ParamTypes* outParameterTypes,
|
/external/clang/lib/Sema/ |
D | SemaOverload.cpp | 6777 Candidate.BuiltinTypes.ParamTypes[ArgIdx] = ParamTys[ArgIdx]; in AddBuiltinCandidate() 7111 QualType ParamTypes[2]; in AddBuiltinAssignmentOperatorCandidates() local 7114 ParamTypes[0] = S.Context.getLValueReferenceType(T); in AddBuiltinAssignmentOperatorCandidates() 7115 ParamTypes[1] = T; in AddBuiltinAssignmentOperatorCandidates() 7116 S.AddBuiltinCandidate(ParamTypes[0], ParamTypes, Args, CandidateSet, in AddBuiltinAssignmentOperatorCandidates() 7121 ParamTypes[0] in AddBuiltinAssignmentOperatorCandidates() 7123 ParamTypes[1] = T; in AddBuiltinAssignmentOperatorCandidates() 7124 S.AddBuiltinCandidate(ParamTypes[0], ParamTypes, Args, CandidateSet, in AddBuiltinAssignmentOperatorCandidates() 7307 QualType ParamTypes[2] = { in addPlusPlusMinusMinusStyleOverloads() local 7314 S.AddBuiltinCandidate(ParamTypes[0], ParamTypes, Args, CandidateSet); in addPlusPlusMinusMinusStyleOverloads() [all …]
|
/external/llvm-project/llvm/test/tools/llvm-objcopy/wasm/ |
D | basic-copy.test | 17 ParamTypes: 22 ParamTypes:
|
D | add-section.test | 30 ParamTypes: 35 ParamTypes:
|
/external/llvm-project/llvm/examples/OrcV2Examples/OrcV2CBindingsBasicUsage/ |
D | OrcV2CBindingsBasicUsage.c | 37 LLVMTypeRef ParamTypes[] = {LLVMInt32Type(), LLVMInt32Type()}; in createDemoModule() local 39 LLVMFunctionType(LLVMInt32Type(), ParamTypes, 2, 0); in createDemoModule()
|
/external/llvm-project/llvm/examples/OrcV2Examples/OrcV2CBindingsRemovableCode/ |
D | OrcV2CBindingsRemovableCode.c | 37 LLVMTypeRef ParamTypes[] = {LLVMInt32Type(), LLVMInt32Type()}; in createDemoModule() local 39 LLVMFunctionType(LLVMInt32Type(), ParamTypes, 2, 0); in createDemoModule()
|
/external/llvm-project/llvm/examples/OrcV2Examples/OrcV2CBindingsAddObjectFile/ |
D | OrcV2CBindingsAddObjectFile.c | 32 LLVMTypeRef ParamTypes[] = {LLVMInt32Type(), LLVMInt32Type()}; in createDemoModule() local 34 LLVMFunctionType(LLVMInt32Type(), ParamTypes, 2, 0); in createDemoModule()
|