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

  /external/v8/src/
hydrogen-instructions.h 630 virtual HValue* OperandAt(int index) = 0;
873 HValue* OperandAt(int i) { return inputs_[i]; }
925 HValue* OperandAt(int i) { return inputs_[i]; }
969 virtual HValue* OperandAt(int index) { return values_[index]; }
1031 HValue* value() { return OperandAt(0); }
    [all...]
hydrogen-instructions.cc 355 if (OperandAt(i)->id() != other->OperandAt(i)->id()) return false;
367 result = result * 19 + OperandAt(i)->id() + (result >> 7);
418 HValue* operand = OperandAt(i);
486 HValue* old_value = OperandAt(index);
610 HValue* other_operand = OperandAt(i);
1059 Range* range = OperandAt(0)->range()->Copy(zone);
1061 range->Union(OperandAt(i)->range());
1167 HValue* value = OperandAt(i);
1206 HValue* current = OperandAt(position++)
    [all...]
lithium-allocator.cc 580 if (!phi->OperandAt(index)->IsConstant()) {
581 live_out->Add(phi->OperandAt(index)->id());
    [all...]
hydrogen.cc 897 HValue* operand = phi->OperandAt(i);
937 if (phi->OperandAt(k) == GetConstantHole()) return false;
    [all...]
  /external/chromium_org/v8/src/
hydrogen-instructions.h 761 return index == kNoRedefinedOperand ? NULL : OperandAt(index);
773 return index == kNoRedefinedOperand ? this : OperandAt(index);
784 virtual HValue* OperandAt(int index) const = 0;
    [all...]
hydrogen-escape-analysis.cc 92 HValue* operand = old_state->OperandAt(index);
105 HValue* operand = old_state->OperandAt(index);
161 HValue* replacement = state->OperandAt(index);
191 if (simulate->OperandAt(i) != allocate) continue;
199 if (instr->OperandAt(i) != allocate) continue;
253 HValue* operand = state->OperandAt(index);
254 HValue* succ_operand = succ_state->OperandAt(index);
hydrogen-dce.cc 79 if (MarkLive(instr, instr->OperandAt(i))) {
80 worklist.Add(instr->OperandAt(i), zone());
hydrogen-mark-deoptimize.cc 57 HValue* input = phi->OperandAt(i);
hydrogen-minus-zero.cc 67 PropagateMinusZeroChecks(phi->OperandAt(i));
hydrogen-uint32-analysis.cc 122 HValue* operand = phi->OperandAt(j);
146 HValue* operand = phi->OperandAt(j);
hydrogen-deoptimizing-mark.cc 85 HValue* operand = instr->OperandAt(j);
hydrogen-instructions.cc 147 h_infer->AddToWorklist(OperandAt(i));
471 if (OperandAt(i)->id() != other->OperandAt(i)->id()) return false;
483 result = result * 19 + OperandAt(i)->id() + (result >> 7);
548 HValue* operand = OperandAt(i);
625 HValue* old_value = OperandAt(index);
683 OperandAt(i)->PrintNameTo(stream);
763 HValue* other_operand = OperandAt(i);
    [all...]
hydrogen-representation-changes.cc 143 HValue* input = current->OperandAt(i);
lithium-allocator.cc 590 if (!phi->OperandAt(index)->IsConstant()) {
591 live_out->Add(phi->OperandAt(index)->id());
    [all...]
hydrogen-gvn.cc 567 if (instr->OperandAt(i)->IsDefinedAfter(pre_header)) {
hydrogen.cc     [all...]
  /external/chromium_org/v8/src/arm/
lithium-arm.cc 964 HValue* value = object_to_materialize->OperandAt(i);
    [all...]
  /external/chromium_org/v8/src/ia32/
lithium-ia32.cc 1019 HValue* value = object_to_materialize->OperandAt(i);
    [all...]
  /external/chromium_org/v8/src/mips/
lithium-mips.cc 969 HValue* value = object_to_materialize->OperandAt(i);
    [all...]
  /external/chromium_org/v8/src/x64/
lithium-x64.cc 963 HValue* value = object_to_materialize->OperandAt(i);
    [all...]

Completed in 263 milliseconds