Searched refs:ssa_uses (Results 1 - 2 of 2) sorted by relevance

/art/compiler/sea_ir/code_gen/
H A Dcode_gen.cc146 std::vector<InstructionNode*> ssa_uses = instruction->GetSSAProducers(); local
147 DCHECK_GT(ssa_uses.size(), 1u);
148 InstructionNode* use_l = ssa_uses.at(0);
151 InstructionNode* use_r = ssa_uses.at(1);
167 std::vector<InstructionNode*> ssa_uses = instruction->GetSSAUses();
168 InstructionNode* use_l = ssa_uses.at(0);
187 std::vector<InstructionNode*> ssa_uses = instruction->GetSSAProducers(); local
188 InstructionNode* use_l = ssa_uses.at(0);
221 std::vector<InstructionNode*> ssa_uses = instruction->GetSSAProducers(); local
222 DCHECK_GT(ssa_uses
241 std::vector<InstructionNode*> ssa_uses = instruction->GetSSAProducers(); local
[all...]
/art/compiler/sea_ir/ir/
H A Dinstruction_nodes.h67 std::vector<InstructionNode*> ssa_uses; local
69 ssa_uses.push_back((*definition_edges_.find(*cit)).second);
71 return ssa_uses;

Completed in 558 milliseconds