Home | History | Annotate | Download | only in SystemZ

Lines Matching refs:Val

78 // Return true if Val fits an LLILL operand.
79 static inline bool isImmLL(uint64_t Val) {
80 return (Val & ~0x000000000000ffffULL) == 0;
83 // Return true if Val fits an LLILH operand.
84 static inline bool isImmLH(uint64_t Val) {
85 return (Val & ~0x00000000ffff0000ULL) == 0;
88 // Return true if Val fits an LLIHL operand.
89 static inline bool isImmHL(uint64_t Val) {
90 return (Val & ~0x00000ffff00000000ULL) == 0;
93 // Return true if Val fits an LLIHH operand.
94 static inline bool isImmHH(uint64_t Val) {
95 return (Val & ~0xffff000000000000ULL) == 0;
98 // Return true if Val fits an LLILF operand.
99 static inline bool isImmLF(uint64_t Val) {
100 return (Val & ~0x00000000ffffffffULL) == 0;
103 // Return true if Val fits an LLIHF operand.
104 static inline bool isImmHF(uint64_t Val) {
105 return (Val & ~0xffffffff00000000ULL) == 0;