Home
last modified time | relevance | path

Searched refs:Int32Add (Results 1 – 19 of 19) sorted by relevance

/external/v8/src/compiler/
Dmachine-operator-reducer.cc86 Node* MachineOperatorReducer::Int32Add(Node* lhs, Node* rhs) { in Int32Add() function in v8::internal::compiler::MachineOperatorReducer
87 Node* const node = graph()->NewNode(machine()->Int32Add(), lhs, rhs); in Int32Add()
113 quotient = Int32Add(quotient, dividend); in Int32Div()
117 return Int32Add(Word32Sar(quotient, mag.shift), Word32Shr(dividend, 31)); in Int32Div()
136 Int32Add(Word32Shr(Int32Sub(dividend, quotient), 1), quotient), in Uint32Div()
754 NodeProperties::ChangeOp(node, machine()->Int32Add()); in ReduceInt32Sub()
809 quotient = Int32Add(Word32Shr(quotient, 32u - shift), dividend); in ReduceInt32Div()
1196 NodeProperties::ChangeOp(node, machine()->Int32Add()); in ReduceWord32And()
1207 NodeProperties::ChangeOp(node, machine()->Int32Add()); in ReduceWord32And()
1219 NodeProperties::ChangeOp(node, machine()->Int32Add()); in ReduceWord32And()
[all …]
Dint64-lowering.cc114 index_high = graph()->NewNode(machine()->Int32Add(), index, in GetIndexNodes()
117 index_low = graph()->NewNode(machine()->Int32Add(), index, in GetIndexNodes()
728 graph()->NewNode(machine()->Int32Add(), in LowerNode()
746 graph()->NewNode(machine()->Int32Add(), in LowerNode()
762 machine()->Int32Add(), in LowerNode()
Dbasic-block-instrumentor.cc87 Node* inc = graph->NewNode(machine.Int32Add(), load, one); in Instrument()
Dmachine-operator-reducer.h53 Node* Int32Add(Node* lhs, Node* rhs); in NON_EXPORTED_BASE()
Dsimd-scalar-lowering.cc143 new_indices[i] = graph()->NewNode(machine()->Int32Add(), index, in GetIndexNodes()
381 LowerBinaryOp(node, rep_type, machine()->Int32Add()); in LowerNode()
Drepresentation-change.cc774 return machine()->Int32Add(); in Int32OperatorFor()
850 return machine()->Int32Add(); in Uint32OperatorFor()
Dgraph-assembler.h45 V(Int32Add) \
Dcode-assembler.h93 V(Int32Add) \
Dmachine-operator.h249 const Operator* Int32Add(); in NON_EXPORTED_BASE()
Draw-machine-assembler.h273 Node* Int32Add(Node* a, Node* b) { in Int32Add() function
274 return AddNode(machine()->Int32Add(), a, b); in Int32Add()
Dopcodes.h391 V(Int32Add) \
Deffect-control-linearizer.cc2051 __ Int32Add(__ Word32Shr(code, __ Int32Constant(10)), lead_offset); in LowerStringFromCodePoint()
2054 Node* trail = __ Int32Add(__ Word32And(code, __ Int32Constant(0x3FF)), in LowerStringFromCodePoint()
2348 ChangeInt32ToSmi(__ Int32Add(index, __ Int32Constant(1))); in LowerMaybeGrowFastElements()
Dmachine-operator.cc92 V(Int32Add, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \
Dwasm-compiler.cc528 op = m->Int32Add(); in Binop()
2020 Node* msk = graph()->NewNode(m->Int32Add(), right, minus_one); in BuildI32AsmjsRemS()
2321 graph()->NewNode(machine->Int32Add(), in CallIndirect()
2337 graph()->NewNode(machine->Int32Add(), in CallIndirect()
Dsimplified-lowering.cc3233 Node* msk = graph()->NewNode(machine()->Int32Add(), rhs, minus_one); in Int32Mod()
3359 Node* msk = graph()->NewNode(machine()->Int32Add(), rhs, minus_one); in Uint32Mod()
/external/v8/src/
Dcode-stub-assembler.cc3747 Int32Add(WordShr(codepoint, Int32Constant(10)), lead_offset); in StringFromCodePoint()
3750 Node* trail = Int32Add(Word32And(codepoint, Int32Constant(0x3FF)), in StringFromCodePoint()
4288 value = Int32Add(value, Int32Constant(delta)); in IncrementCounter()
4515 hash = Int32Add(Word32Xor(hash, Int32Constant(0xffffffff)), in ComputeIntegerHash()
4518 hash = Int32Add(hash, Word32Shl(hash, Int32Constant(2))); in ComputeIntegerHash()
4784 Int32Add(var_low.value(), in DescriptorLookupBinary()
4801 var_low.Bind(Int32Add(mid, Int32Constant(1))); in DescriptorLookupBinary()
4826 var_low.Bind(Int32Add(var_low.value(), Int32Constant(1))); in DescriptorLookupBinary()
/external/v8/src/builtins/
Dbuiltins-string.cc1916 var_result.Bind(Int32Add(WordShl(lead, Int32Constant(10)), in LoadSurrogatePairAt()
1917 Int32Add(trail, surrogate_offset))); in LoadSurrogatePairAt()
/external/v8/src/ic/
Daccessor-assembler.cc1349 Node* hash = Int32Add(hash_field, map32); in StubCachePrimaryOffset()
1363 hash = Int32Add(hash, Int32Constant(StubCache::kSecondaryMagic)); in StubCacheSecondaryOffset()
/external/v8/src/interpreter/
Dinterpreter-assembler.cc955 new_budget.Bind(Int32Add(old_budget, weight)); in UpdateInterruptBudget()