Home
last modified time | relevance | path

Searched refs:Uint32Constant (Results 1 – 9 of 9) sorted by relevance

/external/v8/src/compiler/
Dmachine-operator-reducer.h34 Node* Uint32Constant(uint32_t value) { in Uint32Constant() function
39 return Word32And(lhs, Uint32Constant(rhs)); in Word32And()
61 return Replace(Uint32Constant(value)); in ReplaceUint32()
Dmachine-operator-reducer.cc55 return graph()->NewNode(machine()->Word32Sar(), lhs, Uint32Constant(rhs)); in Word32Sar()
61 return graph()->NewNode(machine()->Word32Shr(), lhs, Uint32Constant(rhs)); in Word32Shr()
95 Uint32Constant(mag.multiplier)); in Int32Div()
116 Uint32Constant(mag.multiplier)); in Uint32Div()
294 node->ReplaceInput(1, Uint32Constant(c << k)); in Reduce()
568 node->ReplaceInput(1, Uint32Constant(WhichPowerOf2(m.right().Value()))); in ReduceUint32Div()
632 node->ReplaceInput(1, Uint32Constant(m.right().Value() - 1)); in ReduceUint32Mod()
638 node->ReplaceInput(1, Int32Mul(quotient, Uint32Constant(divisor))); in ReduceUint32Mod()
788 Uint32Constant(~((1U << m.right().Value()) - 1U))); in ReduceWord32Shl()
Djs-graph.h70 Node* Uint32Constant(uint32_t value) { in Uint32Constant() function
Djs-typed-lowering.cc914 jsgraph()->Uint32Constant(FIRST_JS_RECEIVER_TYPE), in ReduceJSToObject()
1190 jsgraph()->Uint32Constant(is_access_check_needed_bit)); in ReduceJSInstanceOf()
1193 jsgraph()->Uint32Constant(is_access_check_needed_bit)); in ReduceJSInstanceOf()
1209 jsgraph()->Uint32Constant(JS_PROXY_TYPE)); in ReduceJSInstanceOf()
Dsimplified-lowering.cc1808 Node* const zero = jsgraph()->Uint32Constant(0); in Uint32Div()
1828 Node* const zero = jsgraph()->Uint32Constant(0); in Uint32Mod()
Djs-native-context-specialization.cc139 jsgraph()->Uint32Constant(FIRST_NONSTRING_TYPE)); in ReduceNamedAccess()
Djs-generic-lowering.cc667 jsgraph()->Uint32Constant(Map::EnumLengthBits::kMask)); in LowerJSForInPrepare()
/external/v8/test/unittests/compiler/
Dmachine-operator-reducer-unittest.cc999 Uint32Constant(bit_cast<uint32_t, int32_t>(-1) << shift), in TEST_F()
1069 graph()->NewNode(machine()->Uint32Div(), Uint32Constant(dividend), in TEST_F()
1070 Uint32Constant(divisor), graph()->start())); in TEST_F()
1080 Uint32Constant(1u << shift), graph()->start())); in TEST_F()
1157 Uint32Constant(bit_cast<uint32_t, int32_t>(-1) << shift), in TEST_F()
1218 graph()->NewNode(machine()->Uint32Mod(), Uint32Constant(dividend), in TEST_F()
1219 Uint32Constant(divisor), graph()->start())); in TEST_F()
1229 Uint32Constant(1u << shift), graph()->start())); in TEST_F()
1371 graph()->NewNode(machine()->Word32Sar(), p0, Uint32Constant(shift)), in TEST_F()
1372 Uint32Constant(limit)); in TEST_F()
[all …]
Dgraph-unittest.h40 Node* Uint32Constant(uint32_t value) { in Uint32Constant() function