aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorweiliang.lin@intel.com <weiliang.lin@intel.com>2014-11-10 09:50:47 +0000
committerweiliang.lin@intel.com <weiliang.lin@intel.com>2014-11-10 09:51:16 +0000
commitdd6b7b5e4ae5325fae6234b7285d2bfd44705953 (patch)
tree9081950a3d082102940228f1cf20d037ff5b1656
parent79db74124e7ffc0cc1b18c7830a2e63cc0395166 (diff)
downloadv8-dd6b7b5e4ae5325fae6234b7285d2bfd44705953.tar.gz
Version 3.30.33.1 (merged r25226)
X87: fix one GC issue caused by x87 crankshaft. R=jkummerow@chromium.org BUG= Review URL: https://codereview.chromium.org/712953002 Cr-Commit-Position: refs/branch-heads/3.30@{#25234} git-svn-id: https://v8.googlecode.com/svn/branches/3.30@25234 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
-rw-r--r--src/version.cc2
-rw-r--r--src/x87/lithium-codegen-x87.cc6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/version.cc b/src/version.cc
index 70a1f9db8..4c7507746 100644
--- a/src/version.cc
+++ b/src/version.cc
@@ -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
diff --git a/src/x87/lithium-codegen-x87.cc b/src/x87/lithium-codegen-x87.cc
index 2766b658f..1945cc0d6 100644
--- a/src/x87/lithium-codegen-x87.cc
+++ b/src/x87/lithium-codegen-x87.cc
@@ -4065,8 +4065,8 @@ void LCodeGen::DoMathSqrt(LMathSqrt* instr) {
__ 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 @@ void LCodeGen::DoMathExp(LMathExp* instr) {
__ 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);
}