| OLD | NEW |
| 1 //===- subzero/src/IceDefs.h - Common Subzero declarations ------*- C++ -*-===// | 1 //===- subzero/src/IceDefs.h - Common Subzero declarations ------*- 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 25 matching lines...) Expand all Loading... |
| 36 #include <cstdint> | 36 #include <cstdint> |
| 37 #include <cstdio> // snprintf | 37 #include <cstdio> // snprintf |
| 38 #include <functional> // std::less | 38 #include <functional> // std::less |
| 39 #include <limits> | 39 #include <limits> |
| 40 #include <list> | 40 #include <list> |
| 41 #include <map> | 41 #include <map> |
| 42 #include <memory> | 42 #include <memory> |
| 43 #include <mutex> | 43 #include <mutex> |
| 44 #include <string> | 44 #include <string> |
| 45 #include <system_error> | 45 #include <system_error> |
| 46 #include <unordered_map> |
| 46 #include <vector> | 47 #include <vector> |
| 47 | 48 |
| 48 namespace Ice { | 49 namespace Ice { |
| 49 | 50 |
| 50 class Assembler; | 51 class Assembler; |
| 51 class Cfg; | 52 class Cfg; |
| 52 class CfgNode; | 53 class CfgNode; |
| 53 class Constant; | 54 class Constant; |
| 54 class ELFObjectWriter; | 55 class ELFObjectWriter; |
| 55 class ELFStreamer; | 56 class ELFStreamer; |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 llvm::iterator_range<typename T::reverse_iterator> reverse_range(T &Container) { | 271 llvm::iterator_range<typename T::reverse_iterator> reverse_range(T &Container) { |
| 271 return llvm::make_range(Container.rbegin(), Container.rend()); | 272 return llvm::make_range(Container.rbegin(), Container.rend()); |
| 272 } | 273 } |
| 273 | 274 |
| 274 /// Options for pooling and randomization of immediates. | 275 /// Options for pooling and randomization of immediates. |
| 275 enum RandomizeAndPoolImmediatesEnum { RPI_None, RPI_Randomize, RPI_Pool }; | 276 enum RandomizeAndPoolImmediatesEnum { RPI_None, RPI_Randomize, RPI_Pool }; |
| 276 | 277 |
| 277 } // end of namespace Ice | 278 } // end of namespace Ice |
| 278 | 279 |
| 279 #endif // SUBZERO_SRC_ICEDEFS_H | 280 #endif // SUBZERO_SRC_ICEDEFS_H |
| OLD | NEW |