Searched defs:InstructionNode (Results 1 - 1 of 1) sorted by relevance

/art/compiler/sea_ir/ir/
H A Dinstruction_nodes.h37 // the number of InstructionNode objects should dwindle, while the
39 class InstructionNode: public SeaNode { class in namespace:sea_ir
41 static std::vector<sea_ir::InstructionNode*> Create(const art::Instruction* in);
42 // Returns the Dalvik instruction around which this InstructionNode is wrapped.
44 DCHECK(NULL != instruction_) << "Tried to access NULL instruction in an InstructionNode.";
57 void RenameToSSA(int reg_no, InstructionNode* definition) {
58 definition_edges_.insert(std::pair<int, InstructionNode*>(reg_no, definition));
65 virtual std::vector<InstructionNode*> GetSSAProducers() {
67 std::vector<InstructionNode*> ssa_uses;
73 std::map<int, InstructionNode* >* GetSSAProducersMa
97 explicit InstructionNode(const art::Instruction* in): function in class:sea_ir::InstructionNode
[all...]

Completed in 95 milliseconds