Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DRDFGraph.h450 struct NodeBase { struct
465 void append(NodeAddr<NodeBase*> NA); argument
468 void init() { memset(this, 0, sizeof *this); } in init()
470 void setNext(NodeId N) { Next = N; } in setNext()
474 uint16_t Reserved;
475 NodeId Next; // Id of the next node in the circular chain.
479 struct Def_struct {
482 struct PhiU_struct {
485 struct Code_struct {
510 static_assert(sizeof(NodeBase) <= NodeAllocator::NodeMemSize, argument
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DRDFGraph.cpp526 static auto True = [] (NodeAddr<NodeBase*>) -> bool { return true; }; in members()