Searched refs:getFieldIndex (Results 1 - 25 of 36) sorted by relevance

12

/netbsd-current/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DPaddingChecker.cpp201 auto FieldOffsetBits = RL.getFieldOffset(FD->getFieldIndex());
238 Field ? -static_cast<int>(Field->getFieldIndex())
242 RHS.Field ? -static_cast<int>(RHS.Field->getFieldIndex())
/netbsd-current/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dctfe.h44 int getFieldIndex(Type *fieldtype, unsigned fieldoffset);
46 /// Same as getFieldIndex, but checks for a direct match with the VarDeclaration
59 /// Same as getFieldIndex, but checks for a direct match with the VarDeclaration
H A Dctfeexpr.c42 int ClassReferenceExp::getFieldIndex(Type *fieldtype, unsigned fieldoffset) function in class:ClassReferenceExp
64 // Same as getFieldIndex, but checks for a direct match with the VarDeclaration
100 // Same as getFieldIndex, but checks for a direct match with the VarDeclaration
722 i = ((ClassReferenceExp *)ex)->getFieldIndex(e->type, v->offset);
724 i = se->getFieldIndex(e->type, v->offset);
H A Dexpression.h489 int getFieldIndex(Type *type, unsigned offset);
H A Dexpression.c4071 int i = getFieldIndex(type, offset);
4118 int StructLiteralExp::getFieldIndex(Type *type, unsigned offset) function in class:StructLiteralExp
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/AST/
H A DASTImporter.h606 static llvm::Optional<unsigned> getFieldIndex(Decl *F);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
H A DCoroFrame.cpp335 uint32_t getFieldIndex(Value *V) const { function in struct:__anon2797::FrameDataInfo
548 auto Field = B.getLayoutField(getFieldIndex(I));
986 auto Index = FrameData.getFieldIndex(V);
1002 auto Index = FrameData.getFieldIndex(V);
1507 FieldIDType Index = FrameData.getFieldIndex(Orig);
1586 auto Index = FrameData.getFieldIndex(Def);
1605 FrameTy->getElementType(FrameData.getFieldIndex(E.first)), GEP,
/netbsd-current/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/
H A DUninitializedObjectChecker.cpp589 auto It = CXXParent->captures_begin() + Field->getFieldIndex();
/netbsd-current/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCodeGenTBAA.cpp348 uint64_t BitOffset = Layout.getFieldOffset(Field->getFieldIndex());
H A DCGRecordLayoutBuilder.cpp178 return Layout.getFieldOffset(FD->getFieldIndex());
609 Layout.getFieldOffset(F->getFieldIndex()));
H A DCGClass.cpp1018 FirstFieldOffset = RecLayout.getFieldOffset(F->getFieldIndex());
1020 LastAddedFieldIndex = F->getFieldIndex();
1025 // F->getFieldIndex() == LastAddedFieldIndex + 1
1028 assert(F->getFieldIndex() >= LastAddedFieldIndex + 1 &&
1030 LastAddedFieldIndex = F->getFieldIndex();
1035 uint64_t FOffset = RecLayout.getFieldOffset(F->getFieldIndex());
1722 PoisonMembers(CGF, (*Start)->getFieldIndex(),
1723 It == Fields.end() ? -1 : (*It)->getFieldIndex());
H A DSwiftCallingConv.cpp164 auto fieldOffsetInBits = layout.getFieldOffset(field->getFieldIndex());
H A DCGExpr.cpp4254 addr, idx, CGF.getDebugInfoFIndex(rec, field->getFieldIndex()), DbgInfo);
4303 Addr, Idx, getDebugInfoFIndex(rec, field->getFieldIndex()),
4357 Layout.getFieldOffset(field->getFieldIndex()) / CharWidth;
4395 addr.getPointer(), getDebugInfoFIndex(rec, field->getFieldIndex()), DbgInfo),
H A DCGNonTrivialStruct.cpp63 .getFieldOffset(FD->getFieldIndex())
H A DCGExprAgg.cpp2016 if (Layout.getFieldOffset(FD->getFieldIndex()) +
/netbsd-current/external/apache2/llvm/dist/clang/lib/AST/
H A DAPValue.cpp507 ID.AddInteger(getUnionField()->getFieldIndex() + 1);
832 getStructField(FI->getFieldIndex()).
H A DExprConstant.cpp2390 Value.getStructField(I->getFieldIndex()),
3129 unsigned I = FD->getFieldIndex();
3774 O = &O->getStructField(Field->getFieldIndex());
4759 Result.getStructField(I->getFieldIndex()));
6210 FieldIt->getFieldIndex() > FD->getFieldIndex()) {
6221 Result.getStructField(FieldIt->getFieldIndex()));
6254 Value = &Result.getStructField(FD->getFieldIndex());
6289 Value = &Value->getStructField(FD->getFieldIndex());
6330 Result.getStructField(FieldIt->getFieldIndex()));
[all...]
H A DItaniumMangle.cpp5514 V.getStructField(Fields.back()->getFieldIndex())))) {
5535 V.getStructField(Fields[I]->getFieldIndex()),
5777 if (FD->getFieldIndex())
5778 Out << (FD->getFieldIndex() - 1);
H A DDecl.cpp4205 unsigned FieldDecl::getFieldIndex() const {
4208 return Canonical->getFieldIndex();
H A DASTImporter.cpp3619 ASTImporter::getFieldIndex(D) !=
3620 ASTImporter::getFieldIndex(FoundField))
3706 ASTImporter::getFieldIndex(D) !=
3707 ASTImporter::getFieldIndex(FoundField))
8132 Optional<unsigned> ASTImporter::getFieldIndex(Decl *F) {
/netbsd-current/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dctfeexpr.d61 private int getFieldIndex(Type fieldtype, uint fieldoffset)
82 // Same as getFieldIndex, but checks for a direct match with the VarDeclaration
110 * Same as getFieldIndex, but checks for a direct match with the VarDeclaration
732 ? ex.isClassReferenceExp().getFieldIndex(e.type, v.offset)
733 : se.getFieldIndex(e.type, v.offset);
H A Dexpression.h481 int getFieldIndex(Type *type, unsigned offset);
/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaStmtAsm.cpp865 unsigned i = FD->getFieldIndex();
H A DSemaInit.cpp2669 (*NextField)->getFieldIndex() > Field->getFieldIndex() + 1)) {
2683 PrevField->getFieldIndex() > KnownField->getFieldIndex()) {
2687 unsigned OldIndex = NumBases + PrevField->getFieldIndex();
/netbsd-current/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DRegionStore.cpp1754 unsigned Index = FD->getFieldIndex();

Completed in 418 milliseconds

12