/third_party/node/deps/v8/src/compiler/ |
H A D | int64-lowering.cc | 507 graph()->NewNode(machine()->Word32Xor(), GetReplacementLow(left), in LowerNode() 510 graph()->NewNode(machine()->Word32Xor(), GetReplacementHigh(left), in LowerNode() 585 graph()->NewNode(machine()->Word32Xor(), GetReplacementLow(left), in LowerNode() 587 graph()->NewNode(machine()->Word32Xor(), GetReplacementHigh(left), in LowerNode() 761 machine()->Word32Xor(), in LowerNode() 773 graph()->NewNode(machine()->Word32Xor(), inv_mask, in LowerNode()
|
H A D | raw-machine-assembler.h | 382 Node* Word32Xor(Node* a, Node* b) { in Word32Xor() function in v8::internal::compiler::RawMachineAssembler 383 return AddNode(machine()->Word32Xor(), a, b); in Word32Xor() 407 Node* Word32BitwiseNot(Node* a) { return Word32Xor(a, Int32Constant(-1)); } in Word32BitwiseNot()
|
H A D | graph-assembler.h | 89 V(Word32Xor) \
|
H A D | machine-operator.h | 417 const Operator* Word32Xor();
|
H A D | opcodes.h | 550 V(Word32Xor) \
|
H A D | representation-change.cc | 1295 return machine()->Word32Xor(); in Int32OperatorFor()
|
H A D | effect-control-linearizer.cc | 6534 value = __ Int32Add(__ Word32Xor(value, __ Int32Constant(0xFFFFFFFF)), in ComputeUnseededHash() 6536 value = __ Word32Xor(value, __ Word32Shr(value, __ Int32Constant(12))); in ComputeUnseededHash() 6538 value = __ Word32Xor(value, __ Word32Shr(value, __ Int32Constant(4))); in ComputeUnseededHash() 6540 value = __ Word32Xor(value, __ Word32Shr(value, __ Int32Constant(16))); in ComputeUnseededHash()
|
H A D | code-assembler.h | 285 V(Word32Xor, Word32T, Word32T, Word32T) \
|
H A D | machine-operator.cc | 264 V(Word32Xor, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \
|
H A D | simplified-lowering.cc | 4626 graph()->NewNode(machine()->Word32Xor(), input, sign), in Int32Abs()
|
H A D | wasm-compiler.cc | 870 op = m->Word32Xor(); in Binop()
|
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-collections-gen.cc | 1155 hash = Int32Add(Word32Xor(hash, Int32Constant(0xFFFFFFFF)), 1157 hash = Word32Xor(hash, Word32Shr(hash, Int32Constant(12))); 1159 hash = Word32Xor(hash, Word32Shr(hash, Int32Constant(4))); 1161 hash = Word32Xor(hash, Word32Shr(hash, Int32Constant(16)));
|
H A D | builtins-string-gen.cc | 393 Word32Xor(left_instance_type, right_instance_type); in StringAdd()
|
/third_party/node/deps/v8/src/compiler/backend/s390/ |
H A D | instruction-selector-s390.cc | 364 V(Word32Xor) \ 1441 V(Word32, Word32Xor, kS390_Xor32, Xor32OperandMode, null) \
|
/third_party/node/deps/v8/src/codegen/ |
H A D | code-stub-assembler.h | 620 SMI_ARITHMETIC_BINOP(SmiXor, WordXor, Word32Xor)
|
H A D | code-stub-assembler.cc | 7322 TNode<Word32T> hash = Word32And(Word32Xor(low, high), mask); 13943 return ChangeInt32ToTagged(Signed(Word32Xor(left32, right32)));
|