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

/external/chromium_org/v8/src/
H A Dhydrogen-infer-types.cc14 const ZoneList<HPhi*>* phis = block->phis(); local
15 for (int j = 0; j < phis->length(); j++) {
16 phis->at(j)->UpdateInferredType();
29 // Update phis of the loop header now after the whole loop body is
31 for (int j = 0; j < block->phis()->length(); ++j) {
32 HPhi* phi = block->phis()->at(j);
H A Dhydrogen-redundant-phi.cc11 // Gather all phis from all blocks first.
16 for (int j = 0; j < block->phis()->length(); j++) {
17 all_phis.Add(block->phis()->at(j), zone());
21 // Iteratively reduce all phis in the list.
25 // Make sure that we *really* removed all redundant phis.
27 for (int j = 0; j < blocks->at(i)->phis()->length(); j++) {
28 DCHECK(blocks->at(i)->phis()->at(j)->GetRedundantReplacement() == NULL);
36 ProcessPhis(block->phis());
40 void HRedundantPhiEliminationPhase::ProcessPhis(const ZoneList<HPhi*>* phis) { argument
43 // Iterately replace all redundant phis i
[all...]
H A Dhydrogen-infer-representation.cc21 // bit-vector of length <number of phis>.
32 // (2) Do a fixed point iteration to find the set of connected phis. A
53 // Set truncation flags for groups of connected phis. This is a conservative
61 // Check if all uses of all connected phis in this group are truncating.
76 // Clear truncation flag of this group of connected phis.
85 // Clear truncation flag of this group of connected phis.
97 // This step uses kTruncatingToInt32 flags of phis.
103 // sum up the non-phi use counts of all connected phis.
118 const ZoneList<HPhi*>* phis = block->phis(); local
140 const ZoneList<HPhi*>* phis = block->phis(); local
[all...]
H A Dhydrogen-osr.cc93 const ZoneList<HPhi*>* phis = osr_loop_entry_->phis(); local
94 for (int j = 0; j < phis->length(); j++) {
95 HPhi* phi = phis->at(j);
H A Dhydrogen-representation-changes.cc109 // Compute truncation flag for phis: Initially assume that all
110 // int32-phis allow truncation and iteratively remove the ones that
189 const ZoneList<HPhi*>* phis = block->phis(); local
190 for (int j = 0; j < phis->length(); j++) {
191 InsertRepresentationChangesForValue(phis->at(j));
H A Dlithium-allocator.cc557 const ZoneList<HPhi*>* phis = successor->phis(); local
558 for (int i = 0; i < phis->length(); ++i) {
559 HPhi* phi = phis->at(i);
1015 const ZoneList<HPhi*>* phis = block->phis(); local
1016 for (int i = 0; i < phis->length(); ++i) {
1017 HPhi* phi = phis->at(i);
1105 LAllocatorPhase phase("L_Resolve phis", this);
1276 const ZoneList<HPhi*>* phis local
[all...]
H A Dhydrogen.h45 const ZoneList<HPhi*>* phis() const { return &phis_; } function in class:v8::internal::FINAL

Completed in 82 milliseconds