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

Side by Side Diff: src/crankshaft/hydrogen-instructions.h

Issue 2344143003: Moved zones and zone related stuff in its own directory. (Closed)
Patch Set: Merge branch 'master' into zonefolder Created 4 years, 3 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/crankshaft/hydrogen-gvn.h ('k') | src/crankshaft/hydrogen-osr.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 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_CRANKSHAFT_HYDROGEN_INSTRUCTIONS_H_ 5 #ifndef V8_CRANKSHAFT_HYDROGEN_INSTRUCTIONS_H_
6 #define V8_CRANKSHAFT_HYDROGEN_INSTRUCTIONS_H_ 6 #define V8_CRANKSHAFT_HYDROGEN_INSTRUCTIONS_H_
7 7
8 #include <cstring> 8 #include <cstring>
9 #include <iosfwd> 9 #include <iosfwd>
10 10
11 #include "src/allocation.h" 11 #include "src/allocation.h"
12 #include "src/ast/ast.h" 12 #include "src/ast/ast.h"
13 #include "src/base/bits.h" 13 #include "src/base/bits.h"
14 #include "src/bit-vector.h" 14 #include "src/bit-vector.h"
15 #include "src/code-stubs.h" 15 #include "src/code-stubs.h"
16 #include "src/conversions.h" 16 #include "src/conversions.h"
17 #include "src/crankshaft/hydrogen-types.h" 17 #include "src/crankshaft/hydrogen-types.h"
18 #include "src/crankshaft/unique.h" 18 #include "src/crankshaft/unique.h"
19 #include "src/deoptimizer.h" 19 #include "src/deoptimizer.h"
20 #include "src/globals.h" 20 #include "src/globals.h"
21 #include "src/small-pointer-list.h" 21 #include "src/small-pointer-list.h"
22 #include "src/utils.h" 22 #include "src/utils.h"
23 #include "src/zone.h" 23 #include "src/zone/zone.h"
24 24
25 namespace v8 { 25 namespace v8 {
26 namespace internal { 26 namespace internal {
27 27
28 // Forward declarations. 28 // Forward declarations.
29 struct ChangesOf; 29 struct ChangesOf;
30 class HBasicBlock; 30 class HBasicBlock;
31 class HDiv; 31 class HDiv;
32 class HEnvironment; 32 class HEnvironment;
33 class HInferRepresentationPhase; 33 class HInferRepresentationPhase;
(...skipping 7003 matching lines...) Expand 10 before | Expand all | Expand 10 after
7037 bool IsDeletable() const override { return true; } 7037 bool IsDeletable() const override { return true; }
7038 }; 7038 };
7039 7039
7040 #undef DECLARE_INSTRUCTION 7040 #undef DECLARE_INSTRUCTION
7041 #undef DECLARE_CONCRETE_INSTRUCTION 7041 #undef DECLARE_CONCRETE_INSTRUCTION
7042 7042
7043 } // namespace internal 7043 } // namespace internal
7044 } // namespace v8 7044 } // namespace v8
7045 7045
7046 #endif // V8_CRANKSHAFT_HYDROGEN_INSTRUCTIONS_H_ 7046 #endif // V8_CRANKSHAFT_HYDROGEN_INSTRUCTIONS_H_
OLDNEW
« no previous file with comments | « src/crankshaft/hydrogen-gvn.h ('k') | src/crankshaft/hydrogen-osr.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698