Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Issue 4100005: Version 2.5.2 (Closed)

Created:
10 years, 1 month ago by Lasse Reichstein
Modified:
9 years, 6 months ago
CC:
v8-dev
Visibility:
Public.

Description

Version 2.5.2 Improved sampler resolution on Linux. Allowed forcing the use of a simulator from the build script independently of the host architecture. Fixed FreeBSD port (Issue 912). Made windows-tick-processor respect D8_PATH. Implemented --noinline-new flag fully on IA32, X64 and ARM platforms. Committed: http://code.google.com/p/v8/source/detail?r=5716

Patch Set 1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+6294 lines, -4270 lines) Patch
M ChangeLog View 1 chunk +14 lines, -0 lines 0 comments Download
M SConstruct View 2 chunks +0 lines, -2 lines 0 comments Download
M include/v8.h View 1 chunk +8 lines, -3 lines 0 comments Download
M src/accessors.h View 1 chunk +32 lines, -28 lines 0 comments Download
M src/accessors.cc View 25 chunks +48 lines, -38 lines 0 comments Download
M src/api.h View 2 chunks +19 lines, -16 lines 0 comments Download
M src/api.cc View 6 chunks +38 lines, -14 lines 0 comments Download
M src/arm/codegen-arm.cc View 6 chunks +30 lines, -25 lines 0 comments Download
M src/arm/cpu-arm.cc View 2 chunks +2 lines, -5 lines 0 comments Download
M src/arm/ic-arm.cc View 1 chunk +5 lines, -2 lines 0 comments Download
M src/arm/macro-assembler-arm.cc View 2 chunks +22 lines, -0 lines 0 comments Download
M src/arm/regexp-macro-assembler-arm.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/arm/simulator-arm.h View 4 chunks +36 lines, -30 lines 0 comments Download
M src/arm/simulator-arm.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M src/arm/stub-cache-arm.cc View 35 chunks +178 lines, -146 lines 0 comments Download
M src/assembler.h View 2 chunks +2 lines, -1 line 0 comments Download
M src/assembler.cc View 2 chunks +8 lines, -2 lines 0 comments Download
M src/bootstrapper.cc View 3 chunks +8 lines, -7 lines 0 comments Download
M src/builtins.cc View 24 chunks +125 lines, -68 lines 0 comments Download
M src/cached-powers.h View 1 chunk +26 lines, -4 lines 0 comments Download
M src/cached-powers.cc View 2 chunks +41 lines, -16 lines 0 comments Download
M src/code-stubs.h View 2 chunks +2 lines, -2 lines 0 comments Download
M src/code-stubs.cc View 3 chunks +9 lines, -5 lines 0 comments Download
M src/compilation-cache.cc View 6 chunks +8 lines, -8 lines 0 comments Download
M src/debug.cc View 4 chunks +7 lines, -5 lines 0 comments Download
M src/double.h View 4 chunks +54 lines, -7 lines 0 comments Download
M src/execution.h View 1 chunk +1 line, -1 line 0 comments Download
M src/execution.cc View 5 chunks +16 lines, -6 lines 0 comments Download
M src/factory.cc View 4 chunks +18 lines, -12 lines 0 comments Download
M src/fast-dtoa.cc View 2 chunks +8 lines, -6 lines 0 comments Download
M src/global-handles.h View 1 chunk +2 lines, -3 lines 0 comments Download
M src/global-handles.cc View 3 chunks +1 line, -4 lines 0 comments Download
M src/globals.h View 4 chunks +17 lines, -2 lines 0 comments Download
M src/handles.h View 5 chunks +19 lines, -26 lines 0 comments Download
M src/handles.cc View 6 chunks +16 lines, -9 lines 0 comments Download
M src/handles-inl.h View 1 chunk +7 lines, -3 lines 0 comments Download
M src/heap.h View 26 chunks +110 lines, -109 lines 0 comments Download
M src/heap.cc View 90 chunks +649 lines, -440 lines 0 comments Download
M src/heap-inl.h View 7 chunks +34 lines, -42 lines 0 comments Download
M src/ia32/assembler-ia32.h View 1 chunk +0 lines, -1 line 0 comments Download
M src/ia32/assembler-ia32.cc View 1 chunk +8 lines, -3 lines 0 comments Download
M src/ia32/code-stubs-ia32.cc View 1 chunk +5 lines, -67 lines 0 comments Download
M src/ia32/macro-assembler-ia32.h View 6 chunks +21 lines, -15 lines 0 comments Download
M src/ia32/macro-assembler-ia32.cc View 8 chunks +153 lines, -61 lines 0 comments Download
M src/ia32/regexp-macro-assembler-ia32.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/ia32/simulator-ia32.h View 2 chunks +13 lines, -8 lines 0 comments Download
M src/ia32/stub-cache-ia32.cc View 40 chunks +211 lines, -183 lines 0 comments Download
M src/ic.h View 6 chunks +20 lines, -12 lines 0 comments Download
M src/ic.cc View 45 chunks +192 lines, -138 lines 0 comments Download
M src/liveedit.h View 1 chunk +4 lines, -3 lines 0 comments Download
M src/liveedit.cc View 9 chunks +24 lines, -19 lines 0 comments Download
M src/log.cc View 2 chunks +10 lines, -3 lines 0 comments Download
M src/mark-compact.h View 1 chunk +2 lines, -1 line 0 comments Download
M src/mark-compact.cc View 6 chunks +28 lines, -20 lines 0 comments Download
M src/messages.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M src/objects.h View 63 chunks +287 lines, -228 lines 0 comments Download
M src/objects.cc View 157 chunks +806 lines, -501 lines 0 comments Download
M src/objects-debug.cc View 1 chunk +19 lines, -13 lines 0 comments Download
M src/objects-inl.h View 13 chunks +68 lines, -35 lines 0 comments Download
M src/parser.cc View 1 chunk +1 line, -3 lines 0 comments Download
M src/platform-freebsd.cc View 1 chunk +4 lines, -1 line 0 comments Download
M src/platform-linux.cc View 6 chunks +51 lines, -42 lines 0 comments Download
M src/platform-macos.cc View 1 chunk +5 lines, -1 line 0 comments Download
M src/profile-generator.cc View 1 chunk +1 line, -3 lines 0 comments Download
M src/property.h View 1 chunk +5 lines, -3 lines 0 comments Download
M src/runtime.h View 3 chunks +25 lines, -20 lines 0 comments Download
M src/runtime.cc View 278 chunks +807 lines, -586 lines 0 comments Download
M src/serialize.cc View 4 chunks +27 lines, -8 lines 0 comments Download
M src/spaces.h View 14 chunks +26 lines, -24 lines 0 comments Download
M src/spaces.cc View 10 chunks +16 lines, -14 lines 0 comments Download
M src/spaces-inl.h View 3 chunks +4 lines, -4 lines 0 comments Download
M src/strtod.cc View 10 chunks +192 lines, -13 lines 0 comments Download
M src/stub-cache.h View 10 chunks +238 lines, -222 lines 0 comments Download
M src/stub-cache.cc View 32 chunks +492 lines, -335 lines 0 comments Download
M src/top.h View 7 chunks +16 lines, -10 lines 0 comments Download
M src/top.cc View 10 chunks +52 lines, -11 lines 0 comments Download
M src/v8.cc View 1 chunk +5 lines, -1 line 0 comments Download
M src/version.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/x64/assembler-x64.cc View 1 chunk +5 lines, -3 lines 0 comments Download
M src/x64/code-stubs-x64.cc View 2 chunks +2 lines, -34 lines 0 comments Download
M src/x64/macro-assembler-x64.h View 4 chunks +15 lines, -14 lines 0 comments Download
M src/x64/macro-assembler-x64.cc View 8 chunks +128 lines, -71 lines 0 comments Download
M src/x64/regexp-macro-assembler-x64.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/x64/simulator-x64.h View 2 chunks +14 lines, -9 lines 0 comments Download
M src/x64/stub-cache-x64.cc View 39 chunks +184 lines, -159 lines 0 comments Download
M test/cctest/test-alloc.cc View 3 chunks +4 lines, -3 lines 0 comments Download
M test/cctest/test-api.cc View 9 chunks +48 lines, -32 lines 0 comments Download
M test/cctest/test-assembler-arm.cc View 7 chunks +28 lines, -21 lines 0 comments Download
M test/cctest/test-assembler-ia32.cc View 9 chunks +33 lines, -29 lines 0 comments Download
M test/cctest/test-compiler.cc View 8 chunks +11 lines, -11 lines 0 comments Download
M test/cctest/test-disasm-ia32.cc View 1 chunk +4 lines, -3 lines 0 comments Download
M test/cctest/test-heap.cc View 24 chunks +84 lines, -75 lines 0 comments Download
M test/cctest/test-log.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M test/cctest/test-log-stack-tracer.cc View 3 chunks +6 lines, -30 lines 0 comments Download
M test/cctest/test-mark-compact.cc View 6 chunks +56 lines, -39 lines 0 comments Download
M test/cctest/test-serialize.cc View 5 chunks +9 lines, -5 lines 0 comments Download
M test/cctest/test-spaces.cc View 4 chunks +8 lines, -10 lines 0 comments Download
M test/cctest/test-strings.cc View 1 chunk +1 line, -1 line 0 comments Download
M test/cctest/test-strtod.cc View 1 chunk +48 lines, -0 lines 0 comments Download
A test/mjsunit/bugs/bug-617.js View 1 chunk +44 lines, -0 lines 0 comments Download
A test/mjsunit/define-property-gc.js View 1 chunk +45 lines, -0 lines 0 comments Download
M test/mjsunit/math-min-max.js View 1 chunk +4 lines, -1 line 0 comments Download
M test/mjsunit/string-case.js View 1 chunk +43 lines, -0 lines 0 comments Download
tools/windows-tick-processor.bat View 2 chunks +2 lines, -1 line 0 comments Download

Messages

Total messages: 1 (0 generated)
Lasse Reichstein
10 years, 1 month ago (2010-10-27 08:20:03 UTC) #1

          

Powered by Google App Engine
This is Rietveld 408576698