Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DRDFGraph.h449 struct NodeBase { struct
464 void append(NodeAddr<NodeBase*> NA); argument
467 void init() { memset(this, 0, sizeof *this); } in init()
469 void setNext(NodeId N) { Next = N; } in setNext()
473 uint16_t Reserved;
474 NodeId Next; // Id of the next node in the circular chain.
478 struct Def_struct {
481 struct PhiU_struct {
484 struct Code_struct {
509 static_assert(sizeof(NodeBase) <= NodeAllocator::NodeMemSize, argument
/llvm-project-15.0.7/mlir/include/mlir/Tools/PDLL/AST/
H A DNodes.h122 explicit NodeBase(SMRange loc, Args &&...args) in NodeBase() function
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DRDFGraph.cpp526 static auto True = [] (NodeAddr<NodeBase*>) -> bool { return true; }; in members()