Home
last modified time | relevance | path

Searched refs:ToInt64 (Results 1 – 12 of 12) sorted by relevance

/external/v8/test/unittests/compiler/arm64/
Dinstruction-selector-arm64-unittest.cc454 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/
Dinstruction-selector-unittest.h209 int64_t ToInt64(const InstructionOperand* operand) const { in ToInt64() function
210 return ToConstant(operand).ToInt64(); in ToInt64()
/external/v8/test/unittests/compiler/mips64/
Dinstruction-selector-mips64-unittest.cc417 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/
Dcode-generator-impl.h55 return ToConstant(instr_->InputAt(index)).ToInt64(); in InputInt64()
Dinstruction.cc533 return os << constant.ToInt64() << "l"; in operator <<()
Dinstruction.h1028 int64_t ToInt64() const { in ToInt64() function
/external/v8/test/cctest/compiler/
Dtest-run-machops.cc4108 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/
Dcode-generator-s390.cc57 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/
Dcode-generator-x64.cc2213 __ 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/
Dcode-generator-ppc.cc72 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/
Dcode-generator-mips64.cc74 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/
Dcode-generator-arm64.cc215 return Operand(constant.ToInt64(), constant.rmode()); in ToImmediate()
218 return Operand(constant.ToInt64()); in ToImmediate()