Home
last modified time | relevance | path

Searched refs:FType (Results 1 – 25 of 25) sorted by relevance

/external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/
DNaClBitcodeHeader.h94 static const char *TypeName(FieldType FType);
95 const char *TypeName() const { return TypeName(FType); } in TypeName()
110 FieldType GetType() const { return FType; } in GetType()
124 FixedSubfield EncodeTypedID() const { return (ID << 4) | FType; } in EncodeTypedID()
126 void DecodeTypedID(FixedSubfield Subfield, Tag &ID, FieldType &FType) { in DecodeTypedID() argument
130 FType = (PossibleFType > kFieldType_MAX in DecodeTypedID()
144 FieldType FType; variable
/external/swiftshader/third_party/subzero/pnacl-llvm/
DNaClBitcodeHeader.cpp57 const char *NaClBitcodeHeaderField::TypeName(FieldType FType) { in TypeName() argument
58 return FType > kFieldType_MAX ? "???" : FieldTypeName[FType]; in TypeName()
62 : ID(kInvalid), FType(kBufferType), Len(0), Data(0) {} in NaClBitcodeHeaderField()
65 : ID(MyID), FType(kFlagType), Len(0), Data(0) { in NaClBitcodeHeaderField()
70 : ID(MyID), FType(kUInt32Type), Len(4), Data(new uint8_t[4]) { in NaClBitcodeHeaderField()
79 assert(FType == kUInt32Type && "Header field must be uint32"); in GetUInt32Value()
88 : ID(MyID), FType(kBufferType), Len(MyLen), Data(new uint8_t[MyLen]) { in NaClBitcodeHeaderField()
132 DecodeTypedID(IdField, ID, FType); in Read()
141 switch (FType) { in Contents()
/external/llvm-project/clang/test/CodeGenObjCXX/
Dblock-in-template-inst.mm42 typedef R (^FType)(Arg0, Arg1, Arg2);
44 Curry(FType _f) : f(_f) {}
59 FType f;
/external/clang/test/CodeGenObjCXX/
Dblock-in-template-inst.mm42 typedef R (^FType)(Arg0, Arg1, Arg2);
44 Curry(FType _f) : f(_f) {}
59 FType f;
/external/llvm-project/clang/test/CodeGen/
Dregparm.c11 typedef void (*FType)(int, int) __attribute ((regparm (3), stdcall)); typedef
12 FType bar;
/external/clang/test/CodeGen/
Dregparm.c11 typedef void (*FType)(int, int) __attribute ((regparm (3), stdcall)); typedef
12 FType bar;
/external/llvm/include/llvm/MC/
DMCFragment.h147 MCEncodedFragment(MCFragment::FragmentType FType, bool HasInstructions,
149 : MCFragment(FType, HasInstructions, 0, Sec) {}
173 MCEncodedFragmentWithContents(MCFragment::FragmentType FType,
176 : MCEncodedFragment(FType, HasInstructions, Sec) {}
194 MCEncodedFragmentWithFixups(MCFragment::FragmentType FType,
197 : MCEncodedFragmentWithContents<ContentsSize>(FType, HasInstructions,
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
DMCFragment.h120 MCEncodedFragment(MCFragment::FragmentType FType, bool HasInstructions, in MCEncodedFragment() argument
122 : MCFragment(FType, HasInstructions, Sec) {} in MCEncodedFragment()
178 MCEncodedFragmentWithContents(MCFragment::FragmentType FType, in MCEncodedFragmentWithContents() argument
181 : MCEncodedFragment(FType, HasInstructions, Sec) {} in MCEncodedFragmentWithContents()
199 MCEncodedFragmentWithFixups(MCFragment::FragmentType FType, in MCEncodedFragmentWithFixups() argument
202 : MCEncodedFragmentWithContents<ContentsSize>(FType, HasInstructions, in MCEncodedFragmentWithFixups()
/external/llvm-project/llvm/include/llvm/MC/
DMCFragment.h131 MCEncodedFragment(MCFragment::FragmentType FType, bool HasInstructions, in MCEncodedFragment() argument
133 : MCFragment(FType, HasInstructions, Sec) {} in MCEncodedFragment()
189 MCEncodedFragmentWithContents(MCFragment::FragmentType FType, in MCEncodedFragmentWithContents() argument
192 : MCEncodedFragment(FType, HasInstructions, Sec) {} in MCEncodedFragmentWithContents()
210 MCEncodedFragmentWithFixups(MCFragment::FragmentType FType, in MCEncodedFragmentWithFixups() argument
213 : MCEncodedFragmentWithContents<ContentsSize>(FType, HasInstructions, in MCEncodedFragmentWithFixups()
/external/clang/lib/CodeGen/
DCGDebugInfo.cpp780 QualType FType; in CreateType() local
786 FType = CGM.getContext().UnsignedLongTy; in CreateType()
787 EltTys.push_back(CreateMemberType(Unit, FType, "reserved", &FieldOffset)); in CreateType()
788 EltTys.push_back(CreateMemberType(Unit, FType, "Size", &FieldOffset)); in CreateType()
806 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy); in CreateType()
807 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset)); in CreateType()
808 FType = CGM.getContext().IntTy; in CreateType()
809 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset)); in CreateType()
810 EltTys.push_back(CreateMemberType(Unit, FType, "__reserved", &FieldOffset)); in CreateType()
811 FType = CGM.getContext().getPointerType(Ty->getPointeeType()); in CreateType()
[all …]
DCGDebugInfo.h444 llvm::DIType *CreateMemberType(llvm::DIFile *Unit, QualType FType,
/external/llvm-project/clang/lib/CodeGen/
DCGDebugInfo.cpp1105 QualType FType; in collectDefaultElementTypesForBlockPointer() local
1115 FType = CGM.getContext().IntTy; in collectDefaultElementTypesForBlockPointer()
1116 EltTys.push_back(CreateMemberType(Unit, FType, "__size", &FieldOffset)); in collectDefaultElementTypesForBlockPointer()
1117 EltTys.push_back(CreateMemberType(Unit, FType, "__align", &FieldOffset)); in collectDefaultElementTypesForBlockPointer()
1119 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy); in collectDefaultElementTypesForBlockPointer()
1120 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset)); in collectDefaultElementTypesForBlockPointer()
1121 FType = CGM.getContext().IntTy; in collectDefaultElementTypesForBlockPointer()
1122 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset)); in collectDefaultElementTypesForBlockPointer()
1123 EltTys.push_back(CreateMemberType(Unit, FType, "__reserved", &FieldOffset)); in collectDefaultElementTypesForBlockPointer()
1124 FType = CGM.getContext().getPointerType(Ty->getPointeeType()); in collectDefaultElementTypesForBlockPointer()
[all …]
DCGDebugInfo.h613 llvm::DIType *CreateMemberType(llvm::DIFile *Unit, QualType FType,
/external/clang/lib/Frontend/Rewrite/
DRewriteObjC.cpp4346 QualType FType = Context->getFunctionNoProtoType(Context->VoidPtrTy); in SynthBlockInitFunctionDecl() local
4348 SourceLocation(), ID, FType, nullptr, SC_Extern, in SynthBlockInitFunctionDecl()
4406 QualType FType = Context->getPointerType(BFT); in SynthBlockInitExpr() local
4413 DeclRefExpr *DRE = new (Context) DeclRefExpr(FD, false, FType, VK_RValue, in SynthBlockInitExpr()
4530 FType, VK_LValue, SourceLocation()); in SynthBlockInitExpr()
4534 NewRep = NoTypeInfoCStyleCastExpr(Context, FType, CK_BitCast, in SynthBlockInitExpr()
DRewriteModernObjC.cpp5202 QualType FType = Context->getFunctionNoProtoType(Context->VoidPtrTy); in SynthBlockInitFunctionDecl() local
5204 SourceLocation(), ID, FType, nullptr, SC_Extern, in SynthBlockInitFunctionDecl()
5270 QualType FType = Context->getPointerType(BFT); in SynthBlockInitExpr() local
5285 DeclRefExpr *DRE = new (Context) DeclRefExpr(FD, false, FType, VK_RValue, in SynthBlockInitExpr()
5403 FType, VK_LValue, SourceLocation()); in SynthBlockInitExpr()
5415 NewRep = NoTypeInfoCStyleCastExpr(Context, FType, CK_BitCast, in SynthBlockInitExpr()
/external/llvm-project/clang/lib/Frontend/Rewrite/
DRewriteObjC.cpp4357 QualType FType = Context->getFunctionNoProtoType(Context->VoidPtrTy); in SynthBlockInitFunctionDecl() local
4359 SourceLocation(), ID, FType, nullptr, SC_Extern, in SynthBlockInitFunctionDecl()
4417 QualType FType = Context->getPointerType(BFT); in SynthBlockInitExpr() local
4425 DeclRefExpr(*Context, FD, false, FType, VK_RValue, SourceLocation()); in SynthBlockInitExpr()
4538 NewRep = CallExpr::Create(*Context, DRE, InitExprs, FType, VK_LValue, in SynthBlockInitExpr()
4544 NewRep = NoTypeInfoCStyleCastExpr(Context, FType, CK_BitCast, in SynthBlockInitExpr()
DRewriteModernObjC.cpp5202 QualType FType = Context->getFunctionNoProtoType(Context->VoidPtrTy); in SynthBlockInitFunctionDecl() local
5204 SourceLocation(), ID, FType, nullptr, SC_Extern, in SynthBlockInitFunctionDecl()
5270 QualType FType = Context->getPointerType(BFT); in SynthBlockInitExpr() local
5286 DeclRefExpr(*Context, FD, false, FType, VK_RValue, SourceLocation()); in SynthBlockInitExpr()
5400 NewRep = CallExpr::Create(*Context, DRE, InitExprs, FType, VK_LValue, in SynthBlockInitExpr()
5414 NewRep = NoTypeInfoCStyleCastExpr(Context, FType, CK_BitCast, in SynthBlockInitExpr()
/external/llvm/lib/Target/AMDGPU/
DSIISelLowering.cpp595 FunctionType *FType = MF.getFunction()->getFunctionType(); in LowerFormalArguments() local
646 Type *ParamType = FType->getParamType(Arg.getOrigArgIndex()); in LowerFormalArguments()
756 dyn_cast<PointerType>(FType->getParamType(Ins[i].getOrigArgIndex())); in LowerFormalArguments()
792 Type *ParamType = FType->getParamType(Arg.getOrigArgIndex()); in LowerFormalArguments()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/
DRISCVISelLowering.cpp1634 FunctionType *FType = MF.getFunction().getFunctionType(); in analyzeInputArgs() local
1642 ArgTy = FType->getReturnType(); in analyzeInputArgs()
1644 ArgTy = FType->getParamType(Ins[i].getOrigArgIndex()); in analyzeInputArgs()
/external/llvm-project/llvm/lib/Target/RISCV/
DRISCVISelLowering.cpp2263 FunctionType *FType = MF.getFunction().getFunctionType(); in analyzeInputArgs() local
2271 ArgTy = FType->getReturnType(); in analyzeInputArgs()
2273 ArgTy = FType->getParamType(Ins[i].getOrigArgIndex()); in analyzeInputArgs()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DSIISelLowering.cpp1577 FunctionType *FType, in processShaderInputArgs() argument
2035 FunctionType *FType = MF.getFunction().getFunctionType(); in LowerFormalArguments() local
2056 processShaderInputArgs(Splits, CallConv, Ins, Skipped, FType, Info); in LowerFormalArguments()
2153 dyn_cast<PointerType>(FType->getParamType(Ins[i].getOrigArgIndex())); in LowerFormalArguments()
/external/clang/lib/Sema/
DSemaCodeComplete.cpp3979 if (auto FType = Candidate.getFunctionType()) in getParamType() local
3980 if (auto Proto = dyn_cast<FunctionProtoType>(FType)) in getParamType()
/external/llvm-project/llvm/lib/Target/AMDGPU/
DSIISelLowering.cpp1785 FunctionType *FType, in processPSInputArgs() argument
2237 FunctionType *FType = MF.getFunction().getFunctionType(); in LowerFormalArguments() local
2267 processPSInputArgs(Splits, CallConv, Ins, Skipped, FType, Info); in LowerFormalArguments()
2372 dyn_cast<PointerType>(FType->getParamType(Ins[i].getOrigArgIndex())); in LowerFormalArguments()
/external/llvm-project/clang/lib/Sema/
DSemaCodeComplete.cpp5545 if (const auto *FType = Candidate.getFunctionType()) in getParamType() local
5546 if (const auto *Proto = dyn_cast<FunctionProtoType>(FType)) in getParamType()
DSemaOpenMP.cpp5908 QualType FType = TInfo->getType(); in ActOnStartOfFunctionDefinitionInOpenMPDeclareVariantScope() local
5935 FType, UDeclTy, /* OfBlockPointer */ false, in ActOnStartOfFunctionDefinitionInOpenMPDeclareVariantScope()