Home
last modified time | relevance | path

Searched refs:SubclassID (Results 1 – 15 of 15) sorted by relevance

/llvm-project/llvm/lib/SandboxIR/
H A DSandboxIR.cpp
/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointResolver.h146 unsigned getResolverID() const { return SubclassID; } in getResolverID()
149 if (SubclassID > ResolverTy::LastKnownResolverType) in GetResolverTy()
152 return (enum ResolverTy)SubclassID; in GetResolverTy()
226 const unsigned char SubclassID; variable
/llvm-project/llvm/include/llvm/SandboxIR/
H A DSandboxIR.h
/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanValue.h59 const unsigned char SubclassID; ///< Subclass identifier (for isa/dyn_cast).
107 unsigned getVPValueID() const { return SubclassID; }
302 const unsigned char SubclassID;
327 /// SubclassID field of the VPRecipeBase objects. They are used for concrete in removeDefinedValue()
361 // START: SubclassID for recipes that inherit VPHeaderPHIRecipe.
371 // END: SubclassID for recipes that inherit VPHeaderPHIRecipe
379 VPDef(const unsigned char SC) : SubclassID(SC) {}
426 unsigned getVPDefID() const { return SubclassID; }
54 const unsigned char SubclassID; ///< Subclass identifier (for isa/dyn_cast). global() variable
312 const unsigned char SubclassID; global() variable
H A DVPlan.h395 const unsigned char SubclassID; ///< Subclass identifier (for isa/dyn_cast).
462 : SubclassID(SC), Name(N) {} in removePredecessor()
467 /// SubclassID field of the VPBlockBase objects. They are used for concrete in removeSuccessor()
482 unsigned getVPBlockID() const { return SubclassID; }
428 const unsigned char SubclassID; ///< Subclass identifier (for isa/dyn_cast). global() variable
H A DVPlan.cpp88 : SubclassID(SC), UnderlyingVal(UV), Def(Def) {
/llvm-project/lldb/include/lldb/Core/
H A DSearchFilter.h230 if (SubclassID > FilterTy::LastKnownFilterType) in GetFilterTy()
233 return (enum FilterTy)SubclassID; in GetFilterTy()
282 unsigned char SubclassID;
/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVElement.h107 const LVSubclassID SubclassID; variable
134 : LVObject(), SubclassID(ID), AccessibilityCode(0), InlineCode(0), in LVElement()
140 LVSubclassID getSubclassID() const { return SubclassID; } in getSubclassID()
/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.h76 const DbgEntityKind SubclassID; variable
80 : Entity(N), InlinedAt(IA), SubclassID(ID) {} in DbgEntity()
88 DbgEntityKind getDbgEntityID() const { return SubclassID; } in getDbgEntityID()
/llvm-project/llvm/lib/IR/
H A DValue.cpp54 : SubclassID(scid), HasValueHandle(0), SubclassOptionalData(0), in Value()
57 static_assert(ConstantFirstVal == 0, "!(SubclassID < ConstantFirstVal)"); in Value()
62 if (SubclassID >= InstructionVal) in Value()
63 OpCode = SubclassID - InstructionVal; in Value()
68 else if (SubclassID != BasicBlockVal && in Value()
69 (/*SubclassID < ConstantFirstVal ||*/ SubclassID > ConstantLastVal)) in Value()
/llvm-project/llvm/include/llvm/IR/
H A DValue.h75 const unsigned char SubclassID; // Subclass identifier (for isa/dyn_cast) variable
511 /// Value classes SubclassID field. They are used for concrete type
533 return SubclassID; in getValueID()
H A DMetadata.h66 const unsigned char SubclassID; variable
87 : SubclassID(ID), Storage(Storage), SubclassData1(false) { in Metadata()
102 unsigned getMetadataID() const { return SubclassID; } in getMetadataID()
213 /// it, then a SubclassID will need to be added (either as a new field or by
/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolver.cpp69 : m_breakpoint(bkpt), m_offset(offset), SubclassID(resolverTy) {} in BreakpointResolver()
/llvm-project/lldb/source/Core/
H A DSearchFilter.cpp73 : m_target_sp(target_sp), SubclassID(filterType) {} in SearchFilter()
/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp509 static constexpr uint8_t SubclassID = 255; member in __anon461288fb0411::BitcodeConstant
553 : Value(Ty, SubclassID), Opcode(Info.Opcode), Flags(Info.Flags), in BitcodeConstant()
571 static bool classof(const Value *V) { return V->getValueID() == SubclassID; } in classof()