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

Side by Side Diff: src/compiler/bytecode-analysis.h

Issue 2519983002: [ignition] Replace branch+loop analysis with a single pass (Closed)
Patch Set: Update comments Created 4 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 | « src/DEPS ('k') | src/compiler/bytecode-analysis.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef V8_COMPILER_BYTECODE_ANALYSIS_H_
6 #define V8_COMPILER_BYTECODE_ANALYSIS_H_
7
8 #include "src/handles.h"
9 #include "src/zone/zone-containers.h"
10
11 namespace v8 {
12 namespace internal {
13
14 class BytecodeArray;
15
16 namespace compiler {
17
18 class BytecodeAnalysis BASE_EMBEDDED {
19 public:
20 BytecodeAnalysis(Handle<BytecodeArray> bytecode_array, Zone* zone);
21
22 // Analyze the bytecodes to find the loop ranges and nesting. No other
23 // methods in this class return valid information until this has been called.
24 void Analyze();
25
26 // Return true if the given offset is a loop header
27 bool IsLoopHeader(int offset) const;
28 // Get the loop header offset of the containing loop for arbitrary
29 // {offset}, or -1 if the {offset} is not inside any loop.
30 int GetLoopOffsetFor(int offset) const;
31 // Gets the loop header offset of the parent loop of the loop header
32 // at {header_offset}, or -1 for outer-most loops.
33 int GetParentLoopFor(int header_offset) const;
34
35 private:
36 void PushLoop(int loop_header, int loop_end);
37
38 Zone* zone() const { return zone_; }
39 Handle<BytecodeArray> bytecode_array() const { return bytecode_array_; }
40
41 Handle<BytecodeArray> bytecode_array_;
42 Zone* zone_;
43
44 ZoneStack<int> loop_stack_;
45
46 ZoneMap<int, int> end_to_header_;
47 ZoneMap<int, int> header_to_parent_;
48
49 DISALLOW_COPY_AND_ASSIGN(BytecodeAnalysis);
50 };
51
52 } // namespace compiler
53 } // namespace internal
54 } // namespace v8
55
56 #endif // V8_COMPILER_BYTECODE_ANALYSIS_H_
OLDNEW
« no previous file with comments | « src/DEPS ('k') | src/compiler/bytecode-analysis.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698