Home | History | Annotate | Download | only in SystemZ

Lines Matching full:xor

7 ; Check XOR of a variable.
44 %res = atomicrmw xor i16 *%src, i16 %b seq_cst
48 ; Check the minimum signed value. We XOR the rotated word with 0x80000000.
73 %res = atomicrmw xor i16 *%src, i16 -32768 seq_cst
77 ; Check XORs of -1. We XOR the rotated word with 0xffff0000.
87 %res = atomicrmw xor i16 *%src, i16 -1 seq_cst
91 ; Check XORs of 1. We XOR the rotated word with 0x00010000.
101 %res = atomicrmw xor i16 *%src, i16 1 seq_cst
105 ; Check the maximum signed value. We XOR the rotated word with 0x7fff0000.
115 %res = atomicrmw xor i16 *%src, i16 32767 seq_cst
119 ; Check XORs of a large unsigned value. We XOR the rotated word with
130 %res = atomicrmw xor i16 *%src, i16 65533 seq_cst