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 |
11 /// This file declares the TargetLoweringX86 template class, which implements | 11 /// \brief Declares the TargetLoweringX86 template class, which implements |
Jim Stichnoth
2015/12/01 18:41:16
Reflow to 80-col.
rkotlerimgtec
2015/12/02 01:32:48
Done.
| |
12 /// the TargetLowering base interface for the x86 architecture. | 12 /// the TargetLowering base interface for the x86 architecture. |
13 /// | 13 /// |
14 //===----------------------------------------------------------------------===// | 14 //===----------------------------------------------------------------------===// |
15 | 15 |
16 #ifndef SUBZERO_SRC_ICETARGETLOWERINGX86BASE_H | 16 #ifndef SUBZERO_SRC_ICETARGETLOWERINGX86BASE_H |
17 #define SUBZERO_SRC_ICETARGETLOWERINGX86BASE_H | 17 #define SUBZERO_SRC_ICETARGETLOWERINGX86BASE_H |
18 | 18 |
19 #include "IceDefs.h" | 19 #include "IceDefs.h" |
20 #include "IceInst.h" | 20 #include "IceInst.h" |
21 #include "IceSwitchLowering.h" | 21 #include "IceSwitchLowering.h" |
(...skipping 756 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
778 lowerIcmp64(const InstIcmp *Icmp, const InstBr *Br); | 778 lowerIcmp64(const InstIcmp *Icmp, const InstBr *Br); |
779 | 779 |
780 BoolFolding FoldingInfo; | 780 BoolFolding FoldingInfo; |
781 }; | 781 }; |
782 } // end of namespace X86Internal | 782 } // end of namespace X86Internal |
783 } // end of namespace Ice | 783 } // end of namespace Ice |
784 | 784 |
785 #include "IceTargetLoweringX86BaseImpl.h" | 785 #include "IceTargetLoweringX86BaseImpl.h" |
786 | 786 |
787 #endif // SUBZERO_SRC_ICETARGETLOWERINGX86BASE_H | 787 #endif // SUBZERO_SRC_ICETARGETLOWERINGX86BASE_H |
OLD | NEW |