Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(184)

Side by Side Diff: src/IceDefs.h

Issue 1275953002: Fix translator handling of basic block indices. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix nits. Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/IceCfg.cpp ('k') | src/IceGlobalContext.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « src/IceCfg.cpp ('k') | src/IceGlobalContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698