7ad5ee3dae
When using the --dump-kernel-bytecode flag, also print the line and number of the source position encoded by a synthetic token position. Also use the decoded value for a synthetic token position when converting it as a C string for printing, which also makes it easier to correlate real and synthetic token positions encoding the same source position. Also change the long outdated comment about synthetic token positions not encoding a real source offset, as most if not all uses of them do actually encode a real source offset. TEST=manual use during debugging Cq-Include-Trybots: luci.dart.try:vm-dyn-linux-debug-x64-try Change-Id: Ic16e320e9a10d8343e8a37c8270c7076bb7052c3 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/484943 Commit-Queue: Tess Strickland <sstrickl@google.com> Reviewed-by: Alexander Markov <alexmarkov@google.com>
248 lines
10 KiB
C++
248 lines
10 KiB
C++
// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
#ifndef RUNTIME_VM_TOKEN_POSITION_H_
|
|
#define RUNTIME_VM_TOKEN_POSITION_H_
|
|
|
|
#include "platform/utils.h"
|
|
#include "vm/allocation.h"
|
|
|
|
namespace dart {
|
|
|
|
// The token space is organized as follows:
|
|
//
|
|
// Sentinel values start at -1 and move towards negative infinity:
|
|
// kNoSourcePos -> -1
|
|
// ClassifyingTokenPositions 1 -> -1 - 1
|
|
// ClassifyingTokenPositions N -> -1 - N
|
|
//
|
|
// Real token positions represent source offsets in some script, and are encoded
|
|
// as non-negative values which are equal to that offset.
|
|
//
|
|
// Synthetically created functions that correspond to user code are given
|
|
// token positions less than the smallest sentinel value. The value for these
|
|
// token positions encodes a non-negative value within [kSmiMin32, -1 - N].
|
|
//
|
|
// For example:
|
|
// A synthetic token with value 0 is encoded as ((-1 - N) - (0 + 1)) = -2 - N.
|
|
// A synthetic token with value 1 is encoded as ((-1 - N) - (1 + 1)) = -3 - N.
|
|
//
|
|
// In most cases, the encoded value of a synthetic token position is the source
|
|
// offset of the code element that caused it to be generated.
|
|
//
|
|
// All other nodes read from user code, such as non-synthetic functions, fields,
|
|
// etc., are given real starting token positions. All nodes coming from user
|
|
// code, both real or synthetic, with ending token positions have real ending
|
|
// token positions.
|
|
//
|
|
// This organization allows for ~1 billion token positions.
|
|
|
|
#define SENTINEL_TOKEN_DESCRIPTORS(V) \
|
|
V(NoSource, -1) \
|
|
V(Box, -2) \
|
|
V(ParallelMove, -3) \
|
|
V(TempMove, -4) \
|
|
V(Constant, -5) \
|
|
V(MoveArgument, -6) \
|
|
V(ControlFlow, -7) \
|
|
V(Context, -8) \
|
|
V(MethodExtractor, -9) \
|
|
V(DeferredSlowPath, -10) \
|
|
V(DeferredDeoptInfo, -11) \
|
|
V(DartCodePrologue, -12) \
|
|
V(DartCodeEpilogue, -13) \
|
|
V(Last, -14) // Always keep this at the end.
|
|
|
|
// A token position represents either a debug safe source (real) position,
|
|
// non-debug safe unique (synthetic) position, or a classifying value used
|
|
// by the profiler.
|
|
class TokenPosition {
|
|
public:
|
|
uword Hash() const;
|
|
|
|
// Returns whether the token positions are equal. Defined for all token
|
|
// positions.
|
|
bool operator==(const TokenPosition& b) const { return value() == b.value(); }
|
|
|
|
// Returns whether the token positions are not equal. Defined for all token
|
|
// positions.
|
|
bool operator!=(const TokenPosition& b) const { return !(*this == b); }
|
|
|
|
// Returns whether the token position is less than [b]. Only defined for
|
|
// real token positions.
|
|
inline bool operator<(const TokenPosition& b) const {
|
|
return Pos() < b.Pos();
|
|
}
|
|
|
|
// Returns whether the token position is greater than [b]. Only defined for
|
|
// real token positions.
|
|
inline bool operator>(const TokenPosition& b) const { return b < *this; }
|
|
|
|
// Returns whether the token position is less than or equal to [b]. Only
|
|
// defined for real token positions.
|
|
inline bool operator<=(const TokenPosition& b) const { return !(*this > b); }
|
|
|
|
// Returns whether the token position is greater than or equal to [b]. Only
|
|
// defined for real token positions.
|
|
inline bool operator>=(const TokenPosition& b) const { return !(*this < b); }
|
|
|
|
// For real token positions, returns whether this is between [a] and [b],
|
|
// inclusive. If [a] or [b] is non-real, they are treated as less than
|
|
// any real token position.
|
|
//
|
|
// For synthetic token positions, returns whether [a] or [b] equals this.
|
|
//
|
|
// For other token positions, always returns false.
|
|
bool IsWithin(const TokenPosition& a, const TokenPosition& b) const {
|
|
if (IsReal()) return (a.value() <= value()) && (value() <= b.value());
|
|
if (IsSynthetic()) return (a == *this) || (b == *this);
|
|
return false;
|
|
}
|
|
|
|
// Returns [a] if both positions are not real, the real position if only one
|
|
// of [a] and [b] is real, or the minimum position of [a] and [b].
|
|
static const TokenPosition& Min(const TokenPosition& a,
|
|
const TokenPosition& b) {
|
|
if (!b.IsReal()) return a;
|
|
if (!a.IsReal()) return b;
|
|
return b.value() < a.value() ? b : a;
|
|
}
|
|
// Returns [a] if both positions are not real, the real position if only one
|
|
// of [a] and [b] is real, or the maximum position of [a] and [b].
|
|
static const TokenPosition& Max(const TokenPosition& a,
|
|
const TokenPosition& b) {
|
|
if (!b.IsReal()) return a;
|
|
if (!a.IsReal()) return b;
|
|
return b.value() > a.value() ? b : a;
|
|
}
|
|
|
|
// Compares two arbitrary source positions for use in sorting, where a
|
|
// negative return means [a] sorts before [b], a return of 0 means [a] is the
|
|
// same as [b], and a positive return means [a] sorts after [b].
|
|
//
|
|
// Does _not_ correspond to the relational operators on token positions, as
|
|
// this also allows comparison of kNoSource, classifying, and synthetic token
|
|
// positions to each other.
|
|
static intptr_t CompareForSorting(const TokenPosition& a,
|
|
const TokenPosition& b) {
|
|
return a.value() - b.value();
|
|
}
|
|
|
|
static constexpr int32_t kMaxSentinelDescriptors = 64;
|
|
|
|
#define DECLARE_VALUES(name, value) \
|
|
static constexpr int32_t k##name##Pos = value; \
|
|
static const TokenPosition k##name;
|
|
SENTINEL_TOKEN_DESCRIPTORS(DECLARE_VALUES);
|
|
#undef DECLARE_VALUES
|
|
// Check assumptions used in Is<X> methods below.
|
|
#define CHECK_VALUES(name, value) \
|
|
static_assert(k##name##Pos < 0, "Non-negative sentinel descriptor"); \
|
|
static_assert( \
|
|
k##name##Pos == kNoSourcePos || k##name##Pos <= kBoxPos, \
|
|
"Box sentinel descriptor is not greatest classifying sentinel value"); \
|
|
static_assert(kLastPos <= k##name##Pos, \
|
|
"Last sentinel descriptor is not least sentinel valu"); \
|
|
SENTINEL_TOKEN_DESCRIPTORS(CHECK_VALUES);
|
|
#undef CHECK_VALUES
|
|
static_assert(kLastPos > -kMaxSentinelDescriptors,
|
|
"More sentinel descriptors than expected");
|
|
|
|
static constexpr int32_t kMinSourcePos = 0;
|
|
static const TokenPosition kMinSource;
|
|
static constexpr int32_t kMaxSourcePos =
|
|
kSmiMax32 - kMaxSentinelDescriptors - 2;
|
|
static const TokenPosition kMaxSource;
|
|
|
|
// Decode from a serialized form.
|
|
static TokenPosition Deserialize(int32_t value);
|
|
|
|
// Encode into a serialized form.
|
|
int32_t Serialize() const;
|
|
|
|
// Given a real token position, returns the next real token position.
|
|
TokenPosition Next() {
|
|
ASSERT(IsReal());
|
|
return TokenPosition(value_ + 1);
|
|
}
|
|
|
|
// If synthetic, returns a real token position encoding the same
|
|
// underlying value, otherwise returns the original token position.
|
|
//
|
|
// Used to write wrappers that also accept synthetic tokens around
|
|
// methods that originally only worked with real token positions.
|
|
// This is done instead of changing the wrapped method to take them
|
|
// since that might cause issues in callers of the wrapped method
|
|
// that assume the method only works with real token positions.
|
|
TokenPosition ToRealIfSynthetic() const {
|
|
if (!IsSynthetic()) return *this;
|
|
return TokenPosition(ConvertSynthetic(value_));
|
|
}
|
|
|
|
// Return the source position for real token positions.
|
|
inline intptr_t Pos() const {
|
|
ASSERT(IsReal());
|
|
return value_;
|
|
}
|
|
|
|
// Is |this| a classifying sentinel source position?
|
|
// Classifying positions are used by the profiler to group instructions whose
|
|
// cost isn't naturally attributable to a source location.
|
|
inline bool IsClassifying() const {
|
|
return (value_ >= kBox.value()) && (value_ <= kLast.value());
|
|
}
|
|
|
|
// Is |this| the no source position sentinel?
|
|
inline bool IsNoSource() const { return value_ == kNoSourcePos; }
|
|
|
|
// Is |this| a synthetic source position?
|
|
// Synthetic source positions are used by the profiler to attribute ticks to a
|
|
// pieces of source, but ignored by the debugger as potential breakpoints.
|
|
inline bool IsSynthetic() const { return value_ < kLastPos; }
|
|
|
|
// Is |this| a real source position?
|
|
inline bool IsReal() const { return value_ >= kMinSourcePos; }
|
|
|
|
// Is |this| a debug pause source position?
|
|
inline bool IsDebugPause() const { return IsReal(); }
|
|
|
|
// Creates a synthetic source position from a non-negative value.
|
|
static TokenPosition Synthetic(intptr_t value) {
|
|
ASSERT(value >= 0 && value <= kMaxSourcePos);
|
|
return TokenPosition(ConvertSynthetic(value));
|
|
}
|
|
|
|
// Encode the token position for storage in the coverage array.
|
|
intptr_t EncodeCoveragePosition(bool is_branch_coverage);
|
|
|
|
// Decode a token position that was stored in the coverage array.
|
|
static TokenPosition DecodeCoveragePosition(intptr_t encoded_position,
|
|
bool* is_branch_coverage);
|
|
|
|
const char* ToCString() const;
|
|
|
|
private:
|
|
explicit TokenPosition(intptr_t value) : value_(value) {}
|
|
|
|
// Used both for encoding and decoding the value of synthetic source
|
|
// locations.
|
|
DART_FORCE_INLINE static intptr_t ConvertSynthetic(intptr_t value) {
|
|
const intptr_t encoded = (kLastPos - 1) - value;
|
|
// Check that the value still fits in an int32.
|
|
ASSERT(Utils::IsInt(32, encoded));
|
|
return encoded;
|
|
}
|
|
|
|
// The raw value of this TokenPosition.
|
|
intptr_t value() const { return value_; }
|
|
|
|
int32_t value_;
|
|
|
|
DISALLOW_ALLOCATION();
|
|
};
|
|
|
|
} // namespace dart
|
|
|
|
#endif // RUNTIME_VM_TOKEN_POSITION_H_
|