/external/v8/src/compiler/ |
D | machine-operator-reducer.cc | 86 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 …]
|
D | int64-lowering.cc | 114 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()
|
D | basic-block-instrumentor.cc | 87 Node* inc = graph->NewNode(machine.Int32Add(), load, one); in Instrument()
|
D | machine-operator-reducer.h | 53 Node* Int32Add(Node* lhs, Node* rhs); in NON_EXPORTED_BASE()
|
D | simd-scalar-lowering.cc | 143 new_indices[i] = graph()->NewNode(machine()->Int32Add(), index, in GetIndexNodes() 381 LowerBinaryOp(node, rep_type, machine()->Int32Add()); in LowerNode()
|
D | representation-change.cc | 774 return machine()->Int32Add(); in Int32OperatorFor() 850 return machine()->Int32Add(); in Uint32OperatorFor()
|
D | graph-assembler.h | 45 V(Int32Add) \
|
D | code-assembler.h | 93 V(Int32Add) \
|
D | machine-operator.h | 249 const Operator* Int32Add(); in NON_EXPORTED_BASE()
|
D | raw-machine-assembler.h | 273 Node* Int32Add(Node* a, Node* b) { in Int32Add() function 274 return AddNode(machine()->Int32Add(), a, b); in Int32Add()
|
D | opcodes.h | 391 V(Int32Add) \
|
D | effect-control-linearizer.cc | 2051 __ 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()
|
D | machine-operator.cc | 92 V(Int32Add, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \
|
D | wasm-compiler.cc | 528 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()
|
D | simplified-lowering.cc | 3233 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/ |
D | code-stub-assembler.cc | 3747 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/ |
D | builtins-string.cc | 1916 var_result.Bind(Int32Add(WordShl(lead, Int32Constant(10)), in LoadSurrogatePairAt() 1917 Int32Add(trail, surrogate_offset))); in LoadSurrogatePairAt()
|
/external/v8/src/ic/ |
D | accessor-assembler.cc | 1349 Node* hash = Int32Add(hash_field, map32); in StubCachePrimaryOffset() 1363 hash = Int32Add(hash, Int32Constant(StubCache::kSecondaryMagic)); in StubCacheSecondaryOffset()
|
/external/v8/src/interpreter/ |
D | interpreter-assembler.cc | 955 new_budget.Bind(Int32Add(old_budget, weight)); in UpdateInterruptBudget()
|