From: verwaest@chromium.org Date: Wed, 18 Dec 2013 16:17:42 +0000 (+0000) Subject: Bump codesize limit for OSR. X-Git-Tag: upstream/4.7.83~11348 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e2bccd99c4b1c1a36db1a29cb5760d689b873eff;p=platform%2Fupstream%2Fv8.git Bump codesize limit for OSR. R=jkummerow@chromium.org Review URL: https://codereview.chromium.org/111603008 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@18352 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/src/runtime-profiler.cc b/src/runtime-profiler.cc index 8c4b11f..390222d 100644 --- a/src/runtime-profiler.cc +++ b/src/runtime-profiler.cc @@ -66,7 +66,7 @@ static const int kOSRCodeSizeAllowanceBase = 100 * FullCodeGenerator::kCodeSizeMultiplier; static const int kOSRCodeSizeAllowancePerTick = - 3 * FullCodeGenerator::kCodeSizeMultiplier; + 4 * FullCodeGenerator::kCodeSizeMultiplier; // Maximum size in bytes of generated code for a function to be optimized // the very first time it is seen on the stack.