| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/ |
| H A D | LVELFReader.cpp | 35 CurrentType = nullptr; in createElement() 64 return CurrentType; in createElement() 69 return CurrentType; in createElement() 72 return CurrentType; in createElement() 76 return CurrentType; in createElement() 80 return CurrentType; in createElement() 85 return CurrentType; in createElement() 90 return CurrentType; in createElement() 95 return CurrentType; in createElement() 100 return CurrentType; in createElement() [all …]
|
| H A D | LVCodeViewVisitor.cpp | 2985 CurrentType = nullptr; in createElement() 2989 CurrentType->setIsBase(); in createElement() 2993 return CurrentType; in createElement() 3001 return CurrentType; in createElement() 3005 return CurrentType; in createElement() 3009 CurrentType->setName("*"); in createElement() 3011 return CurrentType; in createElement() 3070 CurrentType = nullptr; in createElement() 3076 return CurrentType; in createElement() 3226 return CurrentType; in createBaseType() [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | LayoutOverrideSource.cpp | 48 std::string CurrentType; in LayoutOverrideSource() local 61 if (!CurrentType.empty()) in LayoutOverrideSource() 62 Layouts[CurrentType] = CurrentLayout; in LayoutOverrideSource() 84 CurrentType = parseName(LineStr); in LayoutOverrideSource() 187 if (!CurrentType.empty()) in LayoutOverrideSource() 188 Layouts[CurrentType] = CurrentLayout; in LayoutOverrideSource()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | GOFFEmitter.cpp | 79 CurrentType = Type; in makeNewRecord() 102 GOFF::RecordType CurrentType; member in __anonc29a6f1b0111::GOFFOstream 148 writeRecordPrefix(OS, CurrentType, RemainingSize, in write_impl() 165 writeRecordPrefix(OS, CurrentType, RemainingSize); in write_impl()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/MC/ |
| H A D | GOFFObjectWriter.cpp | 90 GOFF::RecordType CurrentType; member in __anon51be22db0111::GOFFOstream 158 CurrentType = Type; in newRecord() 199 writeRecordPrefix(OS, CurrentType, RemainingSize, in write_impl() 216 writeRecordPrefix(OS, CurrentType, RemainingSize); in write_impl()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/Interp/ |
| H A D | InterpBuiltin.cpp | 866 QualType CurrentType = E->getTypeSourceInfo()->getType(); in InterpretOffsetOf() local 872 const RecordType *RT = CurrentType->getAs<RecordType>(); in InterpretOffsetOf() 882 CurrentType = MemberDecl->getType().getNonReferenceType(); in InterpretOffsetOf() 889 const ArrayType *AT = S.getCtx().getAsArrayType(CurrentType); in InterpretOffsetOf() 892 CurrentType = AT->getElementType(); in InterpretOffsetOf() 893 CharUnits ElementSize = S.getCtx().getTypeSizeInChars(CurrentType); in InterpretOffsetOf() 904 const RecordType *RT = CurrentType->getAs<RecordType>(); in InterpretOffsetOf() 913 CurrentType = BaseSpec->getType(); in InterpretOffsetOf() 914 const RecordType *BaseRT = CurrentType->getAs<RecordType>(); in InterpretOffsetOf()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Readers/ |
| H A D | LVELFReader.h | 46 LVType *CurrentType = nullptr; variable
|
| H A D | LVCodeViewVisitor.h | 292 LVType *CurrentType = nullptr; variable
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGExprScalar.cpp | 2961 QualType CurrentType = E->getTypeSourceInfo()->getType(); in VisitOffsetOfExpr() local 2974 CurrentType = in VisitOffsetOfExpr() 2975 CGF.getContext().getAsArrayType(CurrentType)->getElementType(); in VisitOffsetOfExpr() 2979 CGF.getContext().getTypeSizeInChars(CurrentType).getQuantity()); in VisitOffsetOfExpr() 2988 RecordDecl *RD = CurrentType->castAs<RecordType>()->getDecl(); in VisitOffsetOfExpr() 3008 CurrentType = MemberDecl->getType(); in VisitOffsetOfExpr() 3021 RecordDecl *RD = CurrentType->castAs<RecordType>()->getDecl(); in VisitOffsetOfExpr() 3025 CurrentType = ON.getBase()->getType(); in VisitOffsetOfExpr() 3028 auto *BaseRT = CurrentType->castAs<RecordType>(); in VisitOffsetOfExpr()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaExpr.cpp | 16737 QualType CurrentType = ArgTy; in BuildBuiltinOffsetOf() local 16743 if (!CurrentType->isDependentType()) { in BuildBuiltinOffsetOf() 16747 << CurrentType); in BuildBuiltinOffsetOf() 16748 CurrentType = AT->getElementType(); in BuildBuiltinOffsetOf() 16750 CurrentType = Context.DependentTy; in BuildBuiltinOffsetOf() 16772 if (CurrentType->isDependentType()) { in BuildBuiltinOffsetOf() 16776 CurrentType = Context.DependentTy; in BuildBuiltinOffsetOf() 16781 if (RequireCompleteType(OC.LocStart, CurrentType, in BuildBuiltinOffsetOf() 16786 const RecordType *RC = CurrentType->getAs<RecordType>(); in BuildBuiltinOffsetOf() 16789 << CurrentType); in BuildBuiltinOffsetOf() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
| H A D | SLPVectorizer.cpp | 320 Type *CurrentType = IV->getType(); in getInsertIndex() local 322 if (const auto *ST = dyn_cast<StructType>(CurrentType)) { in getInsertIndex() 324 CurrentType = ST->getElementType(I); in getInsertIndex() 325 } else if (const auto *AT = dyn_cast<ArrayType>(CurrentType)) { in getInsertIndex() 327 CurrentType = AT->getElementType(); in getInsertIndex() 15339 Type *CurrentType = IV->getType(); in getAggregateSize() local 15341 if (auto *ST = dyn_cast<StructType>(CurrentType)) { in getAggregateSize() 15346 CurrentType = ST->getElementType(0); in getAggregateSize() 15347 } else if (auto *AT = dyn_cast<ArrayType>(CurrentType)) { in getAggregateSize() 15349 CurrentType = AT->getElementType(); in getAggregateSize() [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | ExprConstant.cpp | 13761 QualType CurrentType = OOE->getTypeSourceInfo()->getType(); in VisitOffsetOfExpr() local 13770 const ArrayType *AT = Info.Ctx.getAsArrayType(CurrentType); in VisitOffsetOfExpr() 13773 CurrentType = AT->getElementType(); in VisitOffsetOfExpr() 13774 CharUnits ElementSize = Info.Ctx.getTypeSizeInChars(CurrentType); in VisitOffsetOfExpr() 13781 const RecordType *RT = CurrentType->getAs<RecordType>(); in VisitOffsetOfExpr() 13790 CurrentType = MemberDecl->getType().getNonReferenceType(); in VisitOffsetOfExpr() 13803 const RecordType *RT = CurrentType->getAs<RecordType>(); in VisitOffsetOfExpr() 13811 CurrentType = BaseSpec->getType(); in VisitOffsetOfExpr() 13812 const RecordType *BaseRT = CurrentType->getAs<RecordType>(); in VisitOffsetOfExpr()
|