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

Issue 293743005: Introduce x87 port (Closed)

Created:
6 years, 7 months ago by Weiliang
Modified:
6 years, 7 months ago
Reviewers:
Sven Panne, danno
CC:
v8-dev
Base URL:
git://github.com/v8/v8.git@master
Visibility:
Public.

Description

Introduce x87 port Support x87-only platform (ia32 without SSE) R=danno@chromium.org Committed: https://code.google.com/p/v8/source/detail?r=21469

Patch Set 1 #

Total comments: 12

Patch Set 2 : avoid introducing platform-specific into the share code #

Patch Set 3 : remove OWNERS #

Patch Set 4 : rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1800 lines, -3110 lines) Patch
M AUTHORS View 3 chunks +3 lines, -0 lines 0 comments Download
M Makefile View 1 chunk +2 lines, -2 lines 0 comments Download
M Makefile.android View 2 chunks +9 lines, -2 lines 0 comments Download
M build/android.gypi View 2 chunks +2 lines, -2 lines 0 comments Download
M build/standalone.gypi View 1 chunk +1 line, -1 line 0 comments Download
M build/toolchain.gypi View 2 chunks +8 lines, -1 line 0 comments Download
M src/assembler.cc View 1 2 3 3 chunks +6 lines, -0 lines 0 comments Download
M src/code-stubs.h View 1 2 3 1 chunk +2 lines, -0 lines 0 comments Download
M src/codegen.h View 1 chunk +2 lines, -0 lines 0 comments Download
M src/frames.cc View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M src/frames-inl.h View 1 chunk +2 lines, -0 lines 0 comments Download
M src/full-codegen.h View 1 chunk +1 line, -1 line 0 comments Download
M src/gdb-jit.cc View 8 chunks +8 lines, -8 lines 0 comments Download
M src/globals.h View 2 chunks +3 lines, -1 line 0 comments Download
M src/hydrogen.cc View 1 2 3 1 chunk +2 lines, -0 lines 0 comments Download
M src/hydrogen-instructions.cc View 1 2 3 1 chunk +2 lines, -0 lines 0 comments Download
M src/jsregexp.cc View 2 chunks +5 lines, -0 lines 0 comments Download
M src/lithium.cc View 1 2 3 1 chunk +3 lines, -0 lines 0 comments Download
M src/lithium-allocator.cc View 1 chunk +2 lines, -0 lines 0 comments Download
M src/lithium-allocator-inl.h View 1 chunk +2 lines, -0 lines 0 comments Download
M src/lithium-codegen.cc View 1 chunk +3 lines, -0 lines 0 comments Download
M src/log.cc View 1 2 3 3 chunks +5 lines, -0 lines 0 comments Download
M src/macro-assembler.h View 1 chunk +6 lines, -0 lines 0 comments Download
M src/platform.h View 3 chunks +3 lines, -3 lines 0 comments Download
M src/platform-posix.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M src/platform-win32.cc View 3 chunks +3 lines, -3 lines 0 comments Download
M src/regexp-macro-assembler.h View 1 chunk +1 line, -0 lines 0 comments Download
M src/regexp-macro-assembler-tracer.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/simulator.h View 1 chunk +2 lines, -0 lines 0 comments Download
M src/strtod.cc View 1 chunk +2 lines, -1 line 0 comments Download
A + src/x87/assembler-x87.h View 1 2 3 8 chunks +28 lines, -165 lines 0 comments Download
A + src/x87/assembler-x87.cc View 1 2 3 7 chunks +11 lines, -616 lines 0 comments Download
A + src/x87/assembler-x87-inl.h View 1 2 3 6 chunks +7 lines, -12 lines 0 comments Download
A + src/x87/builtins-x87.cc View 1 2 3 5 chunks +7 lines, -7 lines 0 comments Download
A + src/x87/code-stubs-x87.h View 7 chunks +10 lines, -36 lines 0 comments Download
A + src/x87/code-stubs-x87.cc View 1 2 3 28 chunks +70 lines, -430 lines 0 comments Download
A + src/x87/codegen-x87.h View 2 chunks +3 lines, -17 lines 0 comments Download
A + src/x87/codegen-x87.cc View 18 chunks +57 lines, -444 lines 0 comments Download
A + src/x87/cpu-x87.cc View 2 chunks +2 lines, -2 lines 0 comments Download
A + src/x87/debug-x87.cc View 1 2 3 11 chunks +11 lines, -11 lines 0 comments Download
A + src/x87/deoptimizer-x87.cc View 7 chunks +7 lines, -36 lines 0 comments Download
A + src/x87/disasm-x87.cc View 22 chunks +31 lines, -31 lines 0 comments Download
A + src/x87/frames-x87.h View 1 2 3 2 chunks +3 lines, -3 lines 0 comments Download
A + src/x87/frames-x87.cc View 2 chunks +4 lines, -4 lines 0 comments Download
A + src/x87/full-codegen-x87.cc View 15 chunks +15 lines, -22 lines 0 comments Download
A + src/x87/ic-x87.cc View 7 chunks +8 lines, -8 lines 0 comments Download
A + src/x87/lithium-codegen-x87.h View 1 2 3 15 chunks +103 lines, -20 lines 0 comments Download
A + src/x87/lithium-codegen-x87.cc View 1 2 3 79 chunks +611 lines, -581 lines 0 comments Download
A + src/x87/lithium-gap-resolver-x87.h View 2 chunks +3 lines, -3 lines 0 comments Download
A + src/x87/lithium-gap-resolver-x87.cc View 5 chunks +31 lines, -68 lines 0 comments Download
A + src/x87/lithium-x87.h View 1 2 3 16 chunks +52 lines, -40 lines 0 comments Download
A + src/x87/lithium-x87.cc View 1 2 3 15 chunks +47 lines, -68 lines 0 comments Download
A + src/x87/macro-assembler-x87.h View 18 chunks +21 lines, -46 lines 0 comments Download
A + src/x87/macro-assembler-x87.cc View 28 chunks +114 lines, -229 lines 0 comments Download
A + src/x87/regexp-macro-assembler-x87.h View 2 chunks +8 lines, -8 lines 0 comments Download
A + src/x87/regexp-macro-assembler-x87.cc View 40 chunks +62 lines, -62 lines 0 comments Download
A + src/x87/simulator-x87.h View 1 2 3 2 chunks +3 lines, -3 lines 0 comments Download
A + src/x87/simulator-x87.cc View 0 chunks +-1 lines, --1 lines 0 comments Download
A + src/x87/stub-cache-x87.cc View 9 chunks +12 lines, -13 lines 0 comments Download
M test/cctest/cctest.gyp View 1 2 3 1 chunk +11 lines, -0 lines 0 comments Download
A test/cctest/test-assembler-x87.cc View 1 chunk +310 lines, -0 lines 0 comments Download
M test/cctest/test-code-stubs.h View 1 chunk +1 line, -1 line 0 comments Download
A + test/cctest/test-code-stubs-x87.cc View 0 chunks +-1 lines, --1 lines 0 comments Download
A + test/cctest/test-cpu-x87.cc View 0 chunks +-1 lines, --1 lines 0 comments Download
A + test/cctest/test-disasm-x87.cc View 1 2 3 1 chunk +0 lines, -79 lines 0 comments Download
M test/cctest/test-hashing.cc View 2 chunks +2 lines, -2 lines 0 comments Download
A + test/cctest/test-macro-assembler-x87.cc View 1 chunk +1 line, -14 lines 0 comments Download
M test/cctest/test-regexp.cc View 2 chunks +7 lines, -0 lines 0 comments Download
M test/mjsunit/mjsunit.status View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M tools/gyp/v8.gyp View 1 2 3 1 chunk +31 lines, -0 lines 0 comments Download
M tools/run-tests.py View 2 chunks +2 lines, -0 lines 0 comments Download
M tools/testrunner/local/statusfile.py View 1 chunk +2 lines, -2 lines 0 comments Download

