Searched refs:Uint32Constant (Results 1 – 11 of 11) sorted by relevance
/external/v8/src/compiler/ |
D | machine-operator-reducer.h | 39 Node* Uint32Constant(uint32_t value) { in NON_EXPORTED_BASE() 49 return Word32And(lhs, Uint32Constant(rhs)); in NON_EXPORTED_BASE() 71 return Replace(Uint32Constant(value)); in NON_EXPORTED_BASE()
|
D | machine-graph.h | 31 Node* Uint32Constant(uint32_t value) { in NON_EXPORTED_BASE()
|
D | machine-operator-reducer.cc | 71 return graph()->NewNode(machine()->Word32Sar(), lhs, Uint32Constant(rhs)); in Word32Sar() 77 return graph()->NewNode(machine()->Word32Shr(), lhs, Uint32Constant(rhs)); in Word32Shr() 111 Uint32Constant(mag.multiplier)); in Int32Div() 132 Uint32Constant(mag.multiplier)); in Uint32Div() 300 node->ReplaceInput(1, Uint32Constant(c << k)); in Reduce() 841 node->ReplaceInput(1, Uint32Constant(WhichPowerOf2(m.right().Value()))); in ReduceUint32Div() 904 node->ReplaceInput(1, Uint32Constant(m.right().Value() - 1)); in ReduceUint32Mod() 910 node->ReplaceInput(1, Int32Mul(quotient, Uint32Constant(divisor))); in ReduceUint32Mod() 1057 Uint32Constant(~((1U << m.right().Value()) - 1U))); in ReduceWord32Shl()
|
D | graph-assembler.cc | 37 Node* GraphAssembler::Uint32Constant(int32_t value) { in Uint32Constant() function in v8::internal::compiler::GraphAssembler 38 return jsgraph()->Uint32Constant(value); in Uint32Constant()
|
D | effect-control-linearizer.cc | 1490 __ Uint32Constant(FIRST_JS_RECEIVER_TYPE), value_instance_type); in LowerCheckReceiver() 1517 __ Uint32Constant(FIRST_NONSTRING_TYPE)); in LowerCheckString() 2110 __ Word32Equal(value_instance_type, __ Uint32Constant(BIGINT_TYPE)); in LowerObjectIsBigInt() 2384 __ Uint32Constant(FIRST_JS_RECEIVER_TYPE), value_instance_type); in LowerObjectIsNonCallable() 2432 __ Uint32Constant(FIRST_JS_RECEIVER_TYPE), value_instance_type); in LowerObjectIsReceiver() 2459 __ Uint32Constant(FIRST_NONSTRING_TYPE)); in LowerObjectIsString() 2481 __ Word32Equal(value_instance_type, __ Uint32Constant(SYMBOL_TYPE)); in LowerObjectIsSymbol() 3002 Node* code = __ Word32And(value, __ Uint32Constant(0xFFFF)); in LowerStringFromSingleCharCode() 3010 code, __ Uint32Constant(String::kMaxOneByteCharCode)); in LowerStringFromSingleCharCode() 3126 Node* check0 = __ Uint32LessThanOrEqual(code, __ Uint32Constant(0xFFFF)); in LowerStringFromSingleCodePoint() [all …]
|
D | js-generic-lowering.cc | 589 Node* start_index = jsgraph()->Uint32Constant(p.start_index()); in LowerJSConstructForwardVarargs() 672 Node* start_index = jsgraph()->Uint32Constant(p.start_index()); in LowerJSCallForwardVarargs()
|
D | graph-assembler.h | 177 Node* Uint32Constant(int32_t value);
|
D | wasm-compiler.h | 156 Node* Uint32Constant(uint32_t value);
|
D | simd-scalar-lowering.cc | 771 max = mcgraph_->Uint32Constant(std::numeric_limits<uint16_t>::max()); in LowerPack() 782 max = mcgraph_->Uint32Constant(std::numeric_limits<uint8_t>::max()); in LowerPack()
|
D | wasm-compiler.cc | 225 Node* WasmGraphBuilder::Uint32Constant(uint32_t value) { in Uint32Constant() function in v8::internal::compiler::WasmGraphBuilder 226 return mcgraph()->Uint32Constant(value); in Uint32Constant() 2044 BuildChangeUint31ToSmi(Uint32Constant(encoded_size))}; in Throw() 2121 return Uint32Constant(tag); in ConvertExceptionTagToRuntimeId() 2140 Node* parameters[] = {BuildChangeUint31ToSmi(Uint32Constant(i))}; in GetExceptionValues()
|
D | simplified-lowering.cc | 3731 Node* const zero = jsgraph()->Uint32Constant(0); in Uint32Div() 3750 Node* const zero = jsgraph()->Uint32Constant(0); in Uint32Mod() 3922 Node* const max = jsgraph()->Uint32Constant(255u); in DoUnsigned32ToUint8Clamped()
|