Home
last modified time | relevance | path

Searched refs:Uint32Constant (Results 1 – 8 of 8) 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.cc56 return graph()->NewNode(machine()->Word32Sar(), lhs, Uint32Constant(rhs)); in Word32Sar()
62 return graph()->NewNode(machine()->Word32Shr(), lhs, Uint32Constant(rhs)); in Word32Shr()
96 Uint32Constant(mag.multiplier)); in Int32Div()
117 Uint32Constant(mag.multiplier)); in Uint32Div()
265 node->ReplaceInput(1, Uint32Constant(c << k)); in Reduce()
624 node->ReplaceInput(1, Uint32Constant(WhichPowerOf2(m.right().Value()))); in ReduceUint32Div()
688 node->ReplaceInput(1, Uint32Constant(m.right().Value() - 1)); in ReduceUint32Mod()
694 node->ReplaceInput(1, Int32Mul(quotient, Uint32Constant(divisor))); in ReduceUint32Mod()
823 Uint32Constant(~((1U << m.right().Value()) - 1U))); in ReduceWord32Shl()
Djs-graph.h77 Node* Uint32Constant(uint32_t value) { in Uint32Constant() function
Djs-typed-lowering.cc1001 jsgraph()->Uint32Constant(FIRST_JS_RECEIVER_TYPE), in ReduceJSToObject()
1255 jsgraph()->Uint32Constant(is_access_check_needed_bit)); in ReduceJSInstanceOf()
1258 jsgraph()->Uint32Constant(is_access_check_needed_bit)); in ReduceJSInstanceOf()
1274 jsgraph()->Uint32Constant(JS_PROXY_TYPE)); in ReduceJSInstanceOf()
Deffect-control-linearizer.cc1206 jsgraph()->Uint32Constant(FIRST_JS_RECEIVER_TYPE), in LowerObjectIsReceiver()
1250 jsgraph()->Uint32Constant(FIRST_NONSTRING_TYPE)); in LowerObjectIsString()
Dsimplified-lowering.cc2992 Node* const zero = jsgraph()->Uint32Constant(0); in Uint32Div()
3012 Node* const zero = jsgraph()->Uint32Constant(0); in Uint32Mod()
/external/v8/test/unittests/compiler/
Dmachine-operator-reducer-unittest.cc1012 Uint32Constant(bit_cast<uint32_t, int32_t>(-1) << shift), in TEST_F()
1082 graph()->NewNode(machine()->Uint32Div(), Uint32Constant(dividend), in TEST_F()
1083 Uint32Constant(divisor), graph()->start())); in TEST_F()
1093 Uint32Constant(1u << shift), graph()->start())); in TEST_F()
1170 Uint32Constant(bit_cast<uint32_t, int32_t>(-1) << shift), in TEST_F()
1231 graph()->NewNode(machine()->Uint32Mod(), Uint32Constant(dividend), in TEST_F()
1232 Uint32Constant(divisor), graph()->start())); in TEST_F()
1242 Uint32Constant(1u << shift), graph()->start())); in TEST_F()
1392 graph()->NewNode(machine()->Word32Sar(), p0, Uint32Constant(shift)), in TEST_F()
1393 Uint32Constant(limit)); in TEST_F()
[all …]
Dgraph-unittest.h39 Node* Uint32Constant(uint32_t value) { in Uint32Constant() function