Home
last modified time | relevance | path

Searched refs:PointerIntPair (Results 1 – 25 of 109) sorted by relevance

12345

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/
H A DPointerIntPair.h45 class PointerIntPair {
51 constexpr PointerIntPair() = default;
53 PointerIntPair(PointerTy PtrVal, IntType IntVal) { in PointerIntPair() function
97 static PointerIntPair getFromOpaqueValue(void *V) { in getFromOpaqueValue()
98 PointerIntPair P; in getFromOpaqueValue()
105 static PointerIntPair getFromOpaqueValue(const void *V) { in getFromOpaqueValue()
110 bool operator==(const PointerIntPair &RHS) const {
114 bool operator!=(const PointerIntPair &RHS) const {
121 bool operator<=(const PointerIntPair &RHS) const {
125 bool operator>=(const PointerIntPair &RHS) const {
[all …]
H A Dilist_node_base.h36 PointerIntPair<ilist_node_base *, 1> PrevAndSentinel;
H A Dfallible_iterator.h215 mutable PointerIntPair<Error *, 1> ErrState;
/freebsd-13.1/contrib/llvm-project/llvm/lib/DWARFLinker/
H A DDWARFLinkerDeclContext.cpp43 PointerIntPair<DeclContext *, 1>
55 return PointerIntPair<DeclContext *, 1>(nullptr); in getChildDeclContext()
59 return PointerIntPair<DeclContext *, 1>(&Context); in getChildDeclContext()
65 return PointerIntPair<DeclContext *, 1>(nullptr); in getChildDeclContext()
79 return PointerIntPair<DeclContext *, 1>(nullptr); in getChildDeclContext()
101 return PointerIntPair<DeclContext *, 1>(nullptr); in getChildDeclContext()
140 return PointerIntPair<DeclContext *, 1>(nullptr); in getChildDeclContext()
176 return PointerIntPair<DeclContext *, 1>(*ContextIter, /* Invalid= */ 1); in getChildDeclContext()
186 return PointerIntPair<DeclContext *, 1>(*ContextIter, /* Invalid= */ 1); in getChildDeclContext()
188 return PointerIntPair<DeclContext *, 1>(*ContextIter); in getChildDeclContext()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DObjCMethodList.h28 llvm::PointerIntPair<ObjCMethodDecl *, 1> MethodAndHasMoreThanOneDecl;
30 llvm::PointerIntPair<ObjCMethodList *, 2> NextAndExtraBits;
H A DScopeInfo.h191 using SwitchInfo = llvm::PointerIntPair<SwitchStmt*, 1, bool>;
261 using BaseInfoTy = llvm::PointerIntPair<const NamedDecl *, 1, bool>;
339 llvm::PointerIntPair<const Expr *, 1, bool> Rep;
H A DSemaConcept.h87 using CompoundConstraint = llvm::PointerIntPair<
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DPtrUseVisitor.h113 PointerIntPair<Instruction *, 1, bool> AbortedInfo, EscapedInfo;
130 using UseAndIsOffsetKnownPair = PointerIntPair<Use *, 1, bool>;
H A DMemoryDependenceAnalysis.h275 using ValueIsLoadPair = PointerIntPair<const Value *, 1, bool>;
282 using BBSkipFirstBlockPair = PointerIntPair<BasicBlock *, 1, bool>;
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DLambdaCapture.h49 llvm::PointerIntPair<Decl*, 3> DeclAndBits;
H A DDeclContextInternals.h38 using DeclsAndHasExternalTy = llvm::PointerIntPair<Decls, 1, bool>;
302 llvm::PointerIntPair<StoredDeclsMap*, 1> Previous;
H A DTemplateName.h401 llvm::PointerIntPair<NestedNameSpecifier *, 1> Qualifier;
456 llvm::PointerIntPair<NestedNameSpecifier *, 1, bool> Qualifier;
H A DVTTBuilder.h33 llvm::PointerIntPair<const CXXRecordDecl *, 1, bool> BaseAndIsVirtual;
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DScheduleDAGInstrs.h108 struct UnderlyingObject : PointerIntPair<ValueType, 1, bool> {
110 : PointerIntPair<ValueType, 1, bool>(V, MayAlias) {} in UnderlyingObject()
H A DDwarfStringPoolEntry.h32 PointerIntPair<const StringMapEntry<DwarfStringPoolEntry> *, 1, bool>
H A DSwiftErrorValueTracking.h56 llvm::DenseMap<PointerIntPair<const Instruction *, 1, bool>, Register>
H A DDbgEntityHistoryCalculator.h93 PointerIntPair<const MachineInstr *, 1, EntryKind> Instr;
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSectionELF.h44 const PointerIntPair<const MCSymbolELF *, 1, bool> Group;
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DSwiftErrorValueTracking.cpp52 auto Key = PointerIntPair<const Instruction *, 1, bool>(I, true); in getOrCreateVRegDefAt()
67 auto Key = PointerIntPair<const Instruction *, 1, bool>(I, false); in getOrCreateVRegUseAt()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Lex/
H A DModuleLoader.h49 llvm::PointerIntPair<Module *, 2, LoadResultKind> Storage;
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DCFGUpdate.h29 using NodeKindPair = PointerIntPair<NodePtr, 1, UpdateKind>;
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyFixIrreducibleControlFlow.cpp417 DenseMap<PointerIntPair<MachineBasicBlock *, 1, bool>, MachineBasicBlock *> in makeSingleEntryLoop()
430 DenseMap<PointerIntPair<MachineBasicBlock *, 1, bool>, MachineBasicBlock *> in makeSingleEntryLoop()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DLinkage.h86 llvm::PointerIntPair<const NamedDecl *,
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Frontend/
H A DVerifyDiagnosticConsumer.h281 llvm::PointerIntPair<const FileEntry *, 1, bool> Data;
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
H A DDWARFLinkerDeclContext.h134 PointerIntPair<DeclContext *, 1> getChildDeclContext(DeclContext &Context,

12345