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

Side by Side Diff: src/interpreter/bytecode-label.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/interpreter/bytecode-array-builder.h ('k') | src/interpreter/bytecode-pipeline.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 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 #ifndef V8_INTERPRETER_BYTECODE_LABEL_H_ 5 #ifndef V8_INTERPRETER_BYTECODE_LABEL_H_
6 #define V8_INTERPRETER_BYTECODE_LABEL_H_ 6 #define V8_INTERPRETER_BYTECODE_LABEL_H_
7 7
8 #include "src/zone-containers.h" 8 #include "src/zone/zone-containers.h"
9 9
10 namespace v8 { 10 namespace v8 {
11 namespace internal { 11 namespace internal {
12 namespace interpreter { 12 namespace interpreter {
13 13
14 class BytecodeArrayBuilder; 14 class BytecodeArrayBuilder;
15 15
16 // A label representing a branch target in a bytecode array. When a 16 // A label representing a branch target in a bytecode array. When a
17 // label is bound, it represents a known position in the bytecode 17 // label is bound, it represents a known position in the bytecode
18 // array. For labels that are forward references there can be at most 18 // array. For labels that are forward references there can be at most
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 ZoneVector<BytecodeLabel> labels_; 78 ZoneVector<BytecodeLabel> labels_;
79 79
80 DISALLOW_COPY_AND_ASSIGN(BytecodeLabels); 80 DISALLOW_COPY_AND_ASSIGN(BytecodeLabels);
81 }; 81 };
82 82
83 } // namespace interpreter 83 } // namespace interpreter
84 } // namespace internal 84 } // namespace internal
85 } // namespace v8 85 } // namespace v8
86 86
87 #endif // V8_INTERPRETER_BYTECODE_LABEL_H_ 87 #endif // V8_INTERPRETER_BYTECODE_LABEL_H_
OLDNEW
« no previous file with comments | « src/interpreter/bytecode-array-builder.h ('k') | src/interpreter/bytecode-pipeline.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698