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

Side by Side Diff: src/IceDefs.h

Issue 775953003: Subzero: Improve performance by using llvm::SmallVector<>. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 6 years 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 | « no previous file | src/IceOperand.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 12 matching lines...) Expand all
23 #include <limits> 23 #include <limits>
24 #include <list> 24 #include <list>
25 #include <map> 25 #include <map>
26 #include <string> 26 #include <string>
27 #include <vector> 27 #include <vector>
28 #include "llvm/ADT/ArrayRef.h" 28 #include "llvm/ADT/ArrayRef.h"
29 #include "llvm/ADT/BitVector.h" 29 #include "llvm/ADT/BitVector.h"
30 #include "llvm/ADT/ilist.h" 30 #include "llvm/ADT/ilist.h"
31 #include "llvm/ADT/ilist_node.h" 31 #include "llvm/ADT/ilist_node.h"
32 #include "llvm/ADT/SmallBitVector.h" 32 #include "llvm/ADT/SmallBitVector.h"
33 #include "llvm/ADT/SmallVector.h"
33 #include "llvm/ADT/STLExtras.h" 34 #include "llvm/ADT/STLExtras.h"
34 #include "llvm/Support/Casting.h" 35 #include "llvm/Support/Casting.h"
35 #include "llvm/Support/ELF.h" 36 #include "llvm/Support/ELF.h"
36 #include "llvm/Support/raw_ostream.h" 37 #include "llvm/Support/raw_ostream.h"
37 38
38 namespace Ice { 39 namespace Ice {
39 40
40 class Cfg; 41 class Cfg;
41 class CfgNode; 42 class CfgNode;
42 class Constant; 43 class Constant;
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 IceV_Most = IceV_All & ~IceV_LinearScan 125 IceV_Most = IceV_All & ~IceV_LinearScan
125 }; 126 };
126 typedef uint32_t VerboseMask; 127 typedef uint32_t VerboseMask;
127 128
128 typedef llvm::raw_ostream Ostream; 129 typedef llvm::raw_ostream Ostream;
129 typedef llvm::raw_fd_ostream Fdstream; 130 typedef llvm::raw_fd_ostream Fdstream;
130 131
131 } // end of namespace Ice 132 } // end of namespace Ice
132 133
133 #endif // SUBZERO_SRC_ICEDEFS_H 134 #endif // SUBZERO_SRC_ICEDEFS_H
OLDNEW
« no previous file with comments | « no previous file | src/IceOperand.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698