Searched refs:Uint32Constant (Results 1 - 8 of 8) sorted by relevance
/external/v8/src/compiler/ |
H A D | machine-operator-reducer.h | 34 Node* Uint32Constant(uint32_t value) { function in class:v8::internal::compiler::final 39 return Word32And(lhs, Uint32Constant(rhs)); 61 return Replace(Uint32Constant(value));
|
H A D | js-graph.h | 77 Node* Uint32Constant(uint32_t value) { function in class:v8::internal::compiler::JSGraph
|
H A D | machine-operator-reducer.cc | 56 return graph()->NewNode(machine()->Word32Sar(), lhs, Uint32Constant(rhs)); 62 return graph()->NewNode(machine()->Word32Shr(), lhs, Uint32Constant(rhs)); 96 Uint32Constant(mag.multiplier)); 117 Uint32Constant(mag.multiplier)); 265 node->ReplaceInput(1, Uint32Constant(c << k)); 624 node->ReplaceInput(1, Uint32Constant(WhichPowerOf2(m.right().Value()))); 688 node->ReplaceInput(1, Uint32Constant(m.right().Value() - 1)); 694 node->ReplaceInput(1, Int32Mul(quotient, Uint32Constant(divisor))); 823 Uint32Constant(~((1U << m.right().Value()) - 1U)));
|
H A D | js-typed-lowering.cc | 1001 jsgraph()->Uint32Constant(FIRST_JS_RECEIVER_TYPE), 1255 jsgraph()->Uint32Constant(is_access_check_needed_bit)); 1258 jsgraph()->Uint32Constant(is_access_check_needed_bit)); 1274 jsgraph()->Uint32Constant(JS_PROXY_TYPE));
|
H A D | effect-control-linearizer.cc | 1206 jsgraph()->Uint32Constant(FIRST_JS_RECEIVER_TYPE), 1250 jsgraph()->Uint32Constant(FIRST_NONSTRING_TYPE));
|
H A D | simplified-lowering.cc | 2992 Node* const zero = jsgraph()->Uint32Constant(0); 3012 Node* const zero = jsgraph()->Uint32Constant(0);
|
/external/v8/test/unittests/compiler/ |
H A D | graph-unittest.h | 39 Node* Uint32Constant(uint32_t value) { function in class:v8::internal::compiler::GraphTest
|
H A D | machine-operator-reducer-unittest.cc | 1012 Uint32Constant(bit_cast<uint32_t, int32_t>(-1) << shift), 1082 graph()->NewNode(machine()->Uint32Div(), Uint32Constant(dividend), 1083 Uint32Constant(divisor), graph()->start())); 1093 Uint32Constant(1u << shift), graph()->start())); 1170 Uint32Constant(bit_cast<uint32_t, int32_t>(-1) << shift), 1231 graph()->NewNode(machine()->Uint32Mod(), Uint32Constant(dividend), 1232 Uint32Constant(divisor), graph()->start())); 1242 Uint32Constant(1u << shift), graph()->start())); 1392 graph()->NewNode(machine()->Word32Sar(), p0, Uint32Constant(shift)), 1393 Uint32Constant(limi [all...] |
Completed in 4464 milliseconds