OLD | NEW |
---|---|
1 // Copyright 2016 the V8 project authors. All rights reserved. | 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 | 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_SOURCE_POSITION_TABLE_H_ | 5 #ifndef V8_INTERPRETER_SOURCE_POSITION_TABLE_H_ |
6 #define V8_INTERPRETER_SOURCE_POSITION_TABLE_H_ | 6 #define V8_INTERPRETER_SOURCE_POSITION_TABLE_H_ |
7 | 7 |
8 #include "src/assert-scope.h" | 8 #include "src/assert-scope.h" |
9 #include "src/checks.h" | |
9 #include "src/handles.h" | 10 #include "src/handles.h" |
10 #include "src/zone.h" | |
11 #include "src/zone-containers.h" | 11 #include "src/zone-containers.h" |
12 | 12 |
13 namespace v8 { | 13 namespace v8 { |
14 namespace internal { | 14 namespace internal { |
15 | 15 |
16 class BytecodeArray; | 16 class BytecodeArray; |
17 class FixedArray; | 17 class ByteArray; |
18 class Isolate; | 18 class Isolate; |
19 class Zone; | |
19 | 20 |
20 namespace interpreter { | 21 namespace interpreter { |
21 | 22 |
23 struct PositionTableEntry { | |
24 PositionTableEntry() | |
25 : bytecode_offset(0), source_position(0), is_statement(false) {} | |
26 PositionTableEntry(int bytecode, int source, bool statement) | |
27 : bytecode_offset(bytecode), | |
28 source_position(source), | |
29 is_statement(statement) {} | |
30 | |
31 int bytecode_offset; | |
32 int source_position; | |
33 bool is_statement; | |
34 }; | |
35 | |
22 class SourcePositionTableBuilder { | 36 class SourcePositionTableBuilder { |
23 public: | 37 public: |
24 explicit SourcePositionTableBuilder(Isolate* isolate, Zone* zone) | 38 explicit SourcePositionTableBuilder(Isolate* isolate, Zone* zone) |
25 : isolate_(isolate), entries_(zone) {} | 39 : isolate_(isolate), bytes_(zone), previous_() {} |
40 ~SourcePositionTableBuilder() {} | |
jochen (gone - plz use gerrit)
2016/02/24 13:56:46
= default?
| |
26 | 41 |
27 void AddStatementPosition(size_t bytecode_offset, int source_position); | 42 void AddStatementPosition(size_t bytecode_offset, int source_position); |
28 void AddExpressionPosition(size_t bytecode_offset, int source_position); | 43 void AddExpressionPosition(size_t bytecode_offset, int source_position); |
29 void RevertPosition(size_t bytecode_offset); | 44 Handle<ByteArray> ToSourcePositionTable(); |
30 Handle<FixedArray> ToFixedArray(); | |
31 | 45 |
32 private: | 46 private: |
33 struct Entry { | 47 void AddEntry(const PositionTableEntry& entry); |
34 int bytecode_offset; | |
35 uint32_t source_position_and_type; | |
36 }; | |
37 | |
38 bool CodeOffsetHasPosition(int bytecode_offset) { | |
39 // Return whether bytecode offset already has a position assigned. | |
40 return entries_.size() > 0 && | |
41 entries_.back().bytecode_offset == bytecode_offset; | |
42 } | |
43 | 48 |
44 Isolate* isolate_; | 49 Isolate* isolate_; |
45 ZoneVector<Entry> entries_; | 50 ZoneVector<byte> bytes_; |
51 PositionTableEntry previous_; | |
52 | |
53 #ifdef ENABLE_SLOW_DCHECKS | |
54 std::vector<PositionTableEntry> raw_entries_; | |
55 #endif | |
46 }; | 56 }; |
47 | 57 |
48 class SourcePositionTableIterator { | 58 class SourcePositionTableIterator { |
49 public: | 59 public: |
50 explicit SourcePositionTableIterator(BytecodeArray* bytecode_array); | 60 explicit SourcePositionTableIterator(ByteArray* byte_array); |
51 | 61 |
52 void Advance(); | 62 void Advance(); |
53 | 63 |
54 int bytecode_offset() const { | 64 int bytecode_offset() const { |
55 DCHECK(!done()); | 65 DCHECK(!done()); |
56 return bytecode_offset_; | 66 return current_.bytecode_offset; |
57 } | 67 } |
58 int source_position() const { | 68 int source_position() const { |
59 DCHECK(!done()); | 69 DCHECK(!done()); |
60 return source_position_; | 70 return current_.source_position; |
61 } | 71 } |
62 bool is_statement() const { | 72 bool is_statement() const { |
63 DCHECK(!done()); | 73 DCHECK(!done()); |
64 return is_statement_; | 74 return current_.is_statement; |
65 } | 75 } |
66 bool done() const { return index_ > length_; } | 76 bool done() const { return index_ == kDone; } |
67 | 77 |
68 private: | 78 private: |
69 FixedArray* table_; | 79 static const int kDone = -1; |
80 | |
81 ByteArray* table_; | |
70 int index_; | 82 int index_; |
71 int length_; | 83 PositionTableEntry current_; |
72 bool is_statement_; | |
73 int bytecode_offset_; | |
74 int source_position_; | |
75 DisallowHeapAllocation no_gc; | 84 DisallowHeapAllocation no_gc; |
76 }; | 85 }; |
77 | 86 |
78 } // namespace interpreter | 87 } // namespace interpreter |
79 } // namespace internal | 88 } // namespace internal |
80 } // namespace v8 | 89 } // namespace v8 |
81 | 90 |
82 #endif // V8_INTERPRETER_SOURCE_POSITION_TABLE_H_ | 91 #endif // V8_INTERPRETER_SOURCE_POSITION_TABLE_H_ |
OLD | NEW |