HomeSort by relevance Sort by last modified time
    Searched refs:phis (Results 1 - 7 of 7) sorted by null

  /dalvik/dx/src/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());
  /external/v8/src/
lithium-allocator.cc 578 const ZoneList<HPhi*>* phis = successor->phis(); local
579 for (int i = 0; i < phis->length(); ++i) {
580 HPhi* phi = phis->at(i);
1009 const ZoneList<HPhi*>* phis = block->phis(); local
1233 const ZoneList<HPhi*>* phis = block->phis(); local
    [all...]
hydrogen.cc 247 // instructions have been added to the block (they have phis for all
248 // values in the environment, these phis may be eliminated later).
252 ASSERT(phis()->length() == incoming_env->length());
446 // Check that phis have correct arguments.
447 for (int j = 0; j < block->phis()->length(); j++) {
448 HPhi* phi = block->phis()->at(j);
729 // Worklist of phis that can potentially be eliminated. Initialized
734 worklist.AddAll(*blocks_[i]->phis());
771 for (int j = 0; j < blocks_[i]->phis()->length(); j++) {
772 HPhi* phi = blocks_[i]->phis()->at(j)
1654 const ZoneList<HPhi*>* phis = block->phis(); local
1685 const ZoneList<HPhi*>* phis = block->phis(); local
    [all...]
hydrogen.h 61 const ZoneList<HPhi*>* phis() const { return &phis_; } function in class:v8::internal::HBasicBlock
    [all...]
  /external/v8/src/arm/
lithium-arm.cc 915 ASSERT(block->phis()->length() == 0);
932 // We are at a state join => process phis.
936 for (int i = 0; i < block->phis()->length(); ++i) {
937 HPhi* phi = block->phis()->at(i);
    [all...]
  /external/v8/src/ia32/
lithium-ia32.cc 908 ASSERT(block->phis()->length() == 0);
925 // We are at a state join => process phis.
929 for (int i = 0; i < block->phis()->length(); ++i) {
930 HPhi* phi = block->phis()->at(i);
    [all...]
  /external/v8/src/x64/
lithium-x64.cc 910 ASSERT(block->phis()->length() == 0);
927 // We are at a state join => process phis.
931 for (int i = 0; i < block->phis()->length(); ++i) {
932 HPhi* phi = block->phis()->at(i);
    [all...]

Completed in 510 milliseconds