| /freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_ilist.h | 27 template <typename Base, INode Base::*Node, typename Elem> 41 template <typename Base, INode Base::*Node, typename Elem = Base> 76 template <typename Base, INode Base::*Node, typename Elem> 77 IList<Base, Node, Elem>::IList() { in IList() 81 template <typename Base, INode Base::*Node, typename Elem> 82 void IList<Base, Node, Elem>::PushFront(Elem* e) { in PushFront() 86 template <typename Base, INode Base::*Node, typename Elem> 87 void IList<Base, Node, Elem>::PushBack(Elem* e) { in PushBack() 91 template <typename Base, INode Base::*Node, typename Elem> 92 void IList<Base, Node, Elem>::Push(Elem* e, INode* after) { in Push() [all …]
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
| H A D | Environment.h | 19 using Base = llvm::StringMap<std::string>; variable 41 using Base::const_iterator; 42 using Base::iterator; 43 using Base::value_type; 45 using Base::begin; 46 using Base::clear; 47 using Base::count; 48 using Base::empty; 49 using Base::end; 50 using Base::erase; [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | VTTBuilder.cpp | 41 void VTTBuilder::AddVTablePointer(BaseSubobject Base, uint64_t VTableIndex, in AddVTablePointer() argument 45 assert(!SecondaryVirtualPointerIndices.count(Base) && in AddVTablePointer() 47 SecondaryVirtualPointerIndices[Base] = VTTComponents.size(); in AddVTablePointer() 55 VTTComponents.push_back(VTTComponent(VTableIndex, Base)); in AddVTablePointer() 58 void VTTBuilder::LayoutSecondaryVTTs(BaseSubobject Base) { in LayoutSecondaryVTTs() argument 59 const CXXRecordDecl *RD = Base.getBase(); in LayoutSecondaryVTTs() 70 CharUnits BaseOffset = Base.getBaseOffset() + in LayoutSecondaryVTTs() 79 VTTBuilder::LayoutSecondaryVirtualPointers(BaseSubobject Base, in LayoutSecondaryVirtualPointers() argument 84 const CXXRecordDecl *RD = Base.getBase(); in LayoutSecondaryVirtualPointers() 118 BaseOffset = Base.getBaseOffset() + in LayoutSecondaryVirtualPointers() [all …]
|
| H A D | CXXInheritance.cpp | 65 bool CXXRecordDecl::isDerivedFrom(const CXXRecordDecl *Base) const { in isDerivedFrom() 68 return isDerivedFrom(Base, Paths); in isDerivedFrom() 71 bool CXXRecordDecl::isDerivedFrom(const CXXRecordDecl *Base, in isDerivedFrom() argument 73 if (getCanonicalDecl() == Base->getCanonicalDecl()) in isDerivedFrom() 78 const CXXRecordDecl *BaseDecl = Base->getCanonicalDecl(); in isDerivedFrom() 87 bool CXXRecordDecl::isVirtuallyDerivedFrom(const CXXRecordDecl *Base) const { in isVirtuallyDerivedFrom() 94 if (getCanonicalDecl() == Base->getCanonicalDecl()) in isVirtuallyDerivedFrom() 99 const CXXRecordDecl *BaseDecl = Base->getCanonicalDecl(); in isVirtuallyDerivedFrom() 107 bool CXXRecordDecl::isProvablyNotDerivedFrom(const CXXRecordDecl *Base) const { in isProvablyNotDerivedFrom() 108 const CXXRecordDecl *TargetDecl = Base->getCanonicalDecl(); in isProvablyNotDerivedFrom() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAGAddressAnalysis.cpp | 28 if (!Base.getNode() || !Other.Base.getNode()) in equalBaseIndex() 37 if (Other.Base == Base) in equalBaseIndex() 41 if (auto *A = dyn_cast<GlobalAddressSDNode>(Base)) { in equalBaseIndex() 42 if (auto *B = dyn_cast<GlobalAddressSDNode>(Other.Base)) in equalBaseIndex() 52 if (auto *A = dyn_cast<ConstantPoolSDNode>(Base)) { in equalBaseIndex() 53 if (auto *B = dyn_cast<ConstantPoolSDNode>(Other.Base)) { in equalBaseIndex() 72 if (auto *A = dyn_cast<FrameIndexSDNode>(Base)) in equalBaseIndex() 73 if (auto *B = dyn_cast<FrameIndexSDNode>(Other.Base)) { in equalBaseIndex() 203 SDValue Base = DAG.getTargetLoweringInfo().unwrapAddress(Ptr); in matchLSNode() local 223 switch (Base->getOpcode()) { in matchLSNode() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/ |
| H A D | Pointer.h | 41 unsigned Base; member 120 Pointer(Block *Pointee, unsigned Base, uint64_t Offset); 141 P.asBlockPointer().Base == asBlockPointer().Base && 172 if (asBlockPointer().Base == RootPtrMark) in atIndex() 180 return Pointer(asBlockPointer().Pointee, asBlockPointer().Base, in atIndex() 181 asBlockPointer().Base + Off); in atIndex() 208 unsigned Base = asBlockPointer().Base; in narrow() local 210 if (Base == RootPtrMark) in narrow() 216 return Pointer(asBlockPointer().Pointee, Base, PastEndMark); in narrow() 218 if (Offset != Base) { in narrow() [all …]
|
| H A D | MemberPointer.h | 24 Pointer Base; 28 MemberPointer(Pointer Base, const ValueDecl *Dcl, int32_t PtrOffset) in MemberPointer() argument 29 : Base(Base), Dcl(Dcl), PtrOffset(PtrOffset) {} in MemberPointer() 33 MemberPointer(Pointer Base, const ValueDecl *Dcl) : Base(Base), Dcl(Dcl) {} in MemberPointer() argument 56 return Base.atField(-PtrOffset); in getBase() 57 return Base.atFieldSub(PtrOffset); in getBase() 73 if (Base.isZero()) in atInstanceBase() 74 return MemberPointer(Base, Dcl, Offset); in atInstanceBase() 75 return MemberPointer(this->Base, Dcl, Offset + PtrOffset); in atInstanceBase() 79 assert(this->Base.isZero()); in takeInstance() [all …]
|
| H A D | Record.h | 37 struct Base { struct 47 using BaseList = llvm::SmallVector<Base, 8>; argument 49 using VirtualBaseList = llvm::SmallVector<Base, 2>; 67 const Base *getBase(const RecordDecl *FD) const; 69 const Base *getBase(QualType T) const; 71 const Base *getVirtualBase(const RecordDecl *RD) const; 93 const Base *getBase(unsigned I) const { in getBase() 104 const Base *getVirtualBase(unsigned I) const { return &VirtualBases[I]; } in getVirtualBase() 129 llvm::DenseMap<const RecordDecl *, const Base *> BaseMap; 133 llvm::DenseMap<const RecordDecl *, Base *> VirtualBaseMap;
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/VE/ |
| H A D | VEISelDAGToDAG.cpp | 45 bool selectADDRrri(SDValue N, SDValue &Base, SDValue &Index, SDValue &Offset); 46 bool selectADDRrii(SDValue N, SDValue &Base, SDValue &Index, SDValue &Offset); 47 bool selectADDRzri(SDValue N, SDValue &Base, SDValue &Index, SDValue &Offset); 48 bool selectADDRzii(SDValue N, SDValue &Base, SDValue &Index, SDValue &Offset); 49 bool selectADDRri(SDValue N, SDValue &Base, SDValue &Offset); 50 bool selectADDRzi(SDValue N, SDValue &Base, SDValue &Offset); 64 bool matchADDRrr(SDValue N, SDValue &Base, SDValue &Index); 65 bool matchADDRri(SDValue N, SDValue &Base, SDValue &Offset); 80 bool VEDAGToDAGISel::selectADDRrri(SDValue Addr, SDValue &Base, SDValue &Index, in INITIALIZE_PASS() 91 if (matchADDRrr(LHS, Base, Index)) { in INITIALIZE_PASS() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/ARC/ |
| H A D | ARCISelDAGToDAG.cpp | 53 bool SelectFrameADDR_ri(SDValue Addr, SDValue &Base, SDValue &Offset); 54 bool SelectAddrModeS9(SDValue Addr, SDValue &Base, SDValue &Offset); 55 bool SelectAddrModeImm(SDValue Addr, SDValue &Base, SDValue &Offset); 56 bool SelectAddrModeFar(SDValue Addr, SDValue &Base, SDValue &Offset); 83 bool ARCDAGToDAGISel::SelectAddrModeImm(SDValue Addr, SDValue &Base, in SelectAddrModeImm() argument 86 Base = Addr.getOperand(0); in SelectAddrModeImm() 93 bool ARCDAGToDAGISel::SelectAddrModeS9(SDValue Addr, SDValue &Base, in SelectAddrModeS9() argument 104 Base = CurDAG->getTargetFrameIndex( in SelectAddrModeS9() 107 Base = Addr; in SelectAddrModeS9() 121 Base = Addr.getOperand(0); in SelectAddrModeS9() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
| H A D | MipsSEISelDAGToDAG.h | 43 bool selectAddrFrameIndex(SDValue Addr, SDValue &Base, SDValue &Offset) const; 44 bool selectAddrFrameIndexOffset(SDValue Addr, SDValue &Base, SDValue &Offset, 48 bool selectAddrRegImm(SDValue Addr, SDValue &Base, 51 bool selectAddrDefault(SDValue Addr, SDValue &Base, 54 bool selectIntAddr(SDValue Addr, SDValue &Base, 57 bool selectAddrRegImm9(SDValue Addr, SDValue &Base, 60 bool selectAddrRegImm11(SDValue Addr, SDValue &Base, 63 bool selectAddrRegImm12(SDValue Addr, SDValue &Base, 66 bool selectAddrRegImm16(SDValue Addr, SDValue &Base, 69 bool selectIntAddr11MM(SDValue Addr, SDValue &Base, [all …]
|
| H A D | MipsISelDAGToDAG.h | 53 virtual bool selectAddrRegImm(SDValue Addr, SDValue &Base, 57 virtual bool selectAddrDefault(SDValue Addr, SDValue &Base, 61 virtual bool selectIntAddr(SDValue Addr, SDValue &Base, 64 virtual bool selectIntAddr11MM(SDValue Addr, SDValue &Base, 67 virtual bool selectIntAddr12MM(SDValue Addr, SDValue &Base, 70 virtual bool selectIntAddr16MM(SDValue Addr, SDValue &Base, 73 virtual bool selectIntAddrLSL2MM(SDValue Addr, SDValue &Base, 77 virtual bool selectIntAddrSImm10(SDValue Addr, SDValue &Base, 80 virtual bool selectIntAddrSImm10Lsl1(SDValue Addr, SDValue &Base, 83 virtual bool selectIntAddrSImm10Lsl2(SDValue Addr, SDValue &Base, [all …]
|
| H A D | MipsSEISelDAGToDAG.cpp | 264 bool MipsSEDAGToDAGISel::selectAddrFrameIndex(SDValue Addr, SDValue &Base, in selectAddrFrameIndex() argument 269 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), ValTy); in selectAddrFrameIndex() 278 SDValue Addr, SDValue &Base, SDValue &Offset, unsigned OffsetBits, in selectAddrFrameIndexOffset() argument 288 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), ValTy); in selectAddrFrameIndexOffset() 290 Base = Addr.getOperand(0); in selectAddrFrameIndexOffset() 308 bool MipsSEDAGToDAGISel::selectAddrRegImm(SDValue Addr, SDValue &Base, in selectAddrRegImm() argument 311 if (selectAddrFrameIndex(Addr, Base, Offset)) in selectAddrRegImm() 316 Base = Addr.getOperand(0); in selectAddrRegImm() 328 if (selectAddrFrameIndexOffset(Addr, Base, Offset, 16)) in selectAddrRegImm() 346 Base = Addr.getOperand(0); in selectAddrRegImm() [all …]
|
| /freebsd/sys/contrib/device-tree/Bindings/clock/ |
| H A D | lpc1850-cgu.txt | 42 specific LPC part. Base clocks are numbered from 0 to 27. 45 0 BASE_SAFE_CLK Base safe clock (always on) for WWDT 46 1 BASE_USB0_CLK Base clock for USB0 47 2 BASE_PERIPH_CLK Base clock for Cortex-M0SUB subsystem, 49 3 BASE_USB1_CLK Base clock for USB1 52 5 BASE_SPIFI_CLK Base clock for SPIFI 53 6 BASE_SPI_CLK Base clock for SPI 54 7 BASE_PHY_RX_CLK Base clock for Ethernet PHY Receive clock 55 8 BASE_PHY_TX_CLK Base clock for Ethernet PHY Transmit clock 56 9 BASE_APB1_CLK Base clock for APB peripheral block # 1 [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | MachineDominanceFrontier.h | 21 ForwardDominanceFrontierBase<MachineBasicBlock> Base; variable 38 ForwardDominanceFrontierBase<MachineBasicBlock> &getBase() { return Base; } in getBase() 41 return Base.getRoots(); in getRoots() 45 return Base.getRoot(); in getRoot() 49 return Base.isPostDominator(); in isPostDominator() 53 return Base.begin(); in begin() 57 return Base.begin(); in begin() 61 return Base.end(); in end() 65 return Base.end(); in end() 69 return Base.find(B); in find() [all …]
|
| H A D | SelectionDAGAddressAnalysis.h | 36 SDValue Base; 43 BaseIndexOffset(SDValue Base, SDValue Index, bool IsIndexSignExt) in BaseIndexOffset() argument 44 : Base(Base), Index(Index), IsIndexSignExt(IsIndexSignExt) {} in BaseIndexOffset() 45 BaseIndexOffset(SDValue Base, SDValue Index, int64_t Offset, in BaseIndexOffset() argument 47 : Base(Base), Index(Index), Offset(Offset), in BaseIndexOffset() 50 SDValue getBase() { return Base; } in getBase() 51 SDValue getBase() const { return Base; } in getBase()
|
| /freebsd/contrib/llvm-project/clang/lib/Tooling/ |
| H A D | GuessTargetAndModeCompilationDatabase.cpp | 19 TargetAndModeAdderDatabase(std::unique_ptr<CompilationDatabase> Base) in TargetAndModeAdderDatabase() argument 20 : Base(std::move(Base)) { in TargetAndModeAdderDatabase() 21 assert(this->Base != nullptr); in TargetAndModeAdderDatabase() 25 return Base->getAllFiles(); in getAllFiles() 29 return addTargetAndMode(Base->getAllCompileCommands()); in getAllCompileCommands() 34 return addTargetAndMode(Base->getCompileCommands(FilePath)); in getCompileCommands() 47 std::unique_ptr<CompilationDatabase> Base; member in clang::tooling::__anona96c63bf0111::TargetAndModeAdderDatabase 52 inferTargetAndDriverMode(std::unique_ptr<CompilationDatabase> Base) { in inferTargetAndDriverMode() argument 53 return std::make_unique<TargetAndModeAdderDatabase>(std::move(Base)); in inferTargetAndDriverMode()
|
| H A D | LocateToolCompilationDatabase.cpp | 21 LocationAdderDatabase(std::unique_ptr<CompilationDatabase> Base) in LocationAdderDatabase() argument 22 : Base(std::move(Base)) { in LocationAdderDatabase() 23 assert(this->Base != nullptr); in LocationAdderDatabase() 27 return Base->getAllFiles(); in getAllFiles() 31 return addLocation(Base->getAllCompileCommands()); in getAllCompileCommands() 36 return addLocation(Base->getCompileCommands(FilePath)); in getCompileCommands() 61 std::unique_ptr<CompilationDatabase> Base; member in clang::tooling::__anon52c0036f0111::LocationAdderDatabase 66 inferToolLocation(std::unique_ptr<CompilationDatabase> Base) { in inferToolLocation() argument 67 return std::make_unique<LocationAdderDatabase>(std::move(Base)); in inferToolLocation()
|
| H A D | ExpandResponseFilesCompilationDatabase.cpp | 24 std::unique_ptr<CompilationDatabase> Base, in ExpandResponseFilesDatabase() argument 27 : Base(std::move(Base)), Tokenizer(Tokenizer), FS(std::move(FS)) { in ExpandResponseFilesDatabase() 28 assert(this->Base != nullptr); in ExpandResponseFilesDatabase() 34 return Base->getAllFiles(); in getAllFiles() 39 return expand(Base->getCompileCommands(FilePath)); in getCompileCommands() 43 return expand(Base->getAllCompileCommands()); in getAllCompileCommands() 55 std::unique_ptr<CompilationDatabase> Base; member in clang::tooling::__anonb32a717b0111::ExpandResponseFilesDatabase 63 expandResponseFiles(std::unique_ptr<CompilationDatabase> Base, in expandResponseFiles() argument 69 std::move(Base), Tokenizer, std::move(FS)); in expandResponseFiles()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | BaseSubobject.h | 32 const CXXRecordDecl *Base; variable 39 BaseSubobject(const CXXRecordDecl *Base, CharUnits BaseOffset) in BaseSubobject() argument 40 : Base(Base), BaseOffset(BaseOffset) {} in BaseSubobject() 43 const CXXRecordDecl *getBase() const { return Base; } in getBase() 49 return LHS.Base == RHS.Base && LHS.BaseOffset == RHS.BaseOffset; 70 static unsigned getHashValue(const clang::BaseSubobject &Base) { 73 return DenseMapInfo<PairTy>::getHashValue(PairTy(Base.getBase(), 74 Base.getBaseOffset()));
|
| H A D | TypeLocNodes.def | 14 // TYPELOC(Class, Base) - A TypeLoc subclass. If UNQUAL_TYPELOC is 17 // UNQUAL_TYPELOC(Class, Base, Type) - An UnqualTypeLoc subclass. 24 # define UNQUAL_TYPELOC(Class, Base) TYPELOC(Class, Base) 28 # define ABSTRACT_TYPELOC(Class, Base) UNQUAL_TYPELOC(Class, Base) 32 #define TYPE(Class, Base) UNQUAL_TYPELOC(Class, Base##Loc) 33 #define ABSTRACT_TYPE(Class, Base) ABSTRACT_TYPELOC(Class, Base##Loc)
|
| H A D | VTTBuilder.h | 38 VTTVTable(const CXXRecordDecl *Base, CharUnits BaseOffset, bool BaseIsVirtual) in VTTVTable() argument 39 : BaseAndIsVirtual(Base, BaseIsVirtual), BaseOffset(BaseOffset) {} in VTTVTable() 40 VTTVTable(BaseSubobject Base, bool BaseIsVirtual) in VTTVTable() argument 41 : BaseAndIsVirtual(Base.getBase(), BaseIsVirtual), in VTTVTable() 42 BaseOffset(Base.getBaseOffset()) {} in VTTVTable() 105 void AddVTablePointer(BaseSubobject Base, uint64_t VTableIndex, 109 void LayoutSecondaryVTTs(BaseSubobject Base); 116 void LayoutSecondaryVirtualPointers(BaseSubobject Base, 124 void LayoutSecondaryVirtualPointers(BaseSubobject Base, 134 void LayoutVTT(BaseSubobject Base, bool BaseIsVirtual);
|
| /freebsd/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/ |
| H A D | CachedConstAccessorsLattice.h | 50 template <typename Base> class CachedConstAccessorsLattice : public Base { 52 using Base::Base; // inherit all constructors 90 return Base::operator==(Other); 149 template <typename Base> 150 LatticeEffect CachedConstAccessorsLattice<Base>::join( in join() 151 const CachedConstAccessorsLattice<Base> &Other) { in join() 153 LatticeEffect Effect = Base::join(Other); in join() 171 template <typename Base> 172 Value *CachedConstAccessorsLattice<Base>::getOrCreateConstMethodReturnValue( in getOrCreateConstMethodReturnValue() 194 template <typename Base> [all …]
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
| H A D | mem_map.cpp | 21 Base = reinterpret_cast<uptr>(MappedAddr); in mapImpl() 22 MappedBase = Base; in mapImpl() 29 Base = MappedBase = Capacity = 0; in unmapImpl() 31 if (Base == Addr) { in unmapImpl() 32 Base = Addr + Size; in unmapImpl() 33 MappedBase = MappedBase == 0 ? Base : Max(MappedBase, Base); in unmapImpl() 61 ::scudo::unmap(reinterpret_cast<void *>(Base), Capacity, UNMAP_ALL, &Data); in releaseImpl() 71 Base = reinterpret_cast<uptr>(Reserved); in createImpl()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | YAMLParser.h | 344 basic_collection_iterator(BaseT *B) : Base(B) {} in basic_collection_iterator() 347 assert(Base && Base->CurrentEntry && "Attempted to access end iterator!"); 348 return Base->CurrentEntry; 352 assert(Base && Base->CurrentEntry && 354 return *Base->CurrentEntry; 358 assert(Base && Base->CurrentEntry && "Attempted to access end iterator!"); 359 return Base->CurrentEntry; 370 if (Base && (Base == Other.Base)) { 371 assert((Base->CurrentEntry == Other.Base->CurrentEntry) 375 return Base == Other.Base; [all …]
|