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

Side by Side Diff: src/IceDefs.h

Issue 1571433004: Implements include/exclude register lists for translation. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: fix nits. Created 4 years, 11 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
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 28 matching lines...) Expand all
39 #include <cstdio> // snprintf 39 #include <cstdio> // snprintf
40 #include <functional> // std::less 40 #include <functional> // std::less
41 #include <limits> 41 #include <limits>
42 #include <list> 42 #include <list>
43 #include <map> 43 #include <map>
44 #include <memory> 44 #include <memory>
45 #include <mutex> 45 #include <mutex>
46 #include <string> 46 #include <string>
47 #include <system_error> 47 #include <system_error>
48 #include <unordered_map> 48 #include <unordered_map>
49 #include <unordered_set>
John 2016/01/11 15:43:26 Please don't add this include if you don't need it
Karl 2016/01/12 23:44:04 I need it in IceClFlags.h. Following the lead of o
49 #include <vector> 50 #include <vector>
50 51
51 namespace Ice { 52 namespace Ice {
52 53
53 class Assembler; 54 class Assembler;
54 class Cfg; 55 class Cfg;
55 class CfgNode; 56 class CfgNode;
56 class Constant; 57 class Constant;
57 class ELFObjectWriter; 58 class ELFObjectWriter;
58 class ELFStreamer; 59 class ELFStreamer;
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 RPE_GlobalVariableReordering, 305 RPE_GlobalVariableReordering,
305 RPE_NopInsertion, 306 RPE_NopInsertion,
306 RPE_PooledConstantReordering, 307 RPE_PooledConstantReordering,
307 RPE_RegAllocRandomization, 308 RPE_RegAllocRandomization,
308 RPE_num 309 RPE_num
309 }; 310 };
310 311
311 } // end of namespace Ice 312 } // end of namespace Ice
312 313
313 #endif // SUBZERO_SRC_ICEDEFS_H 314 #endif // SUBZERO_SRC_ICEDEFS_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698