/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
H A D | mem_map_base.h | 35 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 D | vector.h | 89 ExternalBuffer.unmap(ExternalBuffer.getBase(), in destroy() 104 T *NewExternalData = reinterpret_cast<T *>(NewExternalBuffer.getBase()); in reallocate()
|
H A D | secondary.h | 72 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 D | SelectionDAGAddressAnalysis.cpp | 99 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 D | VTTBuilder.cpp | 60 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 D | ExprClassification.cpp | 237 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 D | ComputeDependence.cpp | 119 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 D | StmtPrinter.cpp | 1259 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 D | VTableBuilder.cpp | 330 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 D | ScopeInfo.cpp | 86 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 D | ASTTableGen.h | 167 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 D | VTTBuilder.h | 41 : BaseAndIsVirtual(Base.getBase(), BaseIsVirtual), in VTTVTable() 44 const CXXRecordDecl *getBase() const { in getBase() function 57 return BaseSubobject(getBase(), getBaseOffset()); in getBaseSubobject()
|
H A D | BaseSubobject.h | 43 const CXXRecordDecl *getBase() const { return Base; } in getBase() function 73 return DenseMapInfo<PairTy>::getHashValue(PairTy(Base.getBase(),
|
H A D | ExprOpenMP.h | 76 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 D | Record.h | 64 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 D | Record.cpp | 45 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 D | Pointer.cpp | 171 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 D | DereferenceChecker.cpp | 193 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 D | M68kCollapseMOVEMPass.cpp | 71 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 D | LazyMachineBlockFrequencyInfo.cpp | 77 OwnedMDT->getBase().recalculate(*MF); in calculateIfNotAvailable() 83 OwnedMLI->analyze(MDT->getBase()); in calculateIfNotAvailable()
|
H A D | XRayInstrumentation.cpp | 178 ComputedMDT.getBase().recalculate(MF); in runOnMachineFunction() 187 ComputedMLI.analyze(MDT->getBase()); in runOnMachineFunction()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | SelectionDAGAddressAnalysis.h | 49 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 D | SILateBranchLowering.cpp | 117 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 D | LoadStoreOpt.cpp | 116 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 D | IntegerLiteralSeparatorFixer.cpp | 22 static Base getBase(const StringRef IntegerLiteral) { in getBase() function 107 const auto B = getBase(Text); in process()
|