Searched defs:phi_operand (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/v8/src/
H A Dhydrogen-check-elimination.cc205 HValue* phi_operand = phi->OperandAt(pred_index); local
207 HCheckTableEntry* pred_entry = copy->Find(phi_operand);
325 HValue* phi_operand = phi->OperandAt(pred_index); local
326 that_entry = that->Find(phi_operand);
H A Dlithium-allocator.cc1018 LUnallocated* phi_operand = local
1020 phi_operand->set_virtual_register(phi->id());
1039 phi_operand);
1053 branch->pointer_map()->RecordPointer(phi_operand, chunk()->zone());
1055 branch->pointer_map()->RecordUntagged(phi_operand, chunk()->zone());
1063 AddMove(phi_operand, live_range->GetSpillOperand(), chunk()->zone());
1284 LOperand* phi_operand = NULL; local
1293 phi_operand = to;
1301 Define(block_start, phi_operand, hint);
H A Dhydrogen-instructions.cc2189 * This method detects if phi is an induction variable, with phi_operand as
2192 * It cheks is phi_operand has the form "phi + constant".
2198 HValue* phi_operand) {
2199 if (!phi_operand->representation().IsInteger32()) return 0;
2201 if (phi_operand->IsAdd()) {
2202 HAdd* operation = HAdd::cast(phi_operand);
2210 } else if (phi_operand->IsSub()) {
2211 HSub* operation = HSub::cast(phi_operand);
2197 ComputeIncrement(HPhi* phi, HValue* phi_operand) argument
/external/chromium_org/v8/src/compiler/
H A Dregister-allocator.cc1069 UnallocatedOperand* phi_operand = local
1071 phi_operand->set_virtual_register(phi->id());
1087 phi_operand);
1097 ->AddMove(phi_operand, live_range->GetSpillOperand(), code_zone());
1307 InstructionOperand* phi_operand = NULL; local
1318 phi_operand = to;
1326 Define(block_start, phi_operand, hint);

Completed in 2195 milliseconds