Messages

Total messages: 12 (0 generated)
Weiliang
Hi Danno, Please have a look, this is the commit for X87 port. https://codereview.chromium.org/293743005/diff/1/src/code-stubs-hydrogen.cc File ...
6 years, 7 months ago (2014-05-20 05:44:01 UTC) #1
Sven Panne
I've got one real concern (in code-stubs-hydrogen.cc), the rest is not really related to this ...
6 years, 7 months ago (2014-05-20 06:21:20 UTC) #2
danno
I don't see the platform #ifdef/#include proliferation as a problem for landing this, but I ...
6 years, 7 months ago (2014-05-20 08:18:54 UTC) #3
Weiliang
https://codereview.chromium.org/293743005/diff/1/src/code-stubs-hydrogen.cc File src/code-stubs-hydrogen.cc (right): https://codereview.chromium.org/293743005/diff/1/src/code-stubs-hydrogen.cc#newcode336 src/code-stubs-hydrogen.cc:336: #if !defined(V8_TARGET_ARCH_X87) Yes, Thanks a lot for both of ...
6 years, 7 months ago (2014-05-20 08:41:06 UTC) #4
Sven Panne
On 2014/05/20 08:18:54, danno wrote: > I don't see the platform #ifdef/#include proliferation as a ...
6 years, 7 months ago (2014-05-20 08:58:28 UTC) #5
danno
https://codereview.chromium.org/293743005/diff/1/src/code-stubs-hydrogen.cc File src/code-stubs-hydrogen.cc (right): https://codereview.chromium.org/293743005/diff/1/src/code-stubs-hydrogen.cc#newcode336 src/code-stubs-hydrogen.cc:336: #if !defined(V8_TARGET_ARCH_X87) On 2014/05/20 08:41:06, Weiliang wrote: > Yes, ...
6 years, 7 months ago (2014-05-20 12:23:28 UTC) #6
Weiliang
On 2014/05/20 12:23:28, danno wrote: > https://codereview.chromium.org/293743005/diff/1/src/code-stubs-hydrogen.cc > File src/code-stubs-hydrogen.cc (right): > > https://codereview.chromium.org/293743005/diff/1/src/code-stubs-hydrogen.cc#newcode336 > ...
6 years, 7 months ago (2014-05-20 13:09:46 UTC) #7
Weiliang
On 2014/05/20 13:09:46, Weiliang wrote: > On 2014/05/20 12:23:28, danno wrote: > > https://codereview.chromium.org/293743005/diff/1/src/code-stubs-hydrogen.cc > ...
6 years, 7 months ago (2014-05-21 04:13:26 UTC) #8
danno
This patch as uploaded doesn't apply to bleeding_edge. Could you please rebase?
6 years, 7 months ago (2014-05-23 10:04:22 UTC) #9
Weiliang
On 2014/05/23 10:04:22, danno wrote: > This patch as uploaded doesn't apply to bleeding_edge. Could ...
6 years, 7 months ago (2014-05-23 15:53:48 UTC) #10
danno
LGTM, I'll land this for you.
6 years, 7 months ago (2014-05-23 16:32:27 UTC) #11
danno
6 years, 7 months ago (2014-05-23 16:38:08 UTC) #12
Message was sent while issue was closed.
Committed patchset #4 manually as r21469 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698