| /freebsd-14.2/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 | mem_map_linux.cpp | 135 MapBase = MemMap.getBase(); in createImpl() 142 if (munmap(reinterpret_cast<void *>(getBase()), getCapacity()) != 0) in releaseImpl() 143 reportUnmapError(getBase(), getCapacity()); in releaseImpl()
|
| H A D | vector.h | 84 ExternalBuffer.unmap(ExternalBuffer.getBase(), in destroy() 96 T *NewExternalData = reinterpret_cast<T *>(NewExternalBuffer.getBase()); in reallocate()
|
| H A D | secondary.h | 72 MemMap.unmap(MemMap.getBase(), MemMap.getCapacity()); in unmap() 270 Entry.MemMap.unmap(Entry.MemMap.getBase(), Entry.MemMap.getCapacity()); in store() 390 MemMap.unmap(MemMap.getBase(), MemMap.getCapacity()); in disableMemoryTagging() 428 MemMap.unmap(MemMap.getBase(), MemMap.getCapacity()); in empty() 615 MemMapT MemMap = ReservedMemory.dispatch(ReservedMemory.getBase(), in allocate() 617 uptr MapBase = MemMap.getBase(); in allocate() 649 MemMap.unmap(MemMap.getBase(), MemMap.getCapacity()); in allocate()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAGAddressAnalysis.cpp | 100 if (!BasePtr0.getBase().getNode()) in computeAliasing() 104 if (!BasePtr1.getBase().getNode()) in computeAliasing() 137 if (auto *A = dyn_cast<FrameIndexSDNode>(BasePtr0.getBase())) in computeAliasing() 138 if (auto *B = dyn_cast<FrameIndexSDNode>(BasePtr1.getBase())) { in computeAliasing() 149 bool IsFI0 = isa<FrameIndexSDNode>(BasePtr0.getBase()); in computeAliasing() 150 bool IsFI1 = isa<FrameIndexSDNode>(BasePtr1.getBase()); in computeAliasing() 151 bool IsGV0 = isa<GlobalAddressSDNode>(BasePtr0.getBase()); in computeAliasing() 152 bool IsGV1 = isa<GlobalAddressSDNode>(BasePtr1.getBase()); in computeAliasing() 153 bool IsCV0 = isa<ConstantPoolSDNode>(BasePtr0.getBase()); in computeAliasing() 154 bool IsCV1 = isa<ConstantPoolSDNode>(BasePtr1.getBase()); in computeAliasing() [all …]
|
| /freebsd-14.2/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 | 224 if (cast<ArraySubscriptExpr>(E)->getBase()->getType()->isVectorType()) in ClassifyInternal() 225 return ClassifyInternal(Ctx, cast<ArraySubscriptExpr>(E)->getBase()); in ClassifyInternal() 229 auto *Base = cast<ArraySubscriptExpr>(E)->getBase()->IgnoreImpCasts(); in ClassifyInternal() 237 return ClassifyInternal(Ctx, cast<MatrixSubscriptExpr>(E)->getBase()); in ClassifyInternal() 343 return ClassifyInternal(Ctx, cast<ExtVectorElementExpr>(E)->getBase()); in ClassifyInternal() 523 Expr *Base = E->getBase()->IgnoreParens(); in ClassifyMemberExpr() 549 Expr *Base = E->getBase()->IgnoreParenImpCasts(); in ClassifyMemberExpr() 552 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() 394 return turnTypeToValueDependence(E->getBase()->getDependence()); in computeDependence() 399 return E->getBase()->getDependence() & ~ExprDependence::Type; in computeDependence() 413 return E->getBase()->getDependence() & ~ExprDependence::Type & in computeDependence() 422 auto D = E->getBase()->getDependence(); in computeDependence() 431 auto D = E->getBase()->getDependence(); in computeDependence() 635 auto D = E->getBase()->getDependence(); in computeDependence() 740 auto D = E->getBase()->getDependence(); in computeDependence() 834 D |= E->getBase()->getDependence(); in computeDependence()
|
| H A D | VTableBuilder.cpp | 330 const CXXRecordDecl *RD = Base.getBase(); in ComputeBaseOffsets() 380 const CXXRecordDecl *RD = Base.getBase(); in dump() 687 const CXXRecordDecl *RD = Base.getBase(); in AddVCallOffsets() 1216 const CXXRecordDecl *BaseRD = Base.getBase(); in ComputeThisAdjustmentBaseOffset() 1453 const CXXRecordDecl *RD = Base.getBase(); in AddMethods() 1668 if (Base.getBase() == MostDerivedClass) in LayoutPrimaryAndSecondaryVTables() 1687 const CXXRecordDecl *RD = Base.getBase(); in LayoutPrimaryAndSecondaryVTables() 1750 const CXXRecordDecl *RD = Base.getBase(); in LayoutSecondaryVTables() 2057 Base.getBase()->printQualifiedName(Out); in dumpLayout() 2948 const CXXRecordDecl *RD = Base.getBase(); in AddMethods() [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | ScopeInfo.cpp | 85 IsExact = isa<CXXThisExpr>(ME->getBase()->IgnoreParenImpCasts()); in getBaseInfo() 91 IsExact = IE->getBase()->isObjCSelfExpr(); in getBaseInfo() 102 const Expr *DoubleBase = BaseProp->getBase(); in getBaseInfo() 123 const OpaqueValueExpr *OVE = cast<OpaqueValueExpr>(PropE->getBase()); in WeakObjectProfileTy() 149 : Base(getBaseInfo(IvarE->getBase())), Property(IvarE->getDecl()) { in WeakObjectProfileTy() 186 if (isa<OpaqueValueExpr>(RefExpr->getBase())) in markSafeWeakUse() 189 markSafeWeakUse(RefExpr->getBase()); in markSafeWeakUse()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | LazyMachineBlockFrequencyInfo.cpp | 79 OwnedMDT->getBase().recalculate(*MF); in calculateIfNotAvailable() 85 OwnedMLI->getBase().analyze(MDT->getBase()); in calculateIfNotAvailable()
|
| H A D | XRayInstrumentation.cpp | 176 ComputedMDT.getBase().recalculate(MF); in runOnMachineFunction() 184 ComputedMLI.getBase().analyze(MDT->getBase()); in runOnMachineFunction()
|
| /freebsd-14.2/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-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | ExprOpenMP.h | 85 Expr *getBase() { return cast<Expr>(SubExprs[BASE]); } in getBase() function 86 const Expr *getBase() const { return cast<Expr>(SubExprs[BASE]); } in getBase() function 114 return getBase()->getBeginLoc(); in getBeginLoc() 128 return getBase()->getExprLoc(); in getExprLoc() 200 return getBase()->getEndLoc(); in getEndLoc() 214 Expr *getBase() { return getTrailingObjects<Expr *>()[NumDims]; } in getBase() function 215 const Expr *getBase() const { return getTrailingObjects<Expr *>()[NumDims]; } in getBase() function
|
| 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(),
|
| /freebsd-14.2/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; 91 const Base *getBase(unsigned I) const { in getBase() function
|
| H A D | Record.cpp | 36 const Record::Base *Record::getBase(const RecordDecl *FD) const { in getBase() function in Record 42 const Record::Base *Record::getBase(QualType T) const { in getBase() function in Record
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | DereferenceChecker.cpp | 186 AddDerefSource(os, Ranges, AE->getBase()->IgnoreParenCasts(), in reportBug() 194 AddDerefSource(os, Ranges, AE->getBase()->IgnoreParenCasts(), in reportBug() 208 if (M->isArrow() || isDeclRefExprToReference(M->getBase())) { in reportBug() 210 AddDerefSource(os, Ranges, M->getBase()->IgnoreParenCasts(), in reportBug() 218 AddDerefSource(os, Ranges, IV->getBase()->IgnoreParenCasts(), in reportBug()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/M68k/ |
| H A D | M68kCollapseMOVEMPass.cpp | 71 unsigned getBase() const { in getBase() function in __anond7d71e650111::MOVEMState 192 .addReg(State.getBase()); in Finish() 196 .addReg(State.getBase()) in Finish() 210 if (State.isStore() == IsStore && State.getBase() == Reg && in ProcessMI()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | SelectionDAGAddressAnalysis.h | 48 SDValue getBase() { return Base; } in getBase() function 49 SDValue getBase() const { return Base; } in getBase() function
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/ |
| H A D | LoadStoreOpt.h | 46 Register getBase() { return BaseReg; } in getBase() function 47 Register getBase() const { return BaseReg; } in getBase() function
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Analysis/Analyses/ |
| H A D | Dominators.h | 56 DominatorTreeBase &getBase() { return DT; } in getBase() function 80 if (DT.compare(Other.getBase())) in compare() 227 : PostDomTree(cfg), IDFCalc(PostDomTree.getBase()) {}
|
| /freebsd-14.2/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-14.2/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() 154 auto *Base0Def = getDefIgnoringCopies(BasePtr0.getBase(), MRI); in aliasIsKnownForLoadStore() 155 auto *Base1Def = getDefIgnoringCopies(BasePtr1.getBase(), MRI); in aliasIsKnownForLoadStore() 523 Register StoreBase = BIO.getBase(); in addStoreToCandidate()
|