Home
last modified time | relevance | path

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

123456

/llvm-project-15.0.7/llvm/include/llvm/ADT/
H A DPointerIntPair.h46 class PointerIntPair {
52 constexpr PointerIntPair() = default;
54 PointerIntPair(PointerTy PtrVal, IntType IntVal) { in PointerIntPair() function
98 static PointerIntPair getFromOpaqueValue(void *V) { in getFromOpaqueValue()
99 PointerIntPair P; in getFromOpaqueValue()
106 static PointerIntPair getFromOpaqueValue(const void *V) { in getFromOpaqueValue()
111 bool operator==(const PointerIntPair &RHS) const {
115 bool operator!=(const PointerIntPair &RHS) const {
122 bool operator<=(const PointerIntPair &RHS) const {
126 bool operator>=(const PointerIntPair &RHS) const {
[all …]
H A Dilist_node_base.h36 PointerIntPair<ilist_node_base *, 1> PrevAndSentinel;
/llvm-project-15.0.7/llvm/lib/DWARFLinker/
H A DDWARFLinkerDeclContext.cpp44 PointerIntPair<DeclContext *, 1>
56 return PointerIntPair<DeclContext *, 1>(nullptr); in getChildDeclContext()
60 return PointerIntPair<DeclContext *, 1>(&Context); in getChildDeclContext()
66 return PointerIntPair<DeclContext *, 1>(nullptr); in getChildDeclContext()
80 return PointerIntPair<DeclContext *, 1>(nullptr); in getChildDeclContext()
102 return PointerIntPair<DeclContext *, 1>(nullptr); in getChildDeclContext()
141 return PointerIntPair<DeclContext *, 1>(nullptr); in getChildDeclContext()
177 return PointerIntPair<DeclContext *, 1>(*ContextIter, /* IntVal= */ 1); in getChildDeclContext()
187 return PointerIntPair<DeclContext *, 1>(*ContextIter, /* IntVal= */ 1); in getChildDeclContext()
189 return PointerIntPair<DeclContext *, 1>(*ContextIter); in getChildDeclContext()
/llvm-project-15.0.7/llvm/unittests/ADT/
H A DPointerIntPairTest.cpp22 PointerIntPair<S *, 2> Pair(&s, 1U); in TEST()
49 PointerIntPair<S *, 2, E> Pair2(&s, E::Case1); in TEST()
65 static_assert(std::is_trivially_copyable<PointerIntPair<S *, 2, E>>::value, in TEST()
70 PointerIntPair<float *, 2> Pair; in TEST()
92 PointerIntPair<Fixnum31, 1, bool, FixnumPointerTraits> pair; in TEST()
105 PointerIntPair<Fixnum31, 1, bool, FixnumPointerTraits>>::value, in TEST()
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DObjCMethodList.h28 llvm::PointerIntPair<ObjCMethodDecl *, 1> MethodAndHasMoreThanOneDecl;
30 llvm::PointerIntPair<ObjCMethodList *, 2> NextAndExtraBits;
H A DScopeInfo.h196 using SwitchInfo = llvm::PointerIntPair<SwitchStmt*, 1, bool>;
266 using BaseInfoTy = llvm::PointerIntPair<const NamedDecl *, 1, bool>;
344 llvm::PointerIntPair<const Expr *, 1, bool> Rep;
/llvm-project-15.0.7/mlir/include/mlir/Analysis/
H A DCallGraph.h81 explicit Edge(llvm::PointerIntPair<CallGraphNode *, 2, Kind> targetAndKind) in Edge()
85 llvm::PointerIntPair<CallGraphNode *, 2, Kind> targetAndKind;
121 DenseMapInfo<llvm::PointerIntPair<CallGraphNode *, 2, Edge::Kind>>;
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/llvm-prettyprinters/gdb/
H A Dllvm-support.cpp33 llvm::PointerIntPair<int *, 1> PointerIntPair(IntPtr, 1); variable
/llvm-project-15.0.7/llvm/include/llvm/Analysis/
H A DPtrUseVisitor.h106 PointerIntPair<Instruction *, 1, bool> AbortedInfo, EscapedInfo;
123 using UseAndIsOffsetKnownPair = PointerIntPair<Use *, 1, bool>;
H A DMemoryDependenceAnalysis.h276 using ValueIsLoadPair = PointerIntPair<const Value *, 1, bool>;
283 using BBSkipFirstBlockPair = PointerIntPair<BasicBlock *, 1, bool>;
/llvm-project-15.0.7/mlir/include/mlir/IR/
H A DDominance.h97 llvm::PointerIntPair<DomTree *, 1, bool>
109 mutable DenseMap<Region *, llvm::PointerIntPair<DomTree *, 1, bool>>
/llvm-project-15.0.7/llvm/test/Transforms/JumpThreading/
H A Dlvi-load.ll6 %"struct.llvm::PointerIntPair<llvm::Use**,2u,llvm::Use::PrevPtrTag,llvm::PointerLikeTypeTraits<llvm…
8 … type { %"struct.llvm::Value"*, %"struct.llvm::Use"*, %"struct.llvm::PointerIntPair<llvm::Use**,2u…
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DAddress.h46 llvm::PointerIntPair<llvm::Value *, 3, unsigned> Pointer;
48 llvm::PointerIntPair<llvm::Type *, 3, unsigned> ElementType;
/llvm-project-15.0.7/clang/include/clang/AST/
H A DLambdaCapture.h49 llvm::PointerIntPair<Decl*, 3> DeclAndBits;
H A DDeclContextInternals.h38 using DeclsAndHasExternalTy = llvm::PointerIntPair<Decls, 1, bool>;
301 llvm::PointerIntPair<StoredDeclsMap*, 1> Previous;
H A DTemplateName.h415 llvm::PointerIntPair<NestedNameSpecifier *, 1> Qualifier;
471 llvm::PointerIntPair<NestedNameSpecifier *, 1, bool> Qualifier;
H A DVTTBuilder.h33 llvm::PointerIntPair<const CXXRecordDecl *, 1, bool> BaseAndIsVirtual;
/llvm-project-15.0.7/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 DSwiftErrorValueTracking.h54 llvm::DenseMap<PointerIntPair<const Instruction *, 1, bool>, Register>
/llvm-project-15.0.7/llvm/include/llvm/MC/
H A DMCSectionELF.h42 const PointerIntPair<const MCSymbolELF *, 1, bool> Group;
/llvm-project-15.0.7/llvm/unittests/Support/
H A DTypeTraitsTest.cpp120 TrivialityTester<llvm::PointerIntPair<int *, 2>, true, true>(); in TEST()
/llvm-project-15.0.7/llvm/test/Transforms/DeadStoreElimination/
H A D2011-09-06-MemCpy.ll11 %struct.Use = type { %struct.Value*, %struct.Use*, %struct.PointerIntPair }
12 %struct.PointerIntPair = type { i64 }
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/clang/include/clang/Lex/
H A DModuleLoader.h49 llvm::PointerIntPair<Module *, 2, LoadResultKind> Storage;
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DCFGUpdate.h29 using NodeKindPair = PointerIntPair<NodePtr, 1, UpdateKind>;

123456