Home
last modified time | relevance | path

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

12345

/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dmem_map_base.h35 DCHECK((Addr == getBase()) || (Addr + Size == getBase() + getCapacity())); in unmap()
44 DCHECK((Addr >= getBase()) && (Addr + Size <= getBase() + getCapacity()));
52 DCHECK((Addr >= getBase()) && (Addr + Size <= getBase() + getCapacity())); in setMemoryPermission()
61 DCHECK((From >= getBase()) && (From + Size <= getBase() + getCapacity())); in releasePagesToOS()
68 DCHECK((From >= getBase()) && (From + Size <= getBase() + getCapacity())); in releaseAndZeroPagesToOS()
72 uptr getBase() { return invokeImpl(&Derived::getBaseImpl); } in getBase() function
75 bool isAllocated() { return getBase() != 0U; } in isAllocated()
111 DCHECK((Addr >= getBase()) && (Addr + Size <= getBase() + getCapacity())); in dispatch()
115 uptr getBase() { return invokeImpl(&Derived::getBaseImpl); } in getBase() function
118 bool isCreated() { return getBase() != 0U; } in isCreated()
H A Dvector.h89 ExternalBuffer.unmap(ExternalBuffer.getBase(), in destroy()
104 T *NewExternalData = reinterpret_cast<T *>(NewExternalBuffer.getBase()); in reallocate()
H A Dsecondary.h72 MemMap.unmap(MemMap.getBase(), MemMap.getCapacity()); in unmap()
295 Entry.MemMap.unmap(Entry.MemMap.getBase(), Entry.MemMap.getCapacity()); in store()
416 MemMap.unmap(MemMap.getBase(), MemMap.getCapacity()); in disableMemoryTagging()
454 MemMap.unmap(MemMap.getBase(), MemMap.getCapacity()); in empty()
641 MemMapT MemMap = ReservedMemory.dispatch(ReservedMemory.getBase(), in allocate()
643 uptr MapBase = MemMap.getBase(); in allocate()
675 MemMap.unmap(MemMap.getBase(), MemMap.getCapacity()); in allocate()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGAddressAnalysis.cpp99 if (!BasePtr0.getBase().getNode()) in computeAliasing()
103 if (!BasePtr1.getBase().getNode()) in computeAliasing()
133 if (auto *A = dyn_cast<FrameIndexSDNode>(BasePtr0.getBase())) in computeAliasing()
134 if (auto *B = dyn_cast<FrameIndexSDNode>(BasePtr1.getBase())) { in computeAliasing()
145 bool IsFI0 = isa<FrameIndexSDNode>(BasePtr0.getBase()); in computeAliasing()
146 bool IsFI1 = isa<FrameIndexSDNode>(BasePtr1.getBase()); in computeAliasing()
147 bool IsGV0 = isa<GlobalAddressSDNode>(BasePtr0.getBase()); in computeAliasing()
148 bool IsGV1 = isa<GlobalAddressSDNode>(BasePtr1.getBase()); in computeAliasing()
149 bool IsCV0 = isa<ConstantPoolSDNode>(BasePtr0.getBase()); in computeAliasing()
150 bool IsCV1 = isa<ConstantPoolSDNode>(BasePtr1.getBase()); in computeAliasing()
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DVTTBuilder.cpp60 const CXXRecordDecl *RD = Base.getBase(); in LayoutSecondaryVTTs()
85 const CXXRecordDecl *RD = Base.getBase(); in LayoutSecondaryVirtualPointers()
151 VTableIndex, Base.getBase(), VBases); in LayoutSecondaryVirtualPointers()
180 const CXXRecordDecl *RD = Base.getBase(); in LayoutVTT()
188 bool IsPrimaryVTT = Base.getBase() == MostDerivedClass; in LayoutVTT()
210 LayoutVirtualVTTs(Base.getBase(), VBases); in LayoutVTT()
H A DExprClassification.cpp237 if (cast<ArraySubscriptExpr>(E)->getBase()->getType()->isVectorType()) in ClassifyInternal()
238 return ClassifyInternal(Ctx, cast<ArraySubscriptExpr>(E)->getBase()); in ClassifyInternal()
242 auto *Base = cast<ArraySubscriptExpr>(E)->getBase()->IgnoreImpCasts(); in ClassifyInternal()
250 return ClassifyInternal(Ctx, cast<MatrixSubscriptExpr>(E)->getBase()); in ClassifyInternal()
356 return ClassifyInternal(Ctx, cast<ExtVectorElementExpr>(E)->getBase()); in ClassifyInternal()
536 Expr *Base = E->getBase()->IgnoreParens(); in ClassifyMemberExpr()
562 Expr *Base = E->getBase()->IgnoreParenImpCasts(); in ClassifyMemberExpr()
565 return ClassifyInternal(Ctx, E->getBase()); in ClassifyMemberExpr()
H A DComputeDependence.cpp119 return E->getBase()->getDependence() | E->getRowIdx()->getDependence() | in computeDependence()
252 return E->getBase()->getDependence(); in computeDependence()
426 return turnTypeToValueDependence(E->getBase()->getDependence()); in computeDependence()
431 return E->getBase()->getDependence() & ~ExprDependence::Type; in computeDependence()
445 return E->getBase()->getDependence() & ~ExprDependence::Type & in computeDependence()
454 auto D = E->getBase()->getDependence(); in computeDependence()
468 auto D = E->getBase()->getDependence(); in computeDependence()
672 auto D = E->getBase()->getDependence(); in computeDependence()
779 auto D = E->getBase()->getDependence(); in computeDependence()
873 D |= E->getBase()->getDependence(); in computeDependence()
H A DStmtPrinter.cpp1259 if (Node->getBase()) { in VisitObjCIvarRefExpr()
1261 !isImplicitSelf(Node->getBase()->IgnoreImpCasts())) { in VisitObjCIvarRefExpr()
1262 PrintExpr(Node->getBase()); in VisitObjCIvarRefExpr()
1272 else if (Node->isObjectReceiver() && Node->getBase()) { in VisitObjCPropertyRefExpr()
1273 PrintExpr(Node->getBase()); in VisitObjCPropertyRefExpr()
1543 PrintExpr(Node->getBase()); in VisitMatrixSubscriptExpr()
1553 PrintExpr(Node->getBase()); in VisitArraySectionExpr()
1578 PrintExpr(Node->getBase()); in VisitOMPArrayShapingExpr()
1627 if (!Policy.SuppressImplicitBase || !isImplicitThis(Node->getBase())) { in VisitMemberExpr()
1628 PrintExpr(Node->getBase()); in VisitMemberExpr()
[all …]
H A DVTableBuilder.cpp330 const CXXRecordDecl *RD = Base.getBase(); in ComputeBaseOffsets()
380 const CXXRecordDecl *RD = Base.getBase(); in dump()
618 const ASTRecordLayout &Layout = Context.getASTRecordLayout(Base.getBase()); in AddVCallAndVBaseOffsets()
656 AddVBaseOffsets(Base.getBase(), RealBaseOffset); in AddVCallAndVBaseOffsets()
687 const CXXRecordDecl *RD = Base.getBase(); in AddVCallOffsets()
1246 const CXXRecordDecl *BaseRD = Base.getBase(); in ComputeThisAdjustmentBaseOffset()
1247 const CXXRecordDecl *DerivedRD = Derived.getBase(); in ComputeThisAdjustmentBaseOffset()
1483 const CXXRecordDecl *RD = Base.getBase(); in AddMethods()
1689 assert(Base.getBase()->isDynamicClass() && "class does not have a vtable!"); in LayoutPrimaryAndSecondaryVTables()
1702 VCallOffsetMap &VCallOffsets = VCallOffsetsForVBases[Base.getBase()]; in LayoutPrimaryAndSecondaryVTables()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DScopeInfo.cpp86 IsExact = isa<CXXThisExpr>(ME->getBase()->IgnoreParenImpCasts()); in getBaseInfo()
92 IsExact = IE->getBase()->isObjCSelfExpr(); in getBaseInfo()
103 const Expr *DoubleBase = BaseProp->getBase(); in getBaseInfo()
124 const OpaqueValueExpr *OVE = cast<OpaqueValueExpr>(PropE->getBase()); in WeakObjectProfileTy()
150 : Base(getBaseInfo(IvarE->getBase())), Property(IvarE->getDecl()) { in WeakObjectProfileTy()
187 if (isa<OpaqueValueExpr>(RefExpr->getBase())) in markSafeWeakUse()
190 markSafeWeakUse(RefExpr->getBase()); in markSafeWeakUse()
/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DASTTableGen.h167 ASTNode getBase() const { in getBase() function
187 DeclNode getBase() const { return DeclNode(ASTNode::getBase().getRecord()); } in getBase() function
209 TypeNode getBase() const { return TypeNode(ASTNode::getBase().getRecord()); } in getBase() function
231 StmtNode getBase() const { return StmtNode(ASTNode::getBase().getRecord()); } in getBase() function
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DVTTBuilder.h41 : BaseAndIsVirtual(Base.getBase(), BaseIsVirtual), in VTTVTable()
44 const CXXRecordDecl *getBase() const { in getBase() function
57 return BaseSubobject(getBase(), getBaseOffset()); in getBaseSubobject()
H A DBaseSubobject.h43 const CXXRecordDecl *getBase() const { return Base; } in getBase() function
73 return DenseMapInfo<PairTy>::getHashValue(PairTy(Base.getBase(),
H A DExprOpenMP.h76 return getBase()->getEndLoc(); in getEndLoc()
90 Expr *getBase() { return getTrailingObjects<Expr *>()[NumDims]; } in getBase() function
91 const Expr *getBase() const { return getTrailingObjects<Expr *>()[NumDims]; } in getBase() function
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DRecord.h64 const Base *getBase(const RecordDecl *FD) const;
66 const Base *getBase(QualType T) const;
90 const Base *getBase(unsigned I) const { in getBase() function
H A DRecord.cpp45 const Record::Base *Record::getBase(const RecordDecl *FD) const { in getBase() function in Record
51 const Record::Base *Record::getBase(QualType T) const { in getBase() function in Record
H A DPointer.cpp171 Ptr = Ptr.getBase(); in toAPValue()
189 Ptr = Ptr.getBase(); in toAPValue()
193 Ptr = Ptr.getBase(); in toAPValue()
204 Ptr = Ptr.getBase(); in toAPValue()
449 const Record::Base *BD = Record->getBase(I); in toRValue()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DDereferenceChecker.cpp193 AddDerefSource(os, Ranges, AE->getBase()->IgnoreParenCasts(), in reportBug()
201 AddDerefSource(os, Ranges, AE->getBase()->IgnoreParenCasts(), in reportBug()
215 if (M->isArrow() || isDeclRefExprToReference(M->getBase())) { in reportBug()
217 AddDerefSource(os, Ranges, M->getBase()->IgnoreParenCasts(), in reportBug()
225 AddDerefSource(os, Ranges, IV->getBase()->IgnoreParenCasts(), in reportBug()
/freebsd/contrib/llvm-project/llvm/lib/Target/M68k/
H A DM68kCollapseMOVEMPass.cpp71 unsigned getBase() const { in getBase() function in __anon143e10ef0111::MOVEMState
192 .addReg(State.getBase()); in Finish()
196 .addReg(State.getBase()) in Finish()
210 if (State.isStore() == IsStore && State.getBase() == Reg && in ProcessMI()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DLazyMachineBlockFrequencyInfo.cpp77 OwnedMDT->getBase().recalculate(*MF); in calculateIfNotAvailable()
83 OwnedMLI->analyze(MDT->getBase()); in calculateIfNotAvailable()
H A DXRayInstrumentation.cpp178 ComputedMDT.getBase().recalculate(MF); in runOnMachineFunction()
187 ComputedMLI.analyze(MDT->getBase()); in runOnMachineFunction()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAGAddressAnalysis.h49 SDValue getBase() { return Base; } in getBase() function
50 SDValue getBase() const { return Base; } in getBase() function
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSILateBranchLowering.cpp117 MDT->getBase().applyUpdates(DTUpdates); in splitBlock()
145 MDT->getBase().insertEdge(&MBB, EarlyExitBlock); in earlyTerm()
241 MDT->getBase().insertEdge(MBB, EmptyMBBAtEnd); in runOnMachineFunction()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLoadStoreOpt.cpp116 if (!BasePtr0.getBase().isValid() || !BasePtr1.getBase().isValid()) in aliasIsKnownForLoadStore()
123 if (BasePtr0.getBase() == BasePtr1.getBase() && BasePtr0.hasValidOffset() && in aliasIsKnownForLoadStore()
152 auto *Base0Def = getDefIgnoringCopies(BasePtr0.getBase(), MRI); in aliasIsKnownForLoadStore()
153 auto *Base1Def = getDefIgnoringCopies(BasePtr1.getBase(), MRI); in aliasIsKnownForLoadStore()
537 Register StoreBase = BIO.getBase(); in addStoreToCandidate()
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DIntegerLiteralSeparatorFixer.cpp22 static Base getBase(const StringRef IntegerLiteral) { in getBase() function
107 const auto B = getBase(Text); in process()

12345