Searched refs:Word32Xor (Results 1 – 12 of 12) sorted by relevance
/external/v8/src/compiler/ |
D | int64-lowering.cc | 407 graph()->NewNode(machine()->Word32Xor(), GetReplacementLow(left), in LowerNode() 410 graph()->NewNode(machine()->Word32Xor(), GetReplacementHigh(left), in LowerNode() 497 graph()->NewNode(machine()->Word32Xor(), GetReplacementLow(left), in LowerNode() 499 graph()->NewNode(machine()->Word32Xor(), GetReplacementHigh(left), in LowerNode() 668 graph()->NewNode(machine()->Word32Xor(), inv_mask, in LowerNode()
|
D | raw-machine-assembler.h | 218 Node* Word32Xor(Node* a, Node* b) { in Word32Xor() function 219 return AddNode(machine()->Word32Xor(), a, b); in Word32Xor() 240 Node* Word32Not(Node* a) { return Word32Xor(a, Int32Constant(-1)); } in Word32Not()
|
D | machine-operator.h | 216 const Operator* Word32Xor(); in NON_EXPORTED_BASE()
|
D | opcodes.h | 367 V(Word32Xor) \
|
D | code-assembler.h | 103 V(Word32Xor) \
|
D | representation-change.cc | 774 return machine()->Word32Xor(); in Int32OperatorFor()
|
D | machine-operator.cc | 85 V(Word32Xor, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \
|
D | simplified-lowering.cc | 2985 graph()->NewNode(machine()->Word32Xor(), input, sign), in Int32Abs()
|
D | wasm-compiler.cc | 483 op = m->Word32Xor(); in Binop()
|
/external/v8/src/ |
D | code-stub-assembler.cc | 3593 Node* hash = Word32Xor(low, high); in NumberToString() 4156 hash = Word32Xor(hash, seed); in ComputeIntegerHash() 4157 hash = Int32Add(Word32Xor(hash, Int32Constant(0xffffffff)), in ComputeIntegerHash() 4159 hash = Word32Xor(hash, Word32Shr(hash, Int32Constant(12))); in ComputeIntegerHash() 4161 hash = Word32Xor(hash, Word32Shr(hash, Int32Constant(4))); in ComputeIntegerHash() 4163 hash = Word32Xor(hash, Word32Shr(hash, Int32Constant(16))); in ComputeIntegerHash() 5192 hash = Word32Xor(hash, Int32Constant(StubCache::kPrimaryMagic)); in StubCachePrimaryOffset()
|
/external/v8/src/builtins/ |
D | builtins-number.cc | 1740 Node* value = assembler->Word32Xor(lhs_value, rhs_value); in Generate_BitwiseXor()
|
/external/v8/src/interpreter/ |
D | interpreter.cc | 1147 Node* value = __ Word32Xor(lhs_value, rhs_value); in DoBitwiseBinaryOp()
|