OLD | NEW |
---|---|
1 //===- subzero/src/IceFixups.h - Assembler fixup kinds ----------*- C++ -*-===// | 1 //===- subzero/src/IceFixups.h - Assembler fixup kinds ----------*- 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 /// \brief Declares generic fixup types. | 11 /// \brief Declares generic fixup types. |
12 /// | 12 /// |
13 //===----------------------------------------------------------------------===// | 13 //===----------------------------------------------------------------------===// |
14 | 14 |
15 #ifndef SUBZERO_SRC_ICEFIXUPS_H | 15 #ifndef SUBZERO_SRC_ICEFIXUPS_H |
16 #define SUBZERO_SRC_ICEFIXUPS_H | 16 #define SUBZERO_SRC_ICEFIXUPS_H |
17 | 17 |
18 #include "IceDefs.h" | 18 #include "IceDefs.h" |
19 #include "IceClFlags.h" | |
Jim Stichnoth
2016/04/01 23:36:58
alphabetize this if possible
Karl
2016/04/02 16:55:55
Done.
| |
19 #include "IceStringPool.h" | 20 #include "IceStringPool.h" |
20 | 21 |
21 namespace Ice { | 22 namespace Ice { |
22 | 23 |
23 /// Each target and container format has a different namespace of relocations. | 24 /// Each target and container format has a different namespace of relocations. |
24 /// This holds the specific target+container format's relocation number. | 25 /// This holds the specific target+container format's relocation number. |
25 using FixupKind = uint32_t; | 26 using FixupKind = uint32_t; |
26 | 27 |
27 struct ELFSym; | 28 struct ELFSym; |
28 | 29 |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
107 const std::string Message; | 108 const std::string Message; |
108 const size_t NumBytes; | 109 const size_t NumBytes; |
109 }; | 110 }; |
110 | 111 |
111 using FixupList = std::vector<AssemblerFixup>; | 112 using FixupList = std::vector<AssemblerFixup>; |
112 using FixupRefList = std::vector<AssemblerFixup *>; | 113 using FixupRefList = std::vector<AssemblerFixup *>; |
113 | 114 |
114 } // end of namespace Ice | 115 } // end of namespace Ice |
115 | 116 |
116 #endif // SUBZERO_SRC_ICEFIXUPS_H | 117 #endif // SUBZERO_SRC_ICEFIXUPS_H |
OLD | NEW |