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

Side by Side Diff: src/IceDefs.h

Issue 828873002: Subzero: Start writing out some relocation sections (text) (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: review fixes Created 5 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
« no previous file with comments | « src/IceCfg.cpp ('k') | src/IceELFObjectWriter.h » ('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 declaraions -------*- C++ -*-===// 1 //===- subzero/src/IceDefs.h - Common Subzero declaraions -------*- 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 // This file declares various useful types and classes that have 10 // This file declares various useful types and classes that have
(...skipping 22 matching lines...) Expand all
33 #include "llvm/ADT/SmallBitVector.h" 33 #include "llvm/ADT/SmallBitVector.h"
34 #include "llvm/ADT/SmallVector.h" 34 #include "llvm/ADT/SmallVector.h"
35 #include "llvm/ADT/STLExtras.h" 35 #include "llvm/ADT/STLExtras.h"
36 #include "llvm/Support/Allocator.h" 36 #include "llvm/Support/Allocator.h"
37 #include "llvm/Support/Casting.h" 37 #include "llvm/Support/Casting.h"
38 #include "llvm/Support/ELF.h" 38 #include "llvm/Support/ELF.h"
39 #include "llvm/Support/raw_ostream.h" 39 #include "llvm/Support/raw_ostream.h"
40 40
41 namespace Ice { 41 namespace Ice {
42 42
43 class Assembler;
43 class Cfg; 44 class Cfg;
44 class CfgNode; 45 class CfgNode;
45 class Constant; 46 class Constant;
47 class ELFObjectWriter;
48 class ELFStreamer;
46 class FunctionDeclaration; 49 class FunctionDeclaration;
47 class GlobalContext; 50 class GlobalContext;
48 class GlobalDeclaration; 51 class GlobalDeclaration;
49 class Inst; 52 class Inst;
50 class InstAssign; 53 class InstAssign;
51 class InstPhi; 54 class InstPhi;
52 class InstTarget; 55 class InstTarget;
53 class LiveRange; 56 class LiveRange;
54 class Liveness; 57 class Liveness;
55 class Operand; 58 class Operand;
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 return llvm::make_range(Container.rbegin(), Container.rend()); 169 return llvm::make_range(Container.rbegin(), Container.rend());
167 } 170 }
168 template <typename T> 171 template <typename T>
169 llvm::iterator_range<typename T::reverse_iterator> reverse_range(T &Container) { 172 llvm::iterator_range<typename T::reverse_iterator> reverse_range(T &Container) {
170 return llvm::make_range(Container.rbegin(), Container.rend()); 173 return llvm::make_range(Container.rbegin(), Container.rend());
171 } 174 }
172 175
173 } // end of namespace Ice 176 } // end of namespace Ice
174 177
175 #endif // SUBZERO_SRC_ICEDEFS_H 178 #endif // SUBZERO_SRC_ICEDEFS_H
OLDNEW
« no previous file with comments | « src/IceCfg.cpp ('k') | src/IceELFObjectWriter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698