Home
last modified time | relevance | path

Searched refs:SeaNode (Results 1 – 4 of 4) sorted by relevance

/art/compiler/sea_ir/ir/
Dsea_node.h40 class SeaNode: public IVisitable {
42 explicit SeaNode():id_(GetNewId()), string_id_() { in SeaNode() function
60 virtual ~SeaNode() { } in ~SeaNode()
74 DISALLOW_COPY_AND_ASSIGN(SeaNode);
Dsea.h142 class Region : public SeaNode {
145 SeaNode(), successors_(), predecessors_(), reaching_defs_size_(0), in Region()
153 SeaNode* GetLastChild() const;
Dinstruction_nodes.h39 class InstructionNode: public SeaNode {
98 SeaNode(), instruction_(in), used_in_(), de_def_(false), region_(NULL) { } in InstructionNode()
Dsea.cc30 int SeaNode::current_max_node_id_ = 0;
473 SeaNode* Region::GetLastChild() const { in GetLastChild()