| /freebsd-12.1/contrib/llvm/include/llvm/ADT/ |
| H A D | PointerIntPair.h | 44 class PointerIntPair { 50 constexpr PointerIntPair() = default; 52 PointerIntPair(PointerTy PtrVal, IntType IntVal) { in PointerIntPair() function 96 static PointerIntPair getFromOpaqueValue(void *V) { in getFromOpaqueValue() 97 PointerIntPair P; in getFromOpaqueValue() 104 static PointerIntPair getFromOpaqueValue(const void *V) { in getFromOpaqueValue() 109 bool operator==(const PointerIntPair &RHS) const { 113 bool operator!=(const PointerIntPair &RHS) const { 120 bool operator<=(const PointerIntPair &RHS) const { 124 bool operator>=(const PointerIntPair &RHS) const { [all …]
|
| H A D | ilist_node_base.h | 37 PointerIntPair<ilist_node_base *, 1> PrevAndSentinel;
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/ |
| H A D | ObjCMethodList.h | 29 llvm::PointerIntPair<ObjCMethodDecl *, 1> MethodAndHasMoreThanOneDecl; 31 llvm::PointerIntPair<ObjCMethodList *, 2> NextAndExtraBits;
|
| H A D | ScopeInfo.h | 181 using SwitchInfo = llvm::PointerIntPair<SwitchStmt*, 1, bool>; 251 using BaseInfoTy = llvm::PointerIntPair<const NamedDecl *, 1, bool>; 329 llvm::PointerIntPair<const Expr *, 1, bool> Rep; 517 llvm::PointerIntPair<VarDecl*, 2> VarAndNestedAndThis; 523 llvm::PointerIntPair<void *, 2, CaptureKind> InitExprAndCaptureKind;
|
| /freebsd-12.1/contrib/llvm/include/llvm/IR/ |
| H A D | Use.h | 78 using UserRef = PointerIntPair<User *, 1, unsigned, UserRefPointerTraits>; 144 PointerIntPair<Use **, 2, PrevPtrTag, PrevPointerTraits> Prev;
|
| /freebsd-12.1/contrib/llvm/include/llvm/Analysis/ |
| H A D | PtrUseVisitor.h | 115 PointerIntPair<Instruction *, 1, bool> AbortedInfo, EscapedInfo; 132 using UseAndIsOffsetKnownPair = PointerIntPair<Use *, 1, bool>;
|
| H A D | MemoryDependenceAnalysis.h | 288 using ValueIsLoadPair = PointerIntPair<const Value *, 1, bool>; 295 using BBSkipFirstBlockPair = PointerIntPair<BasicBlock *, 1, bool>;
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | DeclContextInternals.h | 41 using DeclsAndHasExternalTy = llvm::PointerIntPair<DeclsTy *, 1, bool>; 249 llvm::PointerIntPair<StoredDeclsMap*, 1> Previous;
|
| H A D | LambdaCapture.h | 50 llvm::PointerIntPair<Decl*, 3> DeclAndBits;
|
| H A D | TemplateName.h | 377 llvm::PointerIntPair<NestedNameSpecifier *, 1> Qualifier; 432 llvm::PointerIntPair<NestedNameSpecifier *, 1, bool> Qualifier;
|
| H A D | VTTBuilder.h | 34 llvm::PointerIntPair<const CXXRecordDecl *, 1, bool> BaseAndIsVirtual;
|
| H A D | GlobalDecl.h | 36 llvm::PointerIntPair<const Decl *, 2> Value;
|
| H A D | RecordLayout.h | 123 llvm::PointerIntPair<const CXXRecordDecl *, 1, bool> PrimaryBase;
|
| /freebsd-12.1/contrib/llvm/include/llvm/CodeGen/ |
| H A D | ScheduleDAGInstrs.h | 108 struct UnderlyingObject : PointerIntPair<ValueType, 1, bool> { 110 : PointerIntPair<ValueType, 1, bool>(V, MayAlias) {} in UnderlyingObject()
|
| H A D | DwarfStringPoolEntry.h | 33 PointerIntPair<const StringMapEntry<DwarfStringPoolEntry> *, 1, bool>
|
| H A D | MachineModuleInfo.h | 62 using StubValueTy = PointerIntPair<MCSymbol *, 1, bool>;
|
| H A D | FunctionLoweringInfo.h | 87 llvm::DenseMap<PointerIntPair<const Instruction *, 1, bool>, unsigned>
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Lex/ |
| H A D | ModuleLoader.h | 50 llvm::PointerIntPair<Module *, 2, LoadResultKind> Storage;
|
| /freebsd-12.1/contrib/llvm/include/llvm/Support/ |
| H A D | CFGUpdate.h | 30 using NodeKindPair = PointerIntPair<NodePtr, 1, UpdateKind>;
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | Linkage.h | 86 llvm::PointerIntPair<const NamedDecl *,
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Frontend/ |
| H A D | VerifyDiagnosticConsumer.h | 237 llvm::PointerIntPair<const FileEntry *, 1, bool> Data;
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Analysis/ |
| H A D | ProgramPoint.h | 93 llvm::PointerIntPair<const void *, 2, unsigned> Data2; 97 llvm::PointerIntPair<const LocationContext *, 2, unsigned> L; 99 llvm::PointerIntPair<const ProgramPointTag *, 2, unsigned> Tag;
|
| H A D | CFG.h | 84 llvm::PointerIntPair<void *, 2> Data1; 85 llvm::PointerIntPair<void *, 2> Data2; 503 llvm::PointerIntPair<Stmt *, 1> Data; 629 llvm::PointerIntPair<CFGBlock *, 2> UnreachableBlock;
|
| /freebsd-12.1/contrib/llvm/lib/Analysis/ |
| H A D | MemDepPrinter.cpp | 35 typedef PointerIntPair<const Instruction *, 2, DepType> InstTypePair;
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Serialization/ |
| H A D | Module.h | 72 llvm::PointerIntPair<const FileEntry *, 2, unsigned> Val;
|