Revision: 25234
Author: [email protected]
Date: Mon Nov 10 09:50:47 2014 UTC
Log: Version 3.30.33.1 (merged r25226)
X87: fix one GC issue caused by x87 crankshaft.
[email protected]
BUG=
Review URL: https://codereview.chromium.org/712953002
https://code.google.com/p/v8/source/detail?r=25234
Modified:
/branches/3.30/src/version.cc
/branches/3.30/src/x87/lithium-codegen-x87.cc
=======================================
--- /branches/3.30/src/version.cc Thu Nov 6 13:23:40 2014 UTC
+++ /branches/3.30/src/version.cc Mon Nov 10 09:50:47 2014 UTC
@@ -35,7 +35,7 @@
#define MAJOR_VERSION 3
#define MINOR_VERSION 30
#define BUILD_NUMBER 33
-#define PATCH_LEVEL 0
+#define PATCH_LEVEL 1
// Use 1 for candidates and 0 otherwise.
// (Boolean macro values are not supported by all preprocessors.)
#define IS_CANDIDATE_VERSION 0
=======================================
--- /branches/3.30/src/x87/lithium-codegen-x87.cc Thu Nov 6 13:23:40 2014
UTC
+++ /branches/3.30/src/x87/lithium-codegen-x87.cc Mon Nov 10 09:50:47 2014
UTC
@@ -4065,8 +4065,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);
@@ -4280,7 +4280,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.