Home
last modified time | relevance | path

Searched refs:FieldIndex (Results 1 – 15 of 15) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/include/clang/CodeGen/
H A DCGFunctionInfo.h228 static ABIArgInfo getInAlloca(unsigned FieldIndex, bool Indirect = false) {
230 AI.setInAllocaFieldIndex(FieldIndex);
439 void setInAllocaFieldIndex(unsigned FieldIndex) { in setInAllocaFieldIndex() argument
441 AllocaFieldIndex = FieldIndex; in setInAllocaFieldIndex()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuilder.h342 unsigned FieldIndex, in CreatePreserveStructAccessIndex() argument
350 Index, FieldIndex, DbgInfo), in CreatePreserveStructAccessIndex()
H A DCGBlocks.h139 unsigned FieldIndex; variable
H A DCGOpenMPRuntime.cpp7425 unsigned FieldIndex = FD->getFieldIndex(); in generateInfoForComponentList() local
7429 PartialStruct.LowestElem = {FieldIndex, LowestElem}; in generateInfoForComponentList()
7434 PartialStruct.HighestElem = {FieldIndex, HB}; in generateInfoForComponentList()
7441 PartialStruct.LowestElem = {FieldIndex, LowestElem}; in generateInfoForComponentList()
7447 PartialStruct.HighestElem = {FieldIndex, HB}; in generateInfoForComponentList()
7717 RecordLayout[FieldIndex] = Base; in getPlainLayout()
7725 unsigned FieldIndex = RL.getVirtualBaseIndex(Base); in getPlainLayout() local
7726 if (RecordLayout[FieldIndex]) in getPlainLayout()
7728 RecordLayout[FieldIndex] = Base; in getPlainLayout()
7736 unsigned FieldIndex = RL.getLLVMFieldNo(Field); in getPlainLayout() local
[all …]
H A DCGClass.cpp1812 unsigned FieldIndex = Field->getFieldIndex(); in PushCleanupForField() local
1815 StartIndex = FieldIndex; in PushCleanupForField()
1818 *StartIndex, FieldIndex); in PushCleanupForField()
H A DCGBlocks.cpp2551 return Builder.CreateStructGEP(baseAddr, info.FieldIndex, name); in emitBlockByrefAddress()
2646 info.FieldIndex = types.size() - 1; in getBlockByrefInfo()
H A DCGExpr.cpp4674 unsigned FieldIndex) { in getDebugInfoFIndex() argument
4678 if (I == FieldIndex) in getDebugInfoFIndex()
4685 return FieldIndex - Skipped; in getDebugInfoFIndex()
H A DCGCall.cpp3011 auto FieldIndex = ArgI.getInAllocaFieldIndex(); in EmitFunctionProlog() local
3013 Builder.CreateStructGEP(ArgStruct, FieldIndex, Arg->getName()); in EmitFunctionProlog()
H A DCodeGenFunction.h3105 unsigned getDebugInfoFIndex(const RecordDecl *Rec, unsigned FieldIndex);
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DTypeBasedAliasAnalysis.cpp294 TBAAStructTypeNode getFieldType(unsigned FieldIndex) const { in getFieldType()
297 unsigned OpIndex = FirstFieldOpNo + FieldIndex * NumOpsPerField; in getFieldType()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/Interp/
H A DInterpBuiltin.cpp879 unsigned FieldIndex = MemberDecl->getFieldIndex(); in InterpretOffsetOf() local
880 assert(FieldIndex < RL.getFieldCount() && "offsetof field in wrong type"); in InterpretOffsetOf()
881 Result += S.getCtx().toCharUnitsFromBits(RL.getFieldOffset(FieldIndex)); in InterpretOffsetOf()
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DIRBuilder.cpp1262 Value *Base, unsigned FieldIndex, MDNode *DbgInfo) { in CreatePreserveUnionAccessIndex() argument
1271 Value *DIIndex = getInt32(FieldIndex); in CreatePreserveUnionAccessIndex()
1281 Type *ElTy, Value *Base, unsigned Index, unsigned FieldIndex, in CreatePreserveStructAccessIndex() argument
1296 Value *DIIndex = getInt32(FieldIndex); in CreatePreserveStructAccessIndex()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaInit.cpp2754 unsigned FieldIndex = NumBases; in CheckDesignatedInitializer() local
2763 ++FieldIndex; in CheckDesignatedInitializer()
2772 FieldIndex = 0; in CheckDesignatedInitializer()
2864 StructuredList->resizeInits(SemaRef.Context, FieldIndex + 1); in CheckDesignatedInitializer()
2909 unsigned newStructuredIndex = FieldIndex; in CheckDesignatedInitializer()
2921 ++FieldIndex; in CheckDesignatedInitializer()
2924 StructuredIndex = FieldIndex; in CheckDesignatedInitializer()
2930 unsigned newStructuredIndex = FieldIndex; in CheckDesignatedInitializer()
2944 ++FieldIndex; in CheckDesignatedInitializer()
2955 StructuredIndex = FieldIndex; in CheckDesignatedInitializer()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DMasmParser.cpp4196 size_t FieldIndex = 0; in parseStructInitializer() local
4199 while (getTok().isNot(*EndToken) && FieldIndex < Structure.Fields.size()) { in parseStructInitializer()
4200 const FieldInfo &Field = Structure.Fields[FieldIndex++]; in parseStructInitializer()
4216 if (FieldIndex == Structure.Fields.size()) in parseStructInitializer()
4223 for (const FieldInfo &Field : llvm::drop_begin(Structure.Fields, FieldIndex)) in parseStructInitializer()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DIRBuilder.h2591 Value *CreatePreserveUnionAccessIndex(Value *Base, unsigned FieldIndex,
2595 unsigned Index, unsigned FieldIndex,