/freebsd/contrib/llvm-project/clang/include/clang/CodeGen/ |
H A D | CGFunctionInfo.h | 228 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/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGBuilder.h | 412 unsigned FieldIndex, in CreatePreserveStructAccessIndex() argument 421 Index, FieldIndex, DbgInfo), in CreatePreserveStructAccessIndex() 427 Address CreatePreserveUnionAccessIndex(Address Addr, unsigned FieldIndex, in CreatePreserveUnionAccessIndex() argument 430 Addr.getBasePointer(), FieldIndex, DbgInfo)); in CreatePreserveUnionAccessIndex()
|
H A D | CGBlocks.h | 139 unsigned FieldIndex; variable
|
H A D | CGOpenMPRuntime.cpp | 7454 unsigned FieldIndex = FD->getFieldIndex(); in generateInfoForComponentList() local 7458 PartialStruct.LowestElem = {FieldIndex, LowestElem}; in generateInfoForComponentList() 7463 PartialStruct.HighestElem = {FieldIndex, HB}; in generateInfoForComponentList() 7465 PartialStruct.HighestElem = {FieldIndex, LowestElem}; in generateInfoForComponentList() 7469 } else if (FieldIndex < PartialStruct.LowestElem.first) { in generateInfoForComponentList() 7470 PartialStruct.LowestElem = {FieldIndex, LowestElem}; in generateInfoForComponentList() 7471 } else if (FieldIndex > PartialStruct.HighestElem.first) { in generateInfoForComponentList() 7476 PartialStruct.HighestElem = {FieldIndex, HB}; in generateInfoForComponentList() 7478 PartialStruct.HighestElem = {FieldIndex, LowestElem}; in generateInfoForComponentList() 7748 unsigned FieldIndex = RL.getNonVirtualBaseLLVMFieldNo(Base); in getPlainLayout() local [all …]
|
H A D | CGClass.cpp | 1821 unsigned FieldIndex = Field->getFieldIndex(); in PushCleanupForField() local 1824 StartIndex = FieldIndex; in PushCleanupForField() 1827 *StartIndex, FieldIndex); in PushCleanupForField()
|
H A D | CGBlocks.cpp | 2568 return Builder.CreateStructGEP(baseAddr, info.FieldIndex, name); in emitBlockByrefAddress() 2663 info.FieldIndex = types.size() - 1; in getBlockByrefInfo()
|
H A D | CGExpr.cpp | 4732 unsigned FieldIndex) { in getDebugInfoFIndex() argument 4736 if (I == FieldIndex) in getDebugInfoFIndex() 4743 return FieldIndex - Skipped; in getDebugInfoFIndex()
|
H A D | CGCall.cpp | 2993 auto FieldIndex = ArgI.getInAllocaFieldIndex(); in EmitFunctionProlog() local 2995 Builder.CreateStructGEP(ArgStruct, FieldIndex, Arg->getName()); in EmitFunctionProlog()
|
H A D | CodeGenFunction.h | 3323 unsigned getDebugInfoFIndex(const RecordDecl *Rec, unsigned FieldIndex);
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | TypeBasedAliasAnalysis.cpp | 295 TBAAStructTypeNode getFieldType(unsigned FieldIndex) const { in getFieldType() 298 unsigned OpIndex = FirstFieldOpNo + FieldIndex * NumOpsPerField; in getFieldType()
|
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/ |
H A D | Pointer.cpp | 157 unsigned FieldIndex = FD->getFieldIndex(); in toAPValue() local 158 return ASTCtx.toCharUnitsFromBits(Layout.getFieldOffset(FieldIndex)); in toAPValue()
|
H A D | InterpBuiltin.cpp | 1477 unsigned FieldIndex = MemberDecl->getFieldIndex(); in InterpretOffsetOf() local 1478 assert(FieldIndex < RL.getFieldCount() && "offsetof field in wrong type"); in InterpretOffsetOf() 1479 Result += S.getCtx().toCharUnitsFromBits(RL.getFieldOffset(FieldIndex)); in InterpretOffsetOf()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | IRBuilder.cpp | 1243 Value *Base, unsigned FieldIndex, MDNode *DbgInfo) { in CreatePreserveUnionAccessIndex() argument 1252 Value *DIIndex = getInt32(FieldIndex); in CreatePreserveUnionAccessIndex() 1262 Type *ElTy, Value *Base, unsigned Index, unsigned FieldIndex, in CreatePreserveStructAccessIndex() argument 1277 Value *DIIndex = getInt32(FieldIndex); in CreatePreserveStructAccessIndex()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaInit.cpp | 2893 unsigned FieldIndex = NumBases; in CheckDesignatedInitializer() local 2902 ++FieldIndex; in CheckDesignatedInitializer() 2911 FieldIndex = 0; in CheckDesignatedInitializer() 3002 if (StructuredList && FieldIndex >= StructuredList->getNumInits()) in CheckDesignatedInitializer() 3003 StructuredList->resizeInits(SemaRef.Context, FieldIndex + 1); in CheckDesignatedInitializer() 3048 unsigned newStructuredIndex = FieldIndex; in CheckDesignatedInitializer() 3060 ++FieldIndex; in CheckDesignatedInitializer() 3063 StructuredIndex = FieldIndex; in CheckDesignatedInitializer() 3069 unsigned newStructuredIndex = FieldIndex; in CheckDesignatedInitializer() 3083 ++FieldIndex; in CheckDesignatedInitializer() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/ |
H A D | MasmParser.cpp | 4197 size_t FieldIndex = 0; in parseStructInitializer() local 4200 while (getTok().isNot(*EndToken) && FieldIndex < Structure.Fields.size()) { in parseStructInitializer() 4201 const FieldInfo &Field = Structure.Fields[FieldIndex++]; in parseStructInitializer() 4217 if (FieldIndex == Structure.Fields.size()) in parseStructInitializer() 4224 for (const FieldInfo &Field : llvm::drop_begin(Structure.Fields, FieldIndex)) in parseStructInitializer()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | IRBuilder.h | 2613 Value *CreatePreserveUnionAccessIndex(Value *Base, unsigned FieldIndex, 2617 unsigned Index, unsigned FieldIndex,
|