Home
last modified time | relevance | path

Searched refs:IsInt64Constant (Results 1 – 6 of 6) sorted by relevance

/external/v8/test/unittests/compiler/
Dchange-lowering-unittest.cc79 return Is32() ? IsInt32Constant(value) : IsInt64Constant(value); in IsIntPtrConstant()
534 value, IsInt64Constant(kSmiTagSize + kSmiShiftSize)))), in TARGET_TEST_F()
539 value, IsInt64Constant(kSmiTagMask)), in TARGET_TEST_F()
560 IsWord64Sar(value, IsInt64Constant(kSmiTagSize + kSmiShiftSize))), in TARGET_TEST_F()
564 IsBranch(IsWord64And(value, IsInt64Constant(kSmiTagMask)), in TARGET_TEST_F()
584 IsWord64Sar(value, IsInt64Constant(kSmiTagSize + kSmiShiftSize))), in TARGET_TEST_F()
588 IsBranch(IsWord64And(value, IsInt64Constant(kSmiTagMask)), in TARGET_TEST_F()
607 IsInt64Constant(kSmiTagSize + kSmiShiftSize)), in TARGET_TEST_F()
615 IsInt64Constant(HeapNumber::kValueOffset - kHeapObjectTag), in TARGET_TEST_F()
Dnode-test-utils.h81 Matcher<Node*> IsInt64Constant(const Matcher<int64_t>& value_matcher);
Dinterpreter-assembler-unittest.cc29 return kPointerSize == 8 ? IsInt64Constant(static_cast<int64_t>(value)) in IsIntPtrConstant()
Dmachine-operator-reducer-unittest.cc353 EXPECT_THAT(reduction.replacement(), IsInt64Constant(x)); in TEST_F()
384 IsInt64Constant(bit_cast<int64_t>(static_cast<uint64_t>(x)))); in TEST_F()
Djs-typed-lowering-unittest.cc115 : IsInt64Constant(static_cast<int64_t>(value)); in IsIntPtrConstant()
Dnode-test-utils.cc1606 Matcher<Node*> IsInt64Constant(const Matcher<int64_t>& value_matcher) { in IsInt64Constant() function