Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/SandboxIR/
H A DValue.cpp16 Value::Value(ClassID SubclassID, llvm::Value *Val, Context &Ctx) in Value() argument
17 : SubclassID(SubclassID), Val(Val), Ctx(Ctx) { in Value()
88 OS << getUid() << " " << getSubclassIDStr(SubclassID) << " "; in dumpCommonHeader()
108 OS << " ; " << getUid() << " (" << getSubclassIDStr(SubclassID) << ")"; in dumpCommonSuffix()
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointResolver.h146 unsigned getResolverID() const { return SubclassID; } in getResolverID()
149 if (SubclassID > ResolverTy::LastKnownResolverType) in GetResolverTy()
151 return (enum ResolverTy)SubclassID; in GetResolverTy()
225 const unsigned char SubclassID; variable
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanValue.h55 const unsigned char SubclassID; ///< Subclass identifier (for isa/dyn_cast). variable
103 unsigned getVPValueID() const { return SubclassID; } in getVPValueID()
304 const unsigned char SubclassID; variable
379 VPDef(const unsigned char SC) : SubclassID(SC) {} in VPDef()
426 unsigned getVPDefID() const { return SubclassID; } in getVPDefID()
H A DVPlan.h84 const unsigned char SubclassID; ///< Subclass identifier (for isa/dyn_cast). variable
151 : SubclassID(SC), Name(N) {} in VPBlockBase()
171 unsigned getVPBlockID() const { return SubclassID; } in getVPBlockID()
H A DVPlan.cpp89 : SubclassID(SC), UnderlyingVal(UV), Def(Def) { in VPValue()
/freebsd/contrib/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;
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize/SandboxVectorizer/
H A DDependencyGraph.h100 DGNodeID SubclassID; variable
112 DGNode(Instruction *I, DGNodeID ID) : I(I), SubclassID(ID) {} in DGNode()
117 DGNode(Instruction *I) : I(I), SubclassID(DGNodeID::DGNode) { in DGNode()
258 return Other->SubclassID == DGNodeID::MemDGNode; in classof()
/freebsd/contrib/llvm-project/llvm/include/llvm/SandboxIR/
H A DValue.h97 ClassID SubclassID; variable
184 LLVM_ABI Value(ClassID SubclassID, llvm::Value *Val, Context &Ctx);
191 ClassID getSubclassID() const { return SubclassID; } in getSubclassID()
H A DInstruction.h1281 ReturnInst(ClassID SubclassID, llvm::Instruction *I, Context &Ctx) in ReturnInst() argument
1282 : SingleLLVMInstructionImpl(SubclassID, Opcode::Ret, I, Ctx) {} in ReturnInst()
1561 FuncletPadInst(ClassID SubclassID, Opcode Opc, llvm::Instruction *I, in FuncletPadInst() argument
1563 : SingleLLVMInstructionImpl(SubclassID, Opc, I, Ctx) {} in FuncletPadInst()
1684 GetElementPtrInst(ClassID SubclassID, llvm::Instruction *I, Context &Ctx) in GetElementPtrInst() argument
1685 : SingleLLVMInstructionImpl(SubclassID, Opcode::GetElementPtr, I, Ctx) {} in GetElementPtrInst()
2616 OpaqueInst(ClassID SubclassID, llvm::Instruction *I, sandboxir::Context &Ctx) in OpaqueInst() argument
2617 : SingleLLVMInstructionImpl(SubclassID, Opcode::Opaque, I, Ctx) {} in OpaqueInst()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVElement.h120 const LVSubclassID SubclassID; variable
142 : LVObject(), SubclassID(ID), AccessibilityCode(0), InlineCode(0), in LVElement()
148 LVSubclassID getSubclassID() const { return SubclassID; } in getSubclassID()
/freebsd/contrib/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()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DValue.cpp54 : SubclassID(scid), HasValueHandle(0), SubclassOptionalData(0), 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()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DValue.h76 const unsigned char SubclassID; // Subclass identifier (for isa/dyn_cast) variable
544 return SubclassID; in getValueID()
H A DMetadata.h67 const unsigned char SubclassID; variable
88 : SubclassID(ID), Storage(Storage), SubclassData1(false) { in Metadata()
103 unsigned getMetadataID() const { return SubclassID; } in getMetadataID()
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolver.cpp69 : m_breakpoint(bkpt), m_offset(offset), SubclassID(resolverTy) {} in BreakpointResolver()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DSearchFilter.cpp73 : m_target_sp(target_sp), SubclassID(filterType) {} in SearchFilter()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp495 static constexpr uint8_t SubclassID = 255; member in __anondf6e26480411::BitcodeConstant
539 : Value(Ty, SubclassID), Opcode(Info.Opcode), Flags(Info.Flags), in BitcodeConstant()
556 static bool classof(const Value *V) { return V->getValueID() == SubclassID; } in classof()