OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ssa_uses
(Results
1 - 2
of
2
) sorted by null
/art/compiler/sea_ir/code_gen/
code_gen.cc
146
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
.size(), 1u)
241
std::vector<InstructionNode*>
ssa_uses
= instruction->GetSSAProducers();
local
[
all
...]
/art/compiler/sea_ir/ir/
instruction_nodes.h
67
std::vector<InstructionNode*>
ssa_uses
;
local
69
ssa_uses
.push_back((*definition_edges_.find(*cit)).second);
71
return
ssa_uses
;
Completed in 2777 milliseconds