Home | History | Annotate | Download | only in SystemZ

Lines Matching full:xor

7 ; Check XOR of a variable.
44 %res = atomicrmw xor i8 *%src, i8 %b seq_cst
48 ; Check the minimum signed value. We XOR the rotated word with 0x80000000.
73 %res = atomicrmw xor i8 *%src, i8 -128 seq_cst
77 ; Check XORs of -1. We XOR the rotated word with 0xff000000.
87 %res = atomicrmw xor i8 *%src, i8 -1 seq_cst
91 ; Check XORs of 1. We XOR the rotated word with 0x01000000.
101 %res = atomicrmw xor i8 *%src, i8 1 seq_cst
105 ; Check the maximum signed value. We XOR the rotated word with 0x7f000000.
115 %res = atomicrmw xor i8 *%src, i8 127 seq_cst
119 ; Check XORs of a large unsigned value. We XOR the rotated word with
130 %res = atomicrmw xor i8 *%src, i8 253 seq_cst