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

Side by Side Diff: src/interpreter/bytecode-array-builder.cc

Issue 2284313003: Separate CompilationInfo into its own file. (Closed)
Patch Set: fix 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/ic/ic-inl.h ('k') | src/interpreter/bytecode-generator.cc » ('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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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 #include "src/interpreter/bytecode-array-builder.h" 5 #include "src/interpreter/bytecode-array-builder.h"
6 6
7 #include "src/compiler.h"
8 #include "src/globals.h" 7 #include "src/globals.h"
9 #include "src/interpreter/bytecode-array-writer.h" 8 #include "src/interpreter/bytecode-array-writer.h"
10 #include "src/interpreter/bytecode-dead-code-optimizer.h" 9 #include "src/interpreter/bytecode-dead-code-optimizer.h"
11 #include "src/interpreter/bytecode-label.h" 10 #include "src/interpreter/bytecode-label.h"
12 #include "src/interpreter/bytecode-peephole-optimizer.h" 11 #include "src/interpreter/bytecode-peephole-optimizer.h"
13 #include "src/interpreter/bytecode-register-optimizer.h" 12 #include "src/interpreter/bytecode-register-optimizer.h"
14 #include "src/interpreter/interpreter-intrinsics.h" 13 #include "src/interpreter/interpreter-intrinsics.h"
15 14
16 namespace v8 { 15 namespace v8 {
17 namespace internal { 16 namespace internal {
(...skipping 966 matching lines...) Expand 10 before | Expand all | Expand 10 after
984 return Bytecode::kTailCall; 983 return Bytecode::kTailCall;
985 default: 984 default:
986 UNREACHABLE(); 985 UNREACHABLE();
987 } 986 }
988 return Bytecode::kIllegal; 987 return Bytecode::kIllegal;
989 } 988 }
990 989
991 } // namespace interpreter 990 } // namespace interpreter
992 } // namespace internal 991 } // namespace internal
993 } // namespace v8 992 } // namespace v8
OLDNEW
« no previous file with comments | « src/ic/ic-inl.h ('k') | src/interpreter/bytecode-generator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698