OLD | NEW |
1 //===- subzero/src/IceTargetLoweringX86Base.h - x86 lowering ----*- C++ -*-===// | 1 //===- subzero/src/IceTargetLoweringX86Base.h - x86 lowering ----*- C++ -*-===// |
2 // | 2 // |
3 // The Subzero Code Generator | 3 // The Subzero Code Generator |
4 // | 4 // |
5 // This file is distributed under the University of Illinois Open Source | 5 // This file is distributed under the University of Illinois Open Source |
6 // License. See LICENSE.TXT for details. | 6 // License. See LICENSE.TXT for details. |
7 // | 7 // |
8 //===----------------------------------------------------------------------===// | 8 //===----------------------------------------------------------------------===// |
9 /// | 9 /// |
10 /// \file | 10 /// \file |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 using ConcreteTarget = typename Traits::ConcreteTarget; | 63 using ConcreteTarget = typename Traits::ConcreteTarget; |
64 using InstructionSetEnum = typename Traits::InstructionSet; | 64 using InstructionSetEnum = typename Traits::InstructionSet; |
65 | 65 |
66 using BrCond = typename Traits::Cond::BrCond; | 66 using BrCond = typename Traits::Cond::BrCond; |
67 using CmppsCond = typename Traits::Cond::CmppsCond; | 67 using CmppsCond = typename Traits::Cond::CmppsCond; |
68 | 68 |
69 using X86Address = typename Traits::Address; | 69 using X86Address = typename Traits::Address; |
70 using X86Operand = typename Traits::X86Operand; | 70 using X86Operand = typename Traits::X86Operand; |
71 using X86OperandMem = typename Traits::X86OperandMem; | 71 using X86OperandMem = typename Traits::X86OperandMem; |
72 using SegmentRegisters = typename Traits::X86OperandMem::SegmentRegisters; | 72 using SegmentRegisters = typename Traits::X86OperandMem::SegmentRegisters; |
73 using SpillVariable = typename Traits::SpillVariable; | |
74 | 73 |
75 using InstX86Br = typename Traits::Insts::Br; | 74 using InstX86Br = typename Traits::Insts::Br; |
76 using InstX86FakeRMW = typename Traits::Insts::FakeRMW; | 75 using InstX86FakeRMW = typename Traits::Insts::FakeRMW; |
77 using InstX86Label = typename Traits::Insts::Label; | 76 using InstX86Label = typename Traits::Insts::Label; |
78 | 77 |
79 ~TargetX86Base() override = default; | 78 ~TargetX86Base() override = default; |
80 | 79 |
81 static void staticInit(GlobalContext *Ctx); | 80 static void staticInit(GlobalContext *Ctx); |
82 static bool shouldBePooled(const Constant *C); | 81 static bool shouldBePooled(const Constant *C); |
83 | 82 |
(...skipping 1085 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1169 | 1168 |
1170 explicit TargetHeaderX86(GlobalContext *Ctx) : TargetHeaderLowering(Ctx) {} | 1169 explicit TargetHeaderX86(GlobalContext *Ctx) : TargetHeaderLowering(Ctx) {} |
1171 }; | 1170 }; |
1172 | 1171 |
1173 } // end of namespace X86NAMESPACE | 1172 } // end of namespace X86NAMESPACE |
1174 } // end of namespace Ice | 1173 } // end of namespace Ice |
1175 | 1174 |
1176 #include "IceTargetLoweringX86BaseImpl.h" | 1175 #include "IceTargetLoweringX86BaseImpl.h" |
1177 | 1176 |
1178 #endif // SUBZERO_SRC_ICETARGETLOWERINGX86BASE_H | 1177 #endif // SUBZERO_SRC_ICETARGETLOWERINGX86BASE_H |
OLD | NEW |