Home
last modified time | relevance | path

Searched refs:OperandAt (Results 1 – 20 of 20) sorted by relevance

/external/v8/src/
Dhydrogen-instructions.h634 return index == kNoRedefinedOperand ? NULL : OperandAt(index); in RedefinedOperand()
652 value = value->OperandAt(index); in ActualValue()
665 virtual HValue* OperandAt(int index) const = 0;
1238 virtual HValue* OperandAt(int i) const FINAL OVERRIDE { in OperandAt() function
1310 HValue* OperandAt(int i) const OVERRIDE { return inputs_[i]; } in OperandAt() function
1344 HValue* value() const { return OperandAt(0); } in value()
1440 HValue* value() const { return OperandAt(0); } in value()
1573 HValue* value() const { return OperandAt(0); } in value()
1574 HValue* context() const { return OperandAt(1); } in context()
1575 HValue* parameter_count() const { return OperandAt(2); } in parameter_count()
[all …]
Dhydrogen-escape-analysis.cc91 HValue* operand = old_state->OperandAt(index); in NewStateForLoopHeader()
105 HValue* operand = old_state->OperandAt(index); in NewStateCopy()
194 NewLoadReplacement(load, state->OperandAt(index)); in AnalyzeDataFlow()
226 if (instr->OperandAt(i) != allocate) continue; in AnalyzeDataFlow()
271 HValue* operand = state->OperandAt(index); in AnalyzeDataFlow()
272 HValue* succ_operand = succ_state->OperandAt(index); in AnalyzeDataFlow()
Dhydrogen-uint32-analysis.cc126 HValue* operand = phi->OperandAt(j); in CheckPhiOperands()
150 HValue* operand = phi->OperandAt(j); in UnmarkPhi()
Dhydrogen-instructions.cc126 h_infer->AddToWorklist(OperandAt(i)); in AddDependantsToWorklist()
422 if (OperandAt(i)->id() != other->OperandAt(i)->id()) return false; in Equals()
434 result = result * 19 + OperandAt(i)->id() + (result >> 7); in Hashcode()
512 HValue* operand = OperandAt(i); in Kill()
578 HValue* old_value = OperandAt(index); in RegisterUse()
644 os << NameOf(OperandAt(i)); in PrintDataTo()
741 HValue* other_operand = OperandAt(i); in Verify()
1083 os << NameOf(OperandAt(i)) << " "; in PrintDataTo()
1709 os << NameOf(OperandAt(i)) << " "; in PrintDataTo()
1800 Range* range = OperandAt(0)->range()->Copy(zone); in InferRange()
[all …]
Dhydrogen-representation-changes.cc154 HValue* input = current->OperandAt(i); in Run()
171 HValue* input = current->OperandAt(i); in Run()
Dhydrogen-mark-deoptimize.cc34 HValue* input = phi->OperandAt(i); in ProcessPhi()
Dhydrogen-dce.cc23 HValue* input = instr->OperandAt(i); in MarkLive()
Dlithium.cc640 HValue* arg_value = value->OperandAt(i); in AddObjectToMaterialize()
656 HValue* arg_value = value->OperandAt(i); in AddObjectToMaterialize()
Dhydrogen-range-analysis.cc227 AddToWorklist(phi->OperandAt(i)); in PropagateMinusZeroChecks()
Dhydrogen-check-elimination.cc205 HValue* phi_operand = phi->OperandAt(pred_index); in Copy()
325 HValue* phi_operand = phi->OperandAt(pred_index); in Merge()
Dlithium-allocator.cc560 if (!phi->OperandAt(index)->IsConstant()) { in ComputeLiveOut()
561 live_out->Add(phi->OperandAt(index)->id()); in ComputeLiveOut()
1022 HValue* op = phi->OperandAt(j); in ResolvePhis()
Dhydrogen-gvn.cc612 if (instr->OperandAt(i)->IsDefinedAfter(pre_header)) { in ProcessLoopBlock()
Dhydrogen.cc3899 if (phi->OperandAt(k) == GetConstantHole()) return false; in CheckConstPhiUses()
/external/v8/src/x64/
Dlithium-x64.cc849 DCHECK(!current->OperandAt(0)->IsControlInstruction()); in VisitInstruction()
851 LDummyUse(UseAny(current->OperandAt(0)))); in VisitInstruction()
854 if (current->OperandAt(i)->IsControlInstruction()) continue; in VisitInstruction()
856 new(zone()) LDummyUse(UseAny(current->OperandAt(i))); in VisitInstruction()
1106 UseFixed(instr->OperandAt(i), descriptor.GetParameterRegister(i - 1)); in DoCallWithDescriptor()
2177 FindDehoistedKeyDefinitions(candidate->OperandAt(i)); in FindDehoistedKeyDefinitions()
/external/v8/src/mips/
Dlithium-mips.cc836 DCHECK(!current->OperandAt(0)->IsControlInstruction()); in VisitInstruction()
838 LDummyUse(UseAny(current->OperandAt(0)))); in VisitInstruction()
841 if (current->OperandAt(i)->IsControlInstruction()) continue; in VisitInstruction()
843 new(zone()) LDummyUse(UseAny(current->OperandAt(i))); in VisitInstruction()
1091 UseFixed(instr->OperandAt(i), descriptor.GetParameterRegister(i - 1)); in DoCallWithDescriptor()
/external/v8/src/mips64/
Dlithium-mips64.cc836 DCHECK(!current->OperandAt(0)->IsControlInstruction()); in VisitInstruction()
838 LDummyUse(UseAny(current->OperandAt(0)))); in VisitInstruction()
841 if (current->OperandAt(i)->IsControlInstruction()) continue; in VisitInstruction()
843 new(zone()) LDummyUse(UseAny(current->OperandAt(i))); in VisitInstruction()
1091 UseFixed(instr->OperandAt(i), descriptor.GetParameterRegister(i - 1)); in DoCallWithDescriptor()
/external/v8/src/arm/
Dlithium-arm.cc826 DCHECK(!current->OperandAt(0)->IsControlInstruction()); in VisitInstruction()
828 LDummyUse(UseAny(current->OperandAt(0)))); in VisitInstruction()
831 if (current->OperandAt(i)->IsControlInstruction()) continue; in VisitInstruction()
833 new(zone()) LDummyUse(UseAny(current->OperandAt(i))); in VisitInstruction()
1086 UseFixed(instr->OperandAt(i), descriptor.GetParameterRegister(i - 1)); in DoCallWithDescriptor()
/external/v8/src/arm64/
Dlithium-arm64.cc664 DCHECK(!current->OperandAt(0)->IsControlInstruction()); in VisitInstruction()
666 LDummyUse(UseAny(current->OperandAt(0)))); in VisitInstruction()
669 if (current->OperandAt(i)->IsControlInstruction()) continue; in VisitInstruction()
671 new(zone()) LDummyUse(UseAny(current->OperandAt(i))); in VisitInstruction()
1040 UseFixed(instr->OperandAt(i), descriptor.GetParameterRegister(i - 1)); in DoCallWithDescriptor()
/external/v8/src/x87/
Dlithium-x87.cc865 DCHECK(!current->OperandAt(0)->IsControlInstruction()); in VisitInstruction()
867 LDummyUse(UseAny(current->OperandAt(0)))); in VisitInstruction()
870 if (current->OperandAt(i)->IsControlInstruction()) continue; in VisitInstruction()
872 new(zone()) LDummyUse(UseAny(current->OperandAt(i))); in VisitInstruction()
1145 UseFixed(instr->OperandAt(i), descriptor.GetParameterRegister(i - 1)); in DoCallWithDescriptor()
/external/v8/src/ia32/
Dlithium-ia32.cc866 DCHECK(!current->OperandAt(0)->IsControlInstruction()); in VisitInstruction()
868 LDummyUse(UseAny(current->OperandAt(0)))); in VisitInstruction()
871 if (current->OperandAt(i)->IsControlInstruction()) continue; in VisitInstruction()
873 new(zone()) LDummyUse(UseAny(current->OperandAt(i))); in VisitInstruction()
1126 UseFixed(instr->OperandAt(i), descriptor.GetParameterRegister(i - 1)); in DoCallWithDescriptor()