Home
last modified time | relevance | path

Searched defs:NodeBase (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRDFGraph.h487 struct NodeBase { struct
492 uint16_t getType() const { return NodeAttrs::type(Attrs); } in getType()
493 uint16_t getKind() const { return NodeAttrs::kind(Attrs); } in getKind()
494 uint16_t getFlags() const { return NodeAttrs::flags(Attrs); } in getFlags()
495 NodeId getNext() const { return Next; } in getNext()
497 uint16_t getAttrs() const { return Attrs; } in getAttrs()
498 void setAttrs(uint16_t A) { Attrs = A; } in setAttrs()
499 void setFlags(uint16_t F) { setAttrs(NodeAttrs::set_flags(getAttrs(), F)); } in setFlags()
505 void init() { memset(this, 0, sizeof *this); } in init()
507 void setNext(NodeId N) { Next = N; } in setNext()
[all …]