Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Dmachine-operator-reducer.h39 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()
Dmachine-graph.h31 Node* Uint32Constant(uint32_t value) { in NON_EXPORTED_BASE()
Dmachine-operator-reducer.cc71 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()
Dgraph-assembler.cc37 Node* GraphAssembler::Uint32Constant(int32_t value) { in Uint32Constant() function in v8::internal::compiler::GraphAssembler
38 return jsgraph()->Uint32Constant(value); in Uint32Constant()
Deffect-control-linearizer.cc1490 __ 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 …]
Djs-generic-lowering.cc589 Node* start_index = jsgraph()->Uint32Constant(p.start_index()); in LowerJSConstructForwardVarargs()
672 Node* start_index = jsgraph()->Uint32Constant(p.start_index()); in LowerJSCallForwardVarargs()
Dgraph-assembler.h177 Node* Uint32Constant(int32_t value);
Dwasm-compiler.h156 Node* Uint32Constant(uint32_t value);
Dsimd-scalar-lowering.cc771 max = mcgraph_->Uint32Constant(std::numeric_limits<uint16_t>::max()); in LowerPack()
782 max = mcgraph_->Uint32Constant(std::numeric_limits<uint8_t>::max()); in LowerPack()
Dwasm-compiler.cc225 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()
Dsimplified-lowering.cc3731 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()