Home | History | Annotate | Download | only in SystemZ

Lines Matching refs:Val

104 // Return true if Val fits an LLILL operand.
105 static inline bool isImmLL(uint64_t Val) {
106 return (Val & ~0x000000000000ffffULL) == 0;
109 // Return true if Val fits an LLILH operand.
110 static inline bool isImmLH(uint64_t Val) {
111 return (Val & ~0x00000000ffff0000ULL) == 0;
114 // Return true if Val fits an LLIHL operand.
115 static inline bool isImmHL(uint64_t Val) {
116 return (Val & ~0x00000ffff00000000ULL) == 0;
119 // Return true if Val fits an LLIHH operand.
120 static inline bool isImmHH(uint64_t Val) {
121 return (Val & ~0xffff000000000000ULL) == 0;
124 // Return true if Val fits an LLILF operand.
125 static inline bool isImmLF(uint64_t Val) {
126 return (Val & ~0x00000000ffffffffULL) == 0;
129 // Return true if Val fits an LLIHF operand.
130 static inline bool isImmHF(uint64_t Val) {
131 return (Val & ~0xffffffff00000000ULL) == 0;