LLVM API Documentation

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SystemZ.h
Go to the documentation of this file.
1 //==- SystemZ.h - Top-Level Interface for SystemZ representation -*- C++ -*-==//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains the entry points for global functions defined in
11 // the LLVM SystemZ backend.
12 //
13 //===----------------------------------------------------------------------===//
14 
15 #ifndef SYSTEMZ_H
16 #define SYSTEMZ_H
17 
19 #include "llvm/Support/CodeGen.h"
20 
21 namespace llvm {
22  class SystemZTargetMachine;
23  class FunctionPass;
24 
25  namespace SystemZ {
26  // Condition-code mask values.
27  const unsigned CCMASK_0 = 1 << 3;
28  const unsigned CCMASK_1 = 1 << 2;
29  const unsigned CCMASK_2 = 1 << 1;
30  const unsigned CCMASK_3 = 1 << 0;
31  const unsigned CCMASK_ANY = CCMASK_0 | CCMASK_1 | CCMASK_2 | CCMASK_3;
32 
33  // Condition-code mask assignments for integer and floating-point
34  // comparisons.
35  const unsigned CCMASK_CMP_EQ = CCMASK_0;
36  const unsigned CCMASK_CMP_LT = CCMASK_1;
37  const unsigned CCMASK_CMP_GT = CCMASK_2;
41 
42  // Condition-code mask assignments for floating-point comparisons only.
43  const unsigned CCMASK_CMP_UO = CCMASK_3;
45 
46  // All condition-code values produced by comparisons.
47  const unsigned CCMASK_ICMP = CCMASK_0 | CCMASK_1 | CCMASK_2;
48  const unsigned CCMASK_FCMP = CCMASK_0 | CCMASK_1 | CCMASK_2 | CCMASK_3;
49 
50  // Condition-code mask assignments for CS.
51  const unsigned CCMASK_CS_EQ = CCMASK_0;
52  const unsigned CCMASK_CS_NE = CCMASK_1;
53  const unsigned CCMASK_CS = CCMASK_0 | CCMASK_1;
54 
55  // Condition-code mask assignments for a completed SRST loop.
56  const unsigned CCMASK_SRST_FOUND = CCMASK_1;
57  const unsigned CCMASK_SRST_NOTFOUND = CCMASK_2;
58  const unsigned CCMASK_SRST = CCMASK_1 | CCMASK_2;
59 
60  // Condition-code mask assignments for TEST UNDER MASK.
61  const unsigned CCMASK_TM_ALL_0 = CCMASK_0;
62  const unsigned CCMASK_TM_MIXED_MSB_0 = CCMASK_1;
63  const unsigned CCMASK_TM_MIXED_MSB_1 = CCMASK_2;
64  const unsigned CCMASK_TM_ALL_1 = CCMASK_3;
67  const unsigned CCMASK_TM_MSB_0 = CCMASK_0 | CCMASK_1;
68  const unsigned CCMASK_TM_MSB_1 = CCMASK_2 | CCMASK_3;
69  const unsigned CCMASK_TM = CCMASK_ANY;
70 
71  // The position of the low CC bit in an IPM result.
72  const unsigned IPM_CC = 28;
73 
74  // Mask assignments for PFD.
75  const unsigned PFD_READ = 1;
76  const unsigned PFD_WRITE = 2;
77 
78  // Return true if Val fits an LLILL operand.
79  static inline bool isImmLL(uint64_t Val) {
80  return (Val & ~0x000000000000ffffULL) == 0;
81  }
82 
83  // Return true if Val fits an LLILH operand.
84  static inline bool isImmLH(uint64_t Val) {
85  return (Val & ~0x00000000ffff0000ULL) == 0;
86  }
87 
88  // Return true if Val fits an LLIHL operand.
89  static inline bool isImmHL(uint64_t Val) {
90  return (Val & ~0x00000ffff00000000ULL) == 0;
91  }
92 
93  // Return true if Val fits an LLIHH operand.
94  static inline bool isImmHH(uint64_t Val) {
95  return (Val & ~0xffff000000000000ULL) == 0;
96  }
97 
98  // Return true if Val fits an LLILF operand.
99  static inline bool isImmLF(uint64_t Val) {
100  return (Val & ~0x00000000ffffffffULL) == 0;
101  }
102 
103  // Return true if Val fits an LLIHF operand.
104  static inline bool isImmHF(uint64_t Val) {
105  return (Val & ~0xffffffff00000000ULL) == 0;
106  }
107  }
108 
109  FunctionPass *createSystemZISelDag(SystemZTargetMachine &TM,
110  CodeGenOpt::Level OptLevel);
111  FunctionPass *createSystemZElimComparePass(SystemZTargetMachine &TM);
112  FunctionPass *createSystemZShortenInstPass(SystemZTargetMachine &TM);
113  FunctionPass *createSystemZLongBranchPass(SystemZTargetMachine &TM);
114 } // end namespace llvm;
115 #endif
static bool isImmHF(uint64_t Val)
Definition: SystemZ.h:104
const unsigned CCMASK_CMP_GT
Definition: SystemZ.h:37
const unsigned CCMASK_SRST_NOTFOUND
Definition: SystemZ.h:57
const unsigned PFD_READ
Definition: SystemZ.h:75
const unsigned CCMASK_FCMP
Definition: SystemZ.h:48
static bool isImmLF(uint64_t Val)
Definition: SystemZ.h:99
static bool isImmHH(uint64_t Val)
Definition: SystemZ.h:94
const unsigned CCMASK_CS_EQ
Definition: SystemZ.h:51
const unsigned CCMASK_ICMP
Definition: SystemZ.h:47
const unsigned PFD_WRITE
Definition: SystemZ.h:76
const unsigned CCMASK_TM_MSB_0
Definition: SystemZ.h:67
FunctionPass * createSystemZISelDag(SystemZTargetMachine &TM, CodeGenOpt::Level OptLevel)
const unsigned CCMASK_2
Definition: SystemZ.h:29
FunctionPass * createSystemZShortenInstPass(SystemZTargetMachine &TM)
const unsigned CCMASK_ANY
Definition: SystemZ.h:31
const unsigned CCMASK_CS_NE
Definition: SystemZ.h:52
const unsigned CCMASK_TM_SOME_0
Definition: SystemZ.h:65
const unsigned CCMASK_CS
Definition: SystemZ.h:53
const unsigned CCMASK_TM_ALL_1
Definition: SystemZ.h:64
const unsigned CCMASK_TM
Definition: SystemZ.h:69
const unsigned CCMASK_CMP_LE
Definition: SystemZ.h:39
const unsigned CCMASK_TM_MSB_1
Definition: SystemZ.h:68
const unsigned CCMASK_CMP_LT
Definition: SystemZ.h:36
const unsigned CCMASK_3
Definition: SystemZ.h:30
static bool isImmLH(uint64_t Val)
Definition: SystemZ.h:84
const unsigned CCMASK_TM_MIXED_MSB_0
Definition: SystemZ.h:62
const unsigned CCMASK_SRST_FOUND
Definition: SystemZ.h:56
const unsigned CCMASK_CMP_EQ
Definition: SystemZ.h:35
const unsigned CCMASK_CMP_O
Definition: SystemZ.h:44
const unsigned CCMASK_CMP_NE
Definition: SystemZ.h:38
FunctionPass * createSystemZLongBranchPass(SystemZTargetMachine &TM)
const unsigned CCMASK_TM_MIXED_MSB_1
Definition: SystemZ.h:63
const unsigned CCMASK_SRST
Definition: SystemZ.h:58
const unsigned CCMASK_1
Definition: SystemZ.h:28
const unsigned CCMASK_0
Definition: SystemZ.h:27
const unsigned CCMASK_CMP_GE
Definition: SystemZ.h:40
FunctionPass * createSystemZElimComparePass(SystemZTargetMachine &TM)
static bool isImmLL(uint64_t Val)
Definition: SystemZ.h:79
const unsigned IPM_CC
Definition: SystemZ.h:72
const unsigned CCMASK_TM_ALL_0
Definition: SystemZ.h:61
const unsigned CCMASK_TM_SOME_1
Definition: SystemZ.h:66
const unsigned CCMASK_CMP_UO
Definition: SystemZ.h:43
static bool isImmHL(uint64_t Val)
Definition: SystemZ.h:89