Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Dmachine-operator-reducer.h38 Node* Uint32Constant(uint32_t value) { in NON_EXPORTED_BASE()
48 return Word32And(lhs, Uint32Constant(rhs)); in NON_EXPORTED_BASE()
70 return Replace(Uint32Constant(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()
844 node->ReplaceInput(1, Uint32Constant(WhichPowerOf2(m.right().Value()))); in ReduceUint32Div()
907 node->ReplaceInput(1, Uint32Constant(m.right().Value() - 1)); in ReduceUint32Mod()
913 node->ReplaceInput(1, Int32Mul(quotient, Uint32Constant(divisor))); in ReduceUint32Mod()
1063 Uint32Constant(~((1U << m.right().Value()) - 1U))); in ReduceWord32Shl()
Dgraph-assembler.cc38 Node* GraphAssembler::Uint32Constant(int32_t value) { in Uint32Constant() function in v8::internal::compiler::GraphAssembler
39 return jsgraph()->Uint32Constant(value); in Uint32Constant()
Djs-graph.h87 Node* Uint32Constant(uint32_t value) { in NON_EXPORTED_BASE()
Deffect-control-linearizer.cc1196 __ Uint32Constant(FIRST_JS_RECEIVER_TYPE), value_instance_type); in LowerCheckReceiver()
1210 __ Uint32Constant(FIRST_NONSTRING_TYPE)); in LowerCheckString()
1732 __ Uint32Constant(FIRST_JS_RECEIVER_TYPE), value_instance_type); in LowerObjectIsNonCallable()
1779 __ Uint32Constant(FIRST_JS_RECEIVER_TYPE), value_instance_type); in LowerObjectIsReceiver()
1806 __ Uint32Constant(FIRST_NONSTRING_TYPE)); in LowerObjectIsString()
1968 Node* check0 = __ Uint32LessThanOrEqual(code, __ Uint32Constant(0xFFFF)); in LowerStringFromCodePoint()
1974 code, __ Uint32Constant(String::kMaxOneByteCharCode)); in LowerStringFromCodePoint()
Dgraph-assembler.h237 Node* Uint32Constant(int32_t value);
Dwasm-compiler.h145 Node* Uint32Constant(uint32_t value);
Djs-generic-lowering.cc560 Node* start_index = jsgraph()->Uint32Constant(p.start_index()); in LowerJSCallForwardVarargs()
Dwasm-compiler.cc467 Node* WasmGraphBuilder::Uint32Constant(uint32_t value) { in Uint32Constant() function in v8::internal::compiler::WasmGraphBuilder
468 return jsgraph()->Uint32Constant(value); in Uint32Constant()
1795 jsgraph()->Uint32Constant(FLAG_wasm_max_mem_pages)), in GrowMemory()
2340 Uint32Constant(fixed_offset)), in CallIndirect()
Dsimplified-lowering.cc3305 Node* const zero = jsgraph()->Uint32Constant(0); in Uint32Div()
3325 Node* const zero = jsgraph()->Uint32Constant(0); in Uint32Mod()
3509 Node* const max = jsgraph()->Uint32Constant(255u); in DoUnsigned32ToUint8Clamped()