OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:phis_
(Results
1 - 8
of
8
) sorted by null
/external/v8/src/crankshaft/
hydrogen-uint32-analysis.h
19
: HPhase("H_Compute safe UInt32 operations", graph),
phis_
(4, zone()) { }
30
ZoneList<HPhi*>
phis_
;
member in class:v8::internal::HUint32AnalysisPhase
hydrogen-uint32-analysis.cc
73
// marked with kUint32 flag and collected in the
phis_
list. A separate
84
// collected in
phis_
array. Separate pass is required.
102
// collected in
phis_
array. Separate pass is required.
105
phis_
.Add(HPhi::cast(use), zone());
159
if (
phis_
.length() == 0) return;
163
ZoneList<HPhi*> worklist(
phis_
.length(), zone());
173
// so that all safe phis form a prefix of the
phis_
array.
175
for (int i = 0; i <
phis_
.length(); i++) {
176
HPhi* phi =
phis_
[i];
179
phis_
[phi_count++] = phi
[
all
...]
hydrogen.h
43
const ZoneList<HPhi*>* phis() const { return &
phis_
; }
186
ZoneList<HPhi*>
phis_
;
member in class:v8::internal::final
[
all
...]
hydrogen.cc
72
phis_
(4, graph->zone()),
118
phis_
.Add(phi, zone());
125
DCHECK(
phis_
.Contains(phi));
127
phis_
.RemoveElement(phi);
343
for (int i = 0; i <
phis_
.length(); ++i) {
344
phis_
[i]->AddInput(incoming_env->values()->at(i));
[
all
...]
/external/v8/src/compiler/
instruction.h
[
all
...]
instruction.cc
545
phis_
(zone),
/art/compiler/optimizing/
nodes.cc
822
Add(&
phis_
, this, phi);
859
phis_
.InsertInstructionAfter(phi, cursor);
[
all
...]
nodes.h
906
HInstruction* GetFirstPhi() const { return
phis_
.first_instruction_; }
907
HInstruction* GetLastPhi() const { return
phis_
.last_instruction_; }
908
const HInstructionList& GetPhis() const { return
phis_
; }
1146
HInstructionList
phis_
;
member in class:art::HBasicBlock
[
all
...]
Completed in 287 milliseconds