Lines Matching +full:carry +full:- +full:less
1 //===-- Sparc.h - Top-level interface for Sparc representation --*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
10 // Sparc back-end.
12 //===----------------------------------------------------------------------===//
47 ICC_LE = 2, // Less or Equal
49 ICC_L = 3, // Less
51 ICC_LEU = 4, // Less or Equal Unsigned
52 ICC_CC = 13, // Carry Clear/Great or Equal Unsigned
53 ICC_CS = 5, // Carry Set/Less Unsigned
65 FCC_L = 4 + FCC_BEGIN, // Less
66 FCC_UL = 3 + FCC_BEGIN, // Unordered or Less
67 FCC_LG = 2 + FCC_BEGIN, // Less or Greater
73 FCC_LE = 13 + FCC_BEGIN, // Less or Equal
74 FCC_ULE = 14 + FCC_BEGIN, // Unordered or Less or Equal
97 REG_LEZ = 2 + REG_BEGIN, // Less or equal to zero
98 REG_LZ = 3 + REG_BEGIN, // Less than zero
174 return (unsigned)((imm >> 10) & ((1 << 22)-1)); in HI22()