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

  /external/v8/src/ia32/
lithium-ia32.h 313 LOperand* InputAt(int i) { return inputs_[i]; }
323 OperandContainer<LOperand*, I> inputs_;
440 inputs_[0] = context;
446 LOperand* context() { return inputs_[0]; }
486 inputs_[0] = function;
487 inputs_[1] = receiver;
488 inputs_[2] = length;
489 inputs_[3] = elements;
495 LOperand* function() { return inputs_[0]; }
496 LOperand* receiver() { return inputs_[1];
    [all...]
lithium-ia32.cc 117 inputs_.PrintOperandsTo(stream);
    [all...]
  /external/v8/src/arm/
lithium-arm.h 312 LOperand* InputAt(int i) { return inputs_[i]; }
322 OperandContainer<LOperand*, I> inputs_;
478 inputs_[0] = function;
479 inputs_[1] = receiver;
480 inputs_[2] = length;
481 inputs_[3] = elements;
486 LOperand* function() { return inputs_[0]; }
487 LOperand* receiver() { return inputs_[1]; }
488 LOperand* length() { return inputs_[2]; }
489 LOperand* elements() { return inputs_[3];
    [all...]
lithium-arm.cc 115 inputs_.PrintOperandsTo(stream);
    [all...]
  /external/v8/src/x64/
lithium-x64.h 313 LOperand* InputAt(int i) { return inputs_[i]; }
323 OperandContainer<LOperand*, I> inputs_;
479 inputs_[0] = function;
480 inputs_[1] = receiver;
481 inputs_[2] = length;
482 inputs_[3] = elements;
487 LOperand* function() { return inputs_[0]; }
488 LOperand* receiver() { return inputs_[1]; }
489 LOperand* length() { return inputs_[2]; }
490 LOperand* elements() { return inputs_[3];
    [all...]
lithium-x64.cc 117 inputs_.PrintOperandsTo(stream);
    [all...]
  /external/v8/src/
hydrogen-instructions.h 736 HValue* OperandAt(int i) { return inputs_[i]; }
739 void InternalSetOperandAt(int i, HValue* value) { inputs_[i] = value; }
742 HOperandContainer<V> inputs_;
752 HValue* OperandAt(int i) { return inputs_[i]; }
755 void InternalSetOperandAt(int i, HValue* value) { inputs_[i] = value; }
758 HOperandContainer<V> inputs_;
1922 ZoneList<HValue*> inputs_; member in class:v8::HPhi
    [all...]
hydrogen-instructions.cc 926 inputs_.Add(NULL);
    [all...]

Completed in 87 milliseconds