/external/v8/test/unittests/compiler/arm64/ |
D | instruction-selector-arm64-unittest.cc | 454 EXPECT_EQ(imm, s.ToInt64(s[0]->InputAt(2))); in TEST_P() 469 EXPECT_EQ(imm, s.ToInt64(s[0]->InputAt(2))); in TEST_P() 511 EXPECT_EQ(imm, s.ToInt64(s[0]->InputAt(1))); in TEST_P() 560 EXPECT_EQ(imm, s.ToInt64(s[0]->InputAt(2))); in TEST_P() 660 EXPECT_EQ(imm, s.ToInt64(s[0]->InputAt(1))); in TEST_F() 693 EXPECT_EQ(0, s.ToInt64(s[0]->InputAt(0))); in TEST_F() 786 EXPECT_EQ(imm, s.ToInt64(s[0]->InputAt(1))); in TEST_F() 813 EXPECT_EQ(imm, s.ToInt64(s[0]->InputAt(2))); in TEST_F() 837 EXPECT_EQ(imm, s.ToInt64(s[0]->InputAt(2))); in TEST_F() 1241 EXPECT_EQ(bit, s.ToInt64(s[0]->InputAt(1))); in TEST_F() [all …]
|
/external/v8/test/unittests/compiler/ |
D | instruction-selector-unittest.h | 209 int64_t ToInt64(const InstructionOperand* operand) const { in ToInt64() function 210 return ToConstant(operand).ToInt64(); in ToInt64()
|
/external/v8/test/unittests/compiler/mips64/ |
D | instruction-selector-mips64-unittest.cc | 417 EXPECT_EQ(lsb, s.ToInt64(s[0]->InputAt(1))); in TEST_F() 418 EXPECT_EQ(width, s.ToInt64(s[0]->InputAt(2))); in TEST_F() 435 EXPECT_EQ(lsb, s.ToInt64(s[0]->InputAt(1))); in TEST_F() 436 EXPECT_EQ(width, s.ToInt64(s[0]->InputAt(2))); in TEST_F() 662 EXPECT_EQ(lsb, s.ToInt64(s[0]->InputAt(1))); in TEST_F() 664 EXPECT_EQ(actual_width, s.ToInt64(s[0]->InputAt(2))); in TEST_F() 679 EXPECT_EQ(lsb, s.ToInt64(s[0]->InputAt(1))); in TEST_F() 681 EXPECT_EQ(actual_width, s.ToInt64(s[0]->InputAt(2))); in TEST_F()
|
/external/v8/src/compiler/ |
D | code-generator-impl.h | 55 return ToConstant(instr_->InputAt(index)).ToInt64(); in InputInt64()
|
D | instruction.cc | 533 return os << constant.ToInt64() << "l"; in operator <<()
|
D | instruction.h | 1028 int64_t ToInt64() const { in ToInt64() function
|
/external/v8/test/cctest/compiler/ |
D | test-run-machops.cc | 4108 uint64_t ToInt64(uint32_t low, uint32_t high) { in ToInt64() function 4136 CHECK_EQ(*i + *j, ToInt64(low, high)); in TEST() 4161 CHECK_EQ(ToInt64(inputs[a], inputs[b]) + ToInt64(inputs[c], inputs[d]), in TestInt32PairAddWithSharedInput() 4162 ToInt64(low, high)); in TestInt32PairAddWithSharedInput() 4199 CHECK_EQ(*i - *j, ToInt64(low, high)); in TEST() 4224 CHECK_EQ(ToInt64(inputs[a], inputs[b]) - ToInt64(inputs[c], inputs[d]), in TestInt32PairSubWithSharedInput() 4225 ToInt64(low, high)); in TestInt32PairSubWithSharedInput() 4262 CHECK_EQ(*i * *j, ToInt64(low, high)); in TEST() 4287 CHECK_EQ(ToInt64(inputs[a], inputs[b]) * ToInt64(inputs[c], inputs[d]), in TestInt32PairMulWithSharedInput() 4288 ToInt64(low, high)); in TestInt32PairMulWithSharedInput() [all …]
|
/external/v8/src/compiler/s390/ |
D | code-generator-s390.cc | 57 return Operand(constant.ToInt64()); in InputImmediate() 2043 __ mov(dst, Operand(src.ToInt64(), src.rmode())); in AssembleMove() 2046 __ mov(dst, Operand(src.ToInt64())); in AssembleMove() 2049 __ mov(dst, Operand(src.ToInt64())); in AssembleMove()
|
/external/v8/src/compiler/x64/ |
D | code-generator-x64.cc | 2213 __ movq(dst, src.ToInt64(), src.rmode()); in AssembleMove() 2228 __ movq(dst, src.ToInt64(), src.rmode()); in AssembleMove() 2231 __ Set(dst, src.ToInt64()); in AssembleMove()
|
/external/v8/src/compiler/ppc/ |
D | code-generator-ppc.cc | 72 return Operand(constant.ToInt64()); in InputImmediate() 2039 __ mov(dst, Operand(src.ToInt64(), src.rmode())); in AssembleMove() 2043 __ mov(dst, Operand(src.ToInt64())); in AssembleMove()
|
/external/v8/src/compiler/mips64/ |
D | code-generator-mips64.cc | 74 return Operand(constant.ToInt64()); in InputImmediate() 2167 __ li(dst, Operand(src.ToInt64(), src.rmode())); in AssembleMove() 2170 __ li(dst, Operand(src.ToInt64())); in AssembleMove()
|
/external/v8/src/compiler/arm64/ |
D | code-generator-arm64.cc | 215 return Operand(constant.ToInt64(), constant.rmode()); in ToImmediate() 218 return Operand(constant.ToInt64()); in ToImmediate()
|