Index: src/arm/lithium-codegen-arm.h |
=================================================================== |
--- src/arm/lithium-codegen-arm.h (revision 16062) |
+++ src/arm/lithium-codegen-arm.h (working copy) |
@@ -66,7 +66,8 @@ |
frame_is_built_(false), |
safepoints_(info->zone()), |
resolver_(this), |
- expected_safepoint_kind_(Safepoint::kSimple) { |
+ expected_safepoint_kind_(Safepoint::kSimple), |
+ old_position_(RelocInfo::kNoPosition) { |
PopulateDeoptimizationLiteralsWithInlinedFunctions(); |
} |
@@ -315,6 +316,7 @@ |
int arguments, |
Safepoint::DeoptMode mode); |
void RecordPosition(int position); |
+ void RecordAndUpdatePosition(int position); |
static Condition TokenToCondition(Token::Value op, bool is_unsigned); |
void EmitGoto(int block); |
@@ -417,6 +419,8 @@ |
Safepoint::Kind expected_safepoint_kind_; |
+ int old_position_; |
+ |
class PushSafepointRegistersScope BASE_EMBEDDED { |
public: |
PushSafepointRegistersScope(LCodeGen* codegen, |