Searched defs:ToVreg (Results 1 - 2 of 2) sorted by relevance

/external/v8/test/unittests/compiler/
H A Dinstruction-selector-unittest.h141 return IsDouble(ToVreg(operand));
144 bool IsDouble(const Node* node) const { return IsDouble(ToVreg(node)); }
147 return IsInteger(ToVreg(operand));
150 bool IsInteger(const Node* node) const { return IsInteger(ToVreg(node)); }
153 return IsReference(ToVreg(operand));
157 return IsReference(ToVreg(node));
180 int ToVreg(const InstructionOperand* operand) const { function in class:v8::internal::compiler::InstructionSelectorTest::final
188 int ToVreg(const Node* node) const;
H A Dinstruction-selector-unittest.cc114 int InstructionSelectorTest::Stream::ToVreg(const Node* node) const { function in class:v8::internal::compiler::InstructionSelectorTest::Stream
254 EXPECT_EQ(s.ToVreg(param), s.ToVreg(s[0]->Output()));
258 EXPECT_EQ(s.ToVreg(param), s.ToVreg(s[1]->InputAt(0)));
262 EXPECT_EQ(s.ToVreg(finish), s.ToVreg(s[1]->Output()));
497 EXPECT_EQ(s.ToVreg(function_node), s.ToVreg(call_instr->InputAt(7)));
499 EXPECT_EQ(s.ToVreg(contex
[all...]

Completed in 1330 milliseconds