Revision: 25232
Author: [email protected]
Date: Mon Nov 10 09:08:28 2014 UTC
Log: Version 3.29.88.17 (merged r25226)
X87: fix one GC issue caused by x87 crankshaft.
[email protected]
BUG=
Review URL: https://codereview.chromium.org/712933002
https://code.google.com/p/v8/source/detail?r=25232
Modified:
/branches/3.29/src/version.cc
/branches/3.29/src/x87/lithium-codegen-x87.cc
=======================================
--- /branches/3.29/src/version.cc Wed Nov 5 10:01:22 2014 UTC
+++ /branches/3.29/src/version.cc Mon Nov 10 09:08:28 2014 UTC
@@ -35,7 +35,7 @@
#define MAJOR_VERSION 3
#define MINOR_VERSION 29
#define BUILD_NUMBER 88
-#define PATCH_LEVEL 16
+#define PATCH_LEVEL 17
// Use 1 for candidates and 0 otherwise.
// (Boolean macro values are not supported by all preprocessors.)
#define IS_CANDIDATE_VERSION 0
=======================================
--- /branches/3.29/src/x87/lithium-codegen-x87.cc Wed Nov 5 10:01:22 2014
UTC
+++ /branches/3.29/src/x87/lithium-codegen-x87.cc Mon Nov 10 09:08:28 2014
UTC
@@ -4060,8 +4060,8 @@
__ mov(esi, Operand(ebp, StandardFrameConstants::kContextOffset));
__ push(temp_result);
__ CallRuntimeSaveDoubles(Runtime::kMathSqrtRT);
- RecordSafepointWithRegisters(
- instr->pointer_map(), 0, Safepoint::kNoLazyDeopt);
+ RecordSafepointWithRegisters(instr->pointer_map(), 1,
+ Safepoint::kNoLazyDeopt);
__ StoreToSafepointRegisterSlot(temp_result, eax);
}
X87PrepareToWrite(result_reg);
@@ -4275,7 +4275,7 @@
__ mov(esi, Operand(ebp, StandardFrameConstants::kContextOffset));
__ push(temp_result);
__ CallRuntimeSaveDoubles(Runtime::kMathExpRT);
- RecordSafepointWithRegisters(instr->pointer_map(), 0,
+ RecordSafepointWithRegisters(instr->pointer_map(), 1,
Safepoint::kNoLazyDeopt);
__ StoreToSafepointRegisterSlot(temp_result, eax);
}
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.