Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Dmachine-operator-reducer.h37 Node* Uint32Constant(uint32_t value) { in NON_EXPORTED_BASE()
47 return Word32And(lhs, Uint32Constant(rhs)); in NON_EXPORTED_BASE()
69 return Replace(Uint32Constant(value)); in NON_EXPORTED_BASE()
Dmachine-operator-reducer.cc70 return graph()->NewNode(machine()->Word32Sar(), lhs, Uint32Constant(rhs)); in Word32Sar()
76 return graph()->NewNode(machine()->Word32Shr(), lhs, Uint32Constant(rhs)); in Word32Shr()
110 Uint32Constant(mag.multiplier)); in Int32Div()
131 Uint32Constant(mag.multiplier)); in Uint32Div()
299 node->ReplaceInput(1, Uint32Constant(c << k)); in Reduce()
815 node->ReplaceInput(1, Uint32Constant(WhichPowerOf2(m.right().Value()))); in ReduceUint32Div()
879 node->ReplaceInput(1, Uint32Constant(m.right().Value() - 1)); in ReduceUint32Mod()
885 node->ReplaceInput(1, Int32Mul(quotient, Uint32Constant(divisor))); in ReduceUint32Mod()
1035 Uint32Constant(~((1U << m.right().Value()) - 1U))); in ReduceWord32Shl()
Djs-graph.h88 Node* Uint32Constant(uint32_t value) { in NON_EXPORTED_BASE()
Dwasm-compiler.h126 Node* Uint32Constant(uint32_t value);
Dwasm-compiler.cc401 Node* WasmGraphBuilder::Uint32Constant(uint32_t value) { in Uint32Constant() function in v8::internal::compiler::WasmGraphBuilder
402 return jsgraph()->Uint32Constant(value); in Uint32Constant()
1719 jsgraph()->Uint32Constant(wasm::WasmModule::kV8MaxPages)), in GrowMemory()
2212 Uint32Constant(offset)), in CallIndirect()
2861 function_table_sizes_.push_back(Uint32Constant(table_size)); in EnsureFunctionTableNodes()
Deffect-control-linearizer.cc1275 jsgraph()->Uint32Constant(FIRST_NONSTRING_TYPE)); in LowerCheckString()
2070 jsgraph()->Uint32Constant(FIRST_JS_RECEIVER_TYPE), in LowerObjectIsReceiver()
2114 jsgraph()->Uint32Constant(FIRST_NONSTRING_TYPE)); in LowerObjectIsString()
2542 jsgraph()->Uint32Constant(0xFFFF)); in LowerStringFromCodePoint()
2551 jsgraph()->Uint32Constant(String::kMaxOneByteCharCode)); in LowerStringFromCodePoint()
Dsimplified-lowering.cc3179 Node* const zero = jsgraph()->Uint32Constant(0); in Uint32Div()
3199 Node* const zero = jsgraph()->Uint32Constant(0); in Uint32Mod()
3384 Node* const max = jsgraph()->Uint32Constant(255u); in DoUnsigned32ToUint8Clamped()