OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OperandAt
(Results
1 - 7
of
7
) sorted by null
/external/v8/src/
hydrogen-instructions.h
515
virtual HValue*
OperandAt
(int index) = 0;
736
HValue*
OperandAt
(int i) { return inputs_[i]; }
752
HValue*
OperandAt
(int i) { return inputs_[i]; }
783
virtual HValue*
OperandAt
(int index) { return values_[index]; }
835
HValue* value() { return
OperandAt
(0); }
916
HValue* value() { return
OperandAt
(0); }
1023
virtual HValue*
OperandAt
(int index) { return values_[index]; }
[
all
...]
hydrogen-instructions.cc
269
if (
OperandAt
(i) == op) {
286
if (
OperandAt
(i) == op) {
302
if (
OperandAt
(i)->id() != other->
OperandAt
(i)->id()) return false;
314
result = result * 19 +
OperandAt
(i)->id() + (result >> 7);
360
if (use->
OperandAt
(i) == this) {
370
use->
OperandAt
(i) == this) {
380
if (use->
OperandAt
(i) == this) {
417
HValue* old_value =
OperandAt
(index);
542
HValue* other_operand =
OperandAt
(i)
[
all
...]
lithium-allocator.cc
581
if (!phi->
OperandAt
(index)->IsConstant()) {
582
live_out->Add(phi->
OperandAt
(index)->id());
[
all
...]
hydrogen.cc
788
HValue* operand = phi->
OperandAt
(i);
[
all
...]
/external/v8/src/arm/
lithium-arm.cc
838
ASSERT(instr->
OperandAt
(0)->representation().IsInteger32());
839
ASSERT(instr->
OperandAt
(1)->representation().IsInteger32());
840
LOperand* left = UseRegisterAtStart(instr->
OperandAt
(0));
842
HValue* right_value = instr->
OperandAt
(1);
[
all
...]
/external/v8/src/ia32/
lithium-ia32.cc
832
ASSERT(instr->
OperandAt
(0)->representation().IsInteger32());
833
ASSERT(instr->
OperandAt
(1)->representation().IsInteger32());
834
LOperand* left = UseRegisterAtStart(instr->
OperandAt
(0));
836
HValue* right_value = instr->
OperandAt
(1);
[
all
...]
/external/v8/src/x64/
lithium-x64.cc
833
ASSERT(instr->
OperandAt
(0)->representation().IsInteger32());
834
ASSERT(instr->
OperandAt
(1)->representation().IsInteger32());
835
LOperand* left = UseRegisterAtStart(instr->
OperandAt
(0));
837
HValue* right_value = instr->
OperandAt
(1);
[
all
...]
Completed in 159 milliseconds