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

Side by Side Diff: src/source-position.h

Issue 2451853002: Uniform and precise source positions for inlining (Closed)
Patch Set: fixed gcmole issue Created 4 years, 1 month 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
OLDNEW
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_SOURCE_POSITION_H_ 5 #ifndef V8_SOURCE_POSITION_H_
6 #define V8_SOURCE_POSITION_H_ 6 #define V8_SOURCE_POSITION_H_
7 7
8 #include <ostream> 8 #include <ostream>
9 9
10 #include "src/flags.h" 10 #include "src/flags.h"
11 #include "src/globals.h" 11 #include "src/globals.h"
12 #include "src/handles.h"
12 #include "src/utils.h" 13 #include "src/utils.h"
13 14
14 namespace v8 { 15 namespace v8 {
15 namespace internal { 16 namespace internal {
16 17
17 // This class encapsulates encoding and decoding of sources positions from 18 class Code;
18 // which hydrogen values originated. 19 class CompilationInfo;
19 // When FLAG_track_hydrogen_positions is set this object encodes the 20 class Script;
20 // identifier of the inlining and absolute offset from the start of the 21 class SharedFunctionInfo;
21 // inlined function. 22 struct SourcePositionInfo;
22 // When the flag is not set we simply track absolute offset from the 23
23 // script start. 24 // SourcePosition stores
24 class SourcePosition { 25 // - script_offset (31 bit non-negative int or kNoSourcePosition)
26 // - inlining_id (16 bit non-negative int or kNotInlined).
27 //
28 // A defined inlining_id refers to positions in
29 // CompilationInfo::inlined_functions or
30 // DeoptimizationInputData::InliningPositions, depending on the compilation
31 // stage.
32 class SourcePosition final {
25 public: 33 public:
26 static SourcePosition Unknown() { 34 explicit SourcePosition(int script_offset, int inlining_id = kNotInlined)
27 return SourcePosition::FromRaw(kNoPosition); 35 : value_(0) {
36 SetScriptOffset(script_offset);
37 SetInliningId(inlining_id);
28 } 38 }
29 39
30 bool IsUnknown() const { return value_ == kNoPosition; } 40 static SourcePosition Unknown() { return SourcePosition(kNoSourcePosition); }
41 bool IsKnown() const {
42 return ScriptOffset() != kNoSourcePosition || InliningId() != kNotInlined;
43 }
44 bool isInlined() const { return InliningId() != kNotInlined; }
31 45
32 uint32_t position() const { return PositionField::decode(value_); } 46 std::vector<SourcePositionInfo> InliningStack(Handle<Code> code) const;
33 void set_position(uint32_t position) { 47 std::vector<SourcePositionInfo> InliningStack(CompilationInfo* code) const;
34 if (FLAG_hydrogen_track_positions) { 48
35 value_ = static_cast<uint32_t>(PositionField::update(value_, position)); 49 void Print(std::ostream& out, Code* function) const;
36 } else { 50
37 value_ = position; 51 int ScriptOffset() const { return ScriptOffsetField::decode(value_) - 1; }
38 } 52 int InliningId() const { return InliningIdField::decode(value_) - 1; }
53
54 void SetScriptOffset(int script_offset) {
55 DCHECK(script_offset <= ScriptOffsetField::kMax - 2);
56 DCHECK(script_offset >= kNoSourcePosition);
57 value_ = ScriptOffsetField::update(value_, script_offset + 1);
58 }
59 void SetInliningId(int inlining_id) {
60 DCHECK(inlining_id <= InliningIdField::kMax - 2);
61 DCHECK(inlining_id >= kNotInlined);
62 value_ = InliningIdField::update(value_, inlining_id + 1);
39 } 63 }
40 64
41 uint32_t inlining_id() const { return InliningIdField::decode(value_); } 65 static const int kNotInlined = -1;
42 void set_inlining_id(uint32_t inlining_id) { 66 STATIC_ASSERT(kNoSourcePosition == -1);
43 if (FLAG_hydrogen_track_positions) {
44 value_ =
45 static_cast<uint32_t>(InliningIdField::update(value_, inlining_id));
46 }
47 }
48 67
49 uint32_t raw() const { return value_; } 68 int64_t raw() const { return static_cast<int64_t>(value_); }
50 69 static SourcePosition FromRaw(int64_t raw) {
51 private:
52 static const uint32_t kNoPosition = static_cast<uint32_t>(kNoSourcePosition);
53 typedef BitField<uint32_t, 0, 9> InliningIdField;
54
55 // Offset from the start of the inlined function.
56 typedef BitField<uint32_t, 9, 23> PositionField;
57
58 friend class HPositionInfo;
59 friend class Deoptimizer;
60
61 static SourcePosition FromRaw(uint32_t raw_position) {
62 SourcePosition position; 70 SourcePosition position;
63 position.value_ = raw_position; 71 DCHECK_GE(raw, 0);
72 position.value_ = static_cast<uint64_t>(raw);
64 return position; 73 return position;
65 } 74 }
66 75
67 // If FLAG_hydrogen_track_positions is set contains bitfields InliningIdField 76 private:
68 // and PositionField. 77 // SourcePosition is used in a union in CodeEventsContainer, which requires a
69 // Otherwise contains absolute offset from the script start. 78 // trivial constructor.
70 uint32_t value_; 79 SourcePosition() = default;
80
81 void Print(std::ostream& out, SharedFunctionInfo* function) const;
82 SourcePositionInfo Info(Handle<SharedFunctionInfo> script) const;
83
84 // InliningId is in the high bits for better compression in
85 // SourcePositionTable.
86 typedef BitField64<int, 0, 31> ScriptOffsetField;
87 typedef BitField64<int, 31, 16> InliningIdField;
88 // Leaving the highest bit untouched to allow for signed conversion.
89 uint64_t value_;
71 }; 90 };
72 91
73 inline std::ostream& operator<<(std::ostream& os, const SourcePosition& p) { 92 inline bool operator==(const SourcePosition& lhs, const SourcePosition& rhs) {
74 if (p.IsUnknown()) { 93 return lhs.raw() == rhs.raw();
75 return os << "<?>";
76 } else if (FLAG_hydrogen_track_positions) {
77 return os << "<" << p.inlining_id() << ":" << p.position() << ">";
78 } else {
79 return os << "<0:" << p.raw() << ">";
80 }
81 } 94 }
82 95
96 inline bool operator!=(const SourcePosition& lhs, const SourcePosition& rhs) {
97 return !(lhs == rhs);
98 }
99
100 struct InliningPosition {
101 // position of the inlined call
102 SourcePosition position = SourcePosition::Unknown();
103
104 // references position in DeoptimizationInputData::literals()
105 int inlined_function_id;
106 };
107
108 struct SourcePositionInfo {
109 explicit SourcePositionInfo(SourcePosition pos) : position(pos) {}
110
111 SourcePosition position;
112 MaybeHandle<SharedFunctionInfo> function;
113 int line = -1;
114 int column = -1;
115 };
116
117 std::ostream& operator<<(std::ostream& out, const SourcePosition& pos);
118
119 std::ostream& operator<<(std::ostream& out, const SourcePositionInfo& pos);
120 std::ostream& operator<<(std::ostream& out,
121 const std::vector<SourcePositionInfo>& stack);
122
83 } // namespace internal 123 } // namespace internal
84 } // namespace v8 124 } // namespace v8
85 125
86 #endif // V8_SOURCE_POSITION_H_ 126 #endif // V8_SOURCE_POSITION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698