Home
last modified time | relevance | path

Searched refs:Base (Results 1 – 25 of 855) sorted by relevance

12345678910>>...35

/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_ilist.h27 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>
81 template <typename Base, INode Base::*Node, typename Elem>
86 template <typename Base, INode Base::*Node, typename Elem>
91 template <typename Base, INode Base::*Node, typename Elem>
104 template <typename Base, INode Base::*Node, typename Elem>
118 template <typename Base, INode Base::*Node, typename Elem>
126 template <typename Base, INode Base::*Node, typename Elem>
134 template <typename Base, INode Base::*Node, typename Elem>
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/Interp/
H A DPointer.h83 return Pointee == P.Pointee && Base == P.Base && Offset == P.Offset;
87 return Pointee != P.Pointee || Base != P.Base || Offset != P.Offset;
112 return Pointer(Pointee, Base, Base + Off); in atIndex()
174 return Pointer(Pointee, Base, Base + getSize() + Adjust); in expand()
182 if (Base == 0) in expand()
199 bool isField() const { return Base != 0 && Base != RootPtrMark; } in isField()
225 return Pointer(Pointee, Base, Base); in getArray()
230 if (Base == 0 || Base == RootPtrMark) in getFieldDesc()
285 return (Base == 0 || Base == RootPtrMark) && Offset == 0; in isRoot()
356 if (Base > 0 && Base == Offset) in getIndex()
[all …]
H A DPointer.cpp30 : Pointee(P.Pointee), Base(P.Base), Offset(P.Offset) { in Pointer()
36 : Pointee(Pointee), Base(Base), Offset(Offset) { in Pointer()
37 assert((Base == RootPtrMark || Base % alignof(void *) == 0) && "wrong base"); in Pointer()
56 Base = P.Base; in operator =()
73 Base = P.Base; in operator =()
84 APValue::LValueBase Base; in toAPValue() local
99 Base = VD; in toAPValue()
101 Base = E; in toAPValue()
165 if (isStatic() && Base == 0) in isInitialized()
190 if (isStatic() && Base == 0) in initialize()
[all …]
H A DRecord.h36 struct Base { struct
46 using BaseList = llvm::SmallVector<Base, 8>; argument
48 using VirtualBaseList = llvm::SmallVector<Base, 2>;
64 const Base *getBase(const RecordDecl *FD) const;
66 const Base *getBase(QualType T) const;
68 const Base *getVirtualBase(const RecordDecl *RD) const;
91 const Base *getBase(unsigned I) const { in getBase()
102 const Base *getVirtualBase(unsigned I) const { return &VirtualBases[I]; } in getVirtualBase()
123 llvm::DenseMap<const RecordDecl *, Base *> BaseMap;
127 llvm::DenseMap<const RecordDecl *, Base *> VirtualBaseMap;
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Utility/
H A DEnvironment.h42 using Base::iterator;
45 using Base::begin;
46 using Base::clear;
47 using Base::count;
48 using Base::empty;
49 using Base::end;
50 using Base::erase;
51 using Base::find;
52 using Base::insert;
54 using Base::lookup;
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineDominanceFrontier.h41 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()
73 return Base.find(B); in find()
81 return Base.removeBlock(BB); in removeBlock()
[all …]
H A DSelectionDAGAddressAnalysis.h34 SDValue Base;
41 BaseIndexOffset(SDValue Base, SDValue Index, bool IsIndexSignExt) in BaseIndexOffset() argument
42 : Base(Base), Index(Index), IsIndexSignExt(IsIndexSignExt) {} in BaseIndexOffset()
43 BaseIndexOffset(SDValue Base, SDValue Index, int64_t Offset, in BaseIndexOffset() argument
45 : Base(Base), Index(Index), Offset(Offset), in BaseIndexOffset()
48 SDValue getBase() { return Base; } in getBase()
49 SDValue getBase() const { return Base; } in getBase()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DVTTBuilder.cpp46 assert(!SecondaryVirtualPointerIndices.count(Base) && in AddVTablePointer()
60 const CXXRecordDecl *RD = Base.getBase(); in LayoutSecondaryVTTs()
71 CharUnits BaseOffset = Base.getBaseOffset() + in LayoutSecondaryVTTs()
85 const CXXRecordDecl *RD = Base.getBase(); in LayoutSecondaryVirtualPointers()
119 BaseOffset = Base.getBaseOffset() + in LayoutSecondaryVirtualPointers()
180 const CXXRecordDecl *RD = Base.getBase(); in LayoutVTT()
192 SubVTTIndicies[Base] = VTTComponents.size(); in LayoutVTT()
199 AddVTablePointer(Base, VTableIndex, RD); in LayoutVTT()
202 LayoutSecondaryVTTs(Base); in LayoutVTT()
205 LayoutSecondaryVirtualPointers(Base, VTableIndex); in LayoutVTT()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGAddressAnalysis.cpp28 if (!Base.getNode() || !Other.Base.getNode()) in equalBaseIndex()
37 if (Other.Base == Base) in equalBaseIndex()
72 if (auto *A = dyn_cast<FrameIndexSDNode>(Base)) in equalBaseIndex()
227 switch (Base->getOpcode()) { in matchLSNode()
233 Base = DAG.getTargetLoweringInfo().unwrapAddress(Base->getOperand(0)); in matchLSNode()
240 Base = DAG.getTargetLoweringInfo().unwrapAddress(Base->getOperand(0)); in matchLSNode()
266 if (Base->getOpcode() == ISD::ADD) { in matchLSNode()
279 Index = Base->getOperand(1); in matchLSNode()
280 SDValue PotentialBase = Base->getOperand(0); in matchLSNode()
300 Base = PotentialBase; in matchLSNode()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCISelDAGToDAG.cpp79 Base = Addr.getOperand(0); in SelectAddrModeImm()
86 bool ARCDAGToDAGISel::SelectAddrModeS9(SDValue Addr, SDValue &Base, in SelectAddrModeS9() argument
97 Base = CurDAG->getTargetFrameIndex( in SelectAddrModeS9()
100 Base = Addr; in SelectAddrModeS9()
114 Base = Addr.getOperand(0); in SelectAddrModeS9()
115 if (Base.getOpcode() == ISD::FrameIndex) { in SelectAddrModeS9()
116 int FI = cast<FrameIndexSDNode>(Base)->getIndex(); in SelectAddrModeS9()
117 Base = CurDAG->getTargetFrameIndex( in SelectAddrModeS9()
123 Base = Addr; in SelectAddrModeS9()
130 if (SelectAddrModeS9(Addr, Base, Offset)) in SelectAddrModeFar()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/VE/
H A DVEISelDAGToDAG.cpp70 bool matchADDRrr(SDValue N, SDValue &Base, SDValue &Index);
90 if (matchADDRrr(LHS, Base, Index)) { in INITIALIZE_PASS()
107 Base = LHS; in INITIALIZE_PASS()
110 if (matchADDRri(LHS, Base, Offset)) { in INITIALIZE_PASS()
114 Base = LHS; in INITIALIZE_PASS()
124 if (matchADDRri(Addr, Base, Offset)) { in selectADDRrii()
129 Base = Addr; in selectADDRrii()
164 if (matchADDRri(Addr, Base, Offset)) in selectADDRri()
167 Base = Addr; in selectADDRri()
215 Base = Addr.getOperand(0); in matchADDRrr()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsSEISelDAGToDAG.h50 bool selectAddrRegImm(SDValue Addr, SDValue &Base,
53 bool selectAddrDefault(SDValue Addr, SDValue &Base,
56 bool selectIntAddr(SDValue Addr, SDValue &Base,
59 bool selectAddrRegImm9(SDValue Addr, SDValue &Base,
62 bool selectAddrRegImm11(SDValue Addr, SDValue &Base,
65 bool selectAddrRegImm12(SDValue Addr, SDValue &Base,
68 bool selectAddrRegImm16(SDValue Addr, SDValue &Base,
71 bool selectIntAddr11MM(SDValue Addr, SDValue &Base,
74 bool selectIntAddr12MM(SDValue Addr, SDValue &Base,
77 bool selectIntAddr16MM(SDValue Addr, SDValue &Base,
[all …]
H A DMipsISelDAGToDAG.h57 virtual bool selectAddrRegImm(SDValue Addr, SDValue &Base,
61 virtual bool selectAddrDefault(SDValue Addr, SDValue &Base,
65 virtual bool selectIntAddr(SDValue Addr, SDValue &Base,
68 virtual bool selectIntAddr11MM(SDValue Addr, SDValue &Base,
71 virtual bool selectIntAddr12MM(SDValue Addr, SDValue &Base,
74 virtual bool selectIntAddr16MM(SDValue Addr, SDValue &Base,
77 virtual bool selectIntAddrLSL2MM(SDValue Addr, SDValue &Base,
81 virtual bool selectIntAddrSImm10(SDValue Addr, SDValue &Base,
84 virtual bool selectIntAddrSImm10Lsl1(SDValue Addr, SDValue &Base,
87 virtual bool selectIntAddrSImm10Lsl2(SDValue Addr, SDValue &Base,
[all …]
H A DMipsSEISelDAGToDAG.cpp294 Base = Addr.getOperand(0); in selectAddrFrameIndexOffset()
320 Base = Addr.getOperand(0); in selectAddrRegImm()
350 Base = Addr.getOperand(0); in selectAddrRegImm()
364 Base = Addr; in selectAddrDefault()
442 if (isa<FrameIndexSDNode>(Base)) in selectIntAddrLSL2MM()
1381 SDValue Base, Offset; in SelectInlineAsmMemoryOperand() local
1390 OutOps.push_back(Base); in SelectInlineAsmMemoryOperand()
1404 OutOps.push_back(Base); in SelectInlineAsmMemoryOperand()
1417 OutOps.push_back(Base); in SelectInlineAsmMemoryOperand()
1424 OutOps.push_back(Base); in SelectInlineAsmMemoryOperand()
[all …]
/freebsd-14.2/sys/contrib/device-tree/Bindings/clock/
H A Dlpc1850-cgu.txt46 1 BASE_USB0_CLK Base clock for USB0
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
58 11 BASE_LCD_CLK Base clock for LCD
59 12 BASE_ADCHS_CLK Base clock for ADCHS
60 13 BASE_SDIO_CLK Base clock for SD/MMC
61 14 BASE_SSP0_CLK Base clock for SSP0
62 15 BASE_SSP1_CLK Base clock for SSP1
63 16 BASE_UART0_CLK Base clock for UART0
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/
H A DGuessTargetAndModeCompilationDatabase.cpp19 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::__anon502d20f50111::TargetAndModeAdderDatabase
52 inferTargetAndDriverMode(std::unique_ptr<CompilationDatabase> Base) { in inferTargetAndDriverMode() argument
53 return std::make_unique<TargetAndModeAdderDatabase>(std::move(Base)); in inferTargetAndDriverMode()
H A DExpandResponseFilesCompilationDatabase.cpp28 std::unique_ptr<CompilationDatabase> Base, in ExpandResponseFilesDatabase() argument
31 : Base(std::move(Base)), Tokenizer(Tokenizer), FS(std::move(FS)) { in ExpandResponseFilesDatabase()
32 assert(this->Base != nullptr); in ExpandResponseFilesDatabase()
38 return Base->getAllFiles(); in getAllFiles()
43 return expand(Base->getCompileCommands(FilePath)); in getCompileCommands()
47 return expand(Base->getAllCompileCommands()); in getAllCompileCommands()
59 std::unique_ptr<CompilationDatabase> Base; member in clang::tooling::__anon3202d5710111::ExpandResponseFilesDatabase
67 expandResponseFiles(std::unique_ptr<CompilationDatabase> Base, in expandResponseFiles() argument
73 std::move(Base), Tokenizer, std::move(FS)); in expandResponseFiles()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DBaseSubobject.h32 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 DTypeLocNodes.def14 // 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 DVTTBuilder.h38 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-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DABIInfo.cpp51 bool ABIInfo::isHomogeneousAggregateSmallEnough(const Type *Base, in isHomogeneousAggregateSmallEnough() argument
61 bool ABIInfo::isHomogeneousAggregate(QualType Ty, const Type *&Base, in isHomogeneousAggregate() argument
89 if (!isHomogeneousAggregate(I.getType(), Base, FldMembers)) in isHomogeneousAggregate()
113 if (!isHomogeneousAggregate(FD->getType(), Base, FldMembers)) in isHomogeneousAggregate()
120 if (!Base) in isHomogeneousAggregate()
124 if (getContext().getTypeSize(Base) * Members != in isHomogeneousAggregate()
142 if (!Base) { in isHomogeneousAggregate()
143 Base = TyPtr; in isHomogeneousAggregate()
146 if (const VectorType *VT = Base->getAs<VectorType>()) { in isHomogeneousAggregate()
150 Base = getContext() in isHomogeneousAggregate()
[all …]
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dmem_map.cpp21 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-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUGlobalISelUtils.cpp51 Register Base; in getBaseWithConstantOffset() local
52 if (KnownBits && mi_match(Reg, MRI, m_GOr(m_Reg(Base), m_ICst(Offset))) && in getBaseWithConstantOffset()
53 KnownBits->maskedValueIsZero(Base, APInt(32, Offset))) in getBaseWithConstantOffset()
54 return std::pair(Base, Offset); in getBaseWithConstantOffset()
58 MachineInstr *Base; in getBaseWithConstantOffset() local
60 m_GPtrAdd(m_MInstr(Base), m_ICst(Offset)))) { in getBaseWithConstantOffset()
62 if (Base->getOpcode() == TargetOpcode::G_INTTOPTR) in getBaseWithConstantOffset()
63 return std::pair(Base->getOperand(1).getReg(), Offset); in getBaseWithConstantOffset()
66 return std::pair(Base->getOperand(0).getReg(), Offset); in getBaseWithConstantOffset()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelDAGToDAG.cpp60 SDValue Base; member
78 if (Base.getNode()) in dump()
417 AM.Base = Value; in changeComponent()
440 AM.Base = Base; in expandIndex()
530 if (!Base) in shouldUseLA()
584 AM.Base = Addr; in selectAddress()
640 Base = AM.Base; in getAddressOperands()
652 SDLoc DL(Base); in getAddressOperands()
655 Base = Trunc; in getAddressOperands()
1796 SDLoc DL(Base); in SelectInlineAsmMemoryOperand()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DStore.cpp261 Result = evalDerivedToBase(Result, Base->getType(), Base->isVirtual()); in evalDerivedToBase()
318 const MemRegion *MR = Base.getAsRegion(); in evalBaseToDerived()
399 if (Base.isUnknownOrUndef()) in getLValueFieldOrIvar()
400 return Base; in getLValueFieldOrIvar()
402 Loc BaseL = Base.castAs<Loc>(); in getLValueFieldOrIvar()
425 return Base; in getLValueFieldOrIvar()
449 QualType BT = Base.getType(this->Ctx); in getLValueElement()
454 return Base; in getLValueElement()
462 if (Base.isUnknownOrUndef() || isa<loc::ConcreteInt>(Base)) in getLValueElement()
463 return Base; in getLValueElement()
[all …]

12345678910>>...35