HomeSort by relevance Sort by last modified time
    Searched refs:phis (Results 1 - 9 of 9) 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/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());
  /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.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...]
hydrogen.h 63 const ZoneList<HPhi*>* phis() const { return &phis_; } function in class:v8::internal::HBasicBlock
    [all...]
  /external/v8/src/arm/
lithium-arm.cc 922 ASSERT(block->phis()->length() == 0);
939 // We are at a state join => process phis.
943 for (int i = 0; i < block->phis()->length(); ++i) {
944 HPhi* phi = block->phis()->at(i);
    [all...]
  /external/v8/src/mips/
lithium-mips.cc 922 ASSERT(block->phis()->length() == 0);
939 // We are at a state join => process phis.
943 for (int i = 0; i < block->phis()->length(); ++i) {
944 HPhi* phi = block->phis()->at(i);
    [all...]
  /external/v8/src/x64/
lithium-x64.cc 917 ASSERT(block->phis()->length() == 0);
934 // We are at a state join => process phis.
938 for (int i = 0; i < block->phis()->length(); ++i) {
939 HPhi* phi = block->phis()->at(i);
    [all...]
  /external/v8/src/ia32/
lithium-ia32.cc 923 ASSERT(block->phis()->length() == 0);
940 // We are at a state join => process phis.
944 for (int i = 0; i < block->phis()->length(); ++i) {
945 HPhi* phi = block->phis()->at(i);
    [all...]

Completed in 258 milliseconds