OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:phis
(Results
1 - 12
of
12
) sorted by null
/external/chromium_org/v8/src/
hydrogen-infer-types.cc
37
const ZoneList<HPhi*>*
phis
= block->
phis
();
local
38
for (int j = 0; j <
phis
->length(); j++) {
39
phis
->at(j)->UpdateInferredType();
52
// Update
phis
of the loop header now after the whole loop body is
54
for (int j = 0; j < block->
phis
()->length(); ++j) {
55
HPhi* phi = block->
phis
()->at(j);
hydrogen-infer-representation.cc
44
// bit-vector of length <number of
phis
>.
55
// (2) Do a fixed point iteration to find the set of connected
phis
. A
76
// Set truncation flags for groups of connected
phis
. This is a conservative
84
// Check if all uses of all connected
phis
in this group are truncating.
99
// Clear truncation flag of this group of connected
phis
.
108
// Clear truncation flag of this group of connected
phis
.
120
// This step uses kTruncatingToInt32 flags of
phis
.
126
// sum up the non-phi use counts of all connected
phis
.
141
const ZoneList<HPhi*>*
phis
= block->
phis
();
local
163
const ZoneList<HPhi*>*
phis
= block->
phis
();
local
[
all
...]
hydrogen-osr.cc
116
const ZoneList<HPhi*>*
phis
= osr_loop_entry_->
phis
();
local
117
for (int j = 0; j <
phis
->length(); j++) {
118
HPhi* phi =
phis
->at(j);
hydrogen-representation-changes.cc
103
// Compute truncation flag for
phis
: Initially assume that all
104
// int32-
phis
allow truncation and iteratively remove the ones that
183
const ZoneList<HPhi*>*
phis
= block->
phis
();
local
184
for (int j = 0; j <
phis
->length(); j++) {
185
InsertRepresentationChangesForValue(
phis
->at(j));
lithium-allocator.cc
590
const ZoneList<HPhi*>*
phis
= successor->
phis
();
local
591
for (int i = 0; i <
phis
->length(); ++i) {
592
HPhi* phi =
phis
->at(i);
1039
const ZoneList<HPhi*>*
phis
= block->
phis
();
local
1301
const ZoneList<HPhi*>*
phis
= block->
phis
();
local
[
all
...]
hydrogen.h
67
const ZoneList<HPhi*>*
phis
() const { return &phis_; }
function in class:v8::internal::V8_FINAL
[
all
...]
/dalvik/dx/src/com/android/dx/ssa/back/
LivenessAnalyzer.java
246
* Ensures that all the phi result registers for all the
phis
in the
248
* the dead code remover has allowed through "dead-end
phis
" whose
260
List<SsaInsn>
phis
= b.getPhiInsns();
local
262
int szPhis =
phis
.size();
270
interference.add(
phis
.get(i).getResult().getReg(),
271
phis
.get(j).getResult().getReg());
/external/dexmaker/src/dx/java/com/android/dx/ssa/back/
LivenessAnalyzer.java
247
* Ensures that all the phi result registers for all the
phis
in the
249
* the dead code remover has allowed through "dead-end
phis
" whose
261
List<SsaInsn>
phis
= b.getPhiInsns();
local
263
int szPhis =
phis
.size();
271
interference.add(
phis
.get(i).getResult().getReg(),
272
phis
.get(j).getResult().getReg());
/art/compiler/sea_ir/ir/
sea.cc
33
std::vector<PhiInstructionNode*>*
phis
= region->GetPhiNodes();
local
34
for (std::vector<PhiInstructionNode*>::const_iterator cit =
phis
->begin();
35
cit !=
phis
->end(); cit++) {
352
std::vector<PhiInstructionNode*>*
phis
= crt_region->GetPhiNodes();
local
353
for (std::vector<PhiInstructionNode*>::iterator phi_it =
phis
->begin();
354
phi_it !=
phis
->end(); phi_it++) {
/external/v8/src/
lithium-allocator.cc
577
const ZoneList<HPhi*>*
phis
= successor->
phis
();
local
578
for (int i = 0; i <
phis
->length(); ++i) {
579
HPhi* phi =
phis
->at(i);
1013
const ZoneList<HPhi*>*
phis
= block->
phis
();
local
1263
const ZoneList<HPhi*>*
phis
= block->
phis
();
local
[
all
...]
hydrogen.h
63
const ZoneList<HPhi*>*
phis
() const { return &phis_; }
function in class:v8::internal::HBasicBlock
[
all
...]
hydrogen.cc
258
// instructions have been added to the block (they have
phis
for all
259
// values in the environment, these
phis
may be eliminated later).
263
ASSERT(
phis
()->length() == incoming_env->length());
514
// Check that
phis
have correct arguments.
515
for (int j = 0; j < block->
phis
()->length(); j++) {
516
HPhi* phi = block->
phis
()->at(j);
842
// Worklist of
phis
that can potentially be eliminated. Initialized with
847
worklist.AddAll(*blocks_[i]->
phis
());
880
for (int j = 0; j < blocks_[i]->
phis
()->length(); j++) {
881
HPhi* phi = blocks_[i]->
phis
()->at(j)
1907
const ZoneList<HPhi*>*
phis
= block->
phis
();
local
1939
const ZoneList<HPhi*>*
phis
= block->
phis
();
local
2095
const ZoneList<HPhi*>*
phis
= blocks_[i]->
phis
();
local
2528
const ZoneList<HPhi*>*
phis
= graph()->osr_loop_entry()->
phis
();
local
[
all
...]
Completed in 400 milliseconds