HomeSort by relevance Sort by last modified time
    Searched defs:ToVreg (Results 1 - 2 of 2) sorted by null

  /external/v8/test/unittests/compiler/
instruction-selector-unittest.h 178 return IsDouble(ToVreg(operand));
181 bool IsDouble(const Node* node) const { return IsDouble(ToVreg(node)); }
184 return IsInteger(ToVreg(operand));
187 bool IsInteger(const Node* node) const { return IsInteger(ToVreg(node)); }
190 return IsReference(ToVreg(operand));
194 return IsReference(ToVreg(node));
217 int ToVreg(const InstructionOperand* operand) const {
225 int ToVreg(const Node* node) const;
instruction-selector-unittest.cc 113 int InstructionSelectorTest::Stream::ToVreg(const Node* node) const {
251 EXPECT_EQ(s.ToVreg(param), s.ToVreg(s[0]->Output()));
255 EXPECT_EQ(s.ToVreg(param), s.ToVreg(s[1]->InputAt(0)));
259 EXPECT_EQ(s.ToVreg(finish), s.ToVreg(s[1]->Output()));
495 EXPECT_EQ(s.ToVreg(function_node), s.ToVreg(call_instr->InputAt(7)));
497 EXPECT_EQ(s.ToVreg(context), s.ToVreg(call_instr->InputAt(8)))
    [all...]

Completed in 118 milliseconds