diff options
author | shadchin <shadchin@yandex-team.ru> | 2022-02-10 16:44:39 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:44:39 +0300 |
commit | e9656aae26e0358d5378e5b63dcac5c8dbe0e4d0 (patch) | |
tree | 64175d5cadab313b3e7039ebaa06c5bc3295e274 /contrib/libs/llvm12/lib/Target/X86/X86InstrArithmetic.td | |
parent | 2598ef1d0aee359b4b6d5fdd1758916d5907d04f (diff) | |
download | ydb-e9656aae26e0358d5378e5b63dcac5c8dbe0e4d0.tar.gz |
Restoring authorship annotation for <shadchin@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib/libs/llvm12/lib/Target/X86/X86InstrArithmetic.td')
-rw-r--r-- | contrib/libs/llvm12/lib/Target/X86/X86InstrArithmetic.td | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/contrib/libs/llvm12/lib/Target/X86/X86InstrArithmetic.td b/contrib/libs/llvm12/lib/Target/X86/X86InstrArithmetic.td index 37768af345..e83e1e74ff 100644 --- a/contrib/libs/llvm12/lib/Target/X86/X86InstrArithmetic.td +++ b/contrib/libs/llvm12/lib/Target/X86/X86InstrArithmetic.td @@ -1182,15 +1182,15 @@ defm SUB : ArithBinOp_RF<0x28, 0x2A, 0x2C, "sub", MRM5r, MRM5m, X86sub_flag, sub, 0, 1, 0>; } -// Version of XOR8rr_NOREX that use GR8_NOREX. This is used by the handling of -// __builtin_parity where the last step xors an h-register with an l-register. -let isCodeGenOnly = 1, hasSideEffects = 0, Constraints = "$src1 = $dst", - Defs = [EFLAGS], isCommutable = 1 in -def XOR8rr_NOREX : I<0x30, MRMDestReg, (outs GR8_NOREX:$dst), - (ins GR8_NOREX:$src1, GR8_NOREX:$src2), - "xor{b}\t{$src2, $dst|$dst, $src2}", []>, - Sched<[WriteALU]>; - +// Version of XOR8rr_NOREX that use GR8_NOREX. This is used by the handling of +// __builtin_parity where the last step xors an h-register with an l-register. +let isCodeGenOnly = 1, hasSideEffects = 0, Constraints = "$src1 = $dst", + Defs = [EFLAGS], isCommutable = 1 in +def XOR8rr_NOREX : I<0x30, MRMDestReg, (outs GR8_NOREX:$dst), + (ins GR8_NOREX:$src1, GR8_NOREX:$src2), + "xor{b}\t{$src2, $dst|$dst, $src2}", []>, + Sched<[WriteALU]>; + // Arithmetic. defm ADC : ArithBinOp_RFF<0x10, 0x12, 0x14, "adc", MRM2r, MRM2m, X86adc_flag, 1, 0>; |