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

Issue 6709022: Re-establish mips basic infrastructure. (Closed)

Created:
9 years, 9 months ago by Paul Lind
Modified:
9 years, 7 months ago
CC:
v8-dev
Base URL:
git://github.com/v8/v8.git@master
Visibility:
Public.

Description

Re-establish mips basic infrastructure. This commit adds current working versions of assembler, macro-assembler, disassembler, and simulator. All other mips arch files are replaced with stubbed-out versions that will build. Committed: http://code.google.com/p/v8/source/detail?r=7388 Arch independent files are updated as needed to support building and running mips. The only test is cctest/test-assembler-mips, and this passes on the simulator and on mips hardware. BUG= TEST=

Patch Set 1 #

Total comments: 26

Patch Set 2 : Updated per comments, and rebased on r7312. #

Total comments: 96

Patch Set 3 : Updates for 2nd round of comments, but not rebased yet. #

Patch Set 4 : Fixed bogus comment left in patchset 3, still not rebased. #

Patch Set 5 : Rebased on bleeding_edge r7374 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+12949 lines, -3423 lines) Patch
M SConstruct View 1 6 chunks +69 lines, -10 lines 0 comments Download
M src/SConscript View 1 1 chunk +6 lines, -1 line 0 comments Download
M src/assembler.cc View 1 2 3 4 2 chunks +4 lines, -0 lines 0 comments Download
M src/atomicops.h View 1 chunk +2 lines, -0 lines 0 comments Download
A src/atomicops_internals_mips_gcc.h View 1 chunk +169 lines, -0 lines 0 comments Download
M src/code-stubs.h View 1 chunk +10 lines, -1 line 0 comments Download
M src/flag-definitions.h View 1 2 chunks +7 lines, -1 line 0 comments Download
M src/globals.h View 2 chunks +2 lines, -2 lines 0 comments Download
M src/heap.cc View 1 2 3 4 1 chunk +4 lines, -0 lines 0 comments Download
M src/hydrogen.cc View 1 2 3 4 1 chunk +2 lines, -0 lines 0 comments Download
M src/hydrogen-instructions.cc View 1 2 3 4 1 chunk +2 lines, -0 lines 0 comments Download
M src/isolate.h View 1 9 chunks +16 lines, -11 lines 0 comments Download
M src/isolate.cc View 1 2 chunks +3 lines, -4 lines 0 comments Download
M src/jsregexp.cc View 1 2 3 4 2 chunks +4 lines, -0 lines 0 comments Download
M src/lithium-allocator.cc View 1 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/mips/assembler-mips.h View 1 2 25 chunks +552 lines, -153 lines 0 comments Download
M src/mips/assembler-mips.cc View 1 2 43 chunks +1093 lines, -220 lines 0 comments Download
M src/mips/assembler-mips-inl.h View 1 2 9 chunks +155 lines, -35 lines 0 comments Download
M src/mips/builtins-mips.cc View 3 chunks +43 lines, -100 lines 0 comments Download
A src/mips/code-stubs-mips.h View 1 chunk +511 lines, -0 lines 0 comments Download
A src/mips/code-stubs-mips.cc View 1 chunk +752 lines, -0 lines 0 comments Download
M src/mips/codegen-mips.h View 1 14 chunks +271 lines, -69 lines 0 comments Download
M src/mips/codegen-mips.cc View 1 14 chunks +672 lines, -898 lines 0 comments Download
M src/mips/codegen-mips-inl.h View 2 chunks +8 lines, -14 lines 0 comments Download
M src/mips/constants-mips.h View 1 2 21 chunks +238 lines, -40 lines 0 comments Download
M src/mips/constants-mips.cc View 10 chunks +44 lines, -20 lines 0 comments Download
M src/mips/cpu-mips.cc View 1 3 chunks +20 lines, -3 lines 0 comments Download
M src/mips/debug-mips.cc View 3 chunks +35 lines, -7 lines 0 comments Download
A + src/mips/deoptimizer-mips.cc View 2 chunks +38 lines, -24 lines 0 comments Download
M src/mips/disasm-mips.cc View 1 2 25 chunks +327 lines, -90 lines 0 comments Download
M src/mips/frames-mips.h View 1 2 6 chunks +23 lines, -8 lines 0 comments Download
M src/mips/frames-mips.cc View 2 chunks +2 lines, -50 lines 0 comments Download
M src/mips/full-codegen-mips.cc View 11 chunks +473 lines, -23 lines 0 comments Download
M src/mips/ic-mips.cc View 8 chunks +81 lines, -45 lines 0 comments Download
M src/mips/jump-target-mips.cc View 2 chunks +11 lines, -106 lines 0 comments Download
A + src/mips/lithium-codegen-mips.h View 1 chunk +26 lines, -38 lines 0 comments Download
A src/mips/lithium-mips.h View 1 chunk +304 lines, -0 lines 0 comments Download
M src/mips/macro-assembler-mips.h View 1 2 3 15 chunks +718 lines, -121 lines 0 comments Download
M src/mips/macro-assembler-mips.cc View 1 2 3 4 28 chunks +2391 lines, -390 lines 0 comments Download
A src/mips/regexp-macro-assembler-mips.h View 1 1 chunk +250 lines, -0 lines 0 comments Download
A src/mips/regexp-macro-assembler-mips.cc View 1 chunk +478 lines, -0 lines 0 comments Download
M src/mips/register-allocator-mips.h View 1 chunk +3 lines, -2 lines 0 comments Download
M src/mips/register-allocator-mips-inl.h View 1 chunk +0 lines, -3 lines 0 comments Download
M src/mips/simulator-mips.h View 1 12 chunks +119 lines, -36 lines 0 comments Download
M src/mips/simulator-mips.cc View 1 2 68 chunks +1009 lines, -221 lines 0 comments Download
M src/mips/stub-cache-mips.cc View 6 chunks +331 lines, -148 lines 0 comments Download
M src/mips/virtual-frame-mips.h View 1 10 chunks +294 lines, -312 lines 0 comments Download
M src/mips/virtual-frame-mips.cc View 1 3 chunks +137 lines, -149 lines 0 comments Download
A + src/mips/virtual-frame-mips-inl.h View 1 chunk +23 lines, -17 lines 0 comments Download
M src/objects-inl.h View 1 2 3 4 1 chunk +38 lines, -4 lines 0 comments Download
M src/platform.h View 1 1 chunk +3 lines, -0 lines 0 comments Download
M src/platform-linux.cc View 1 4 chunks +62 lines, -4 lines 0 comments Download
M src/regexp-macro-assembler.h View 1 1 chunk +1 line, -0 lines 0 comments Download
M src/v8globals.h View 1 2 3 4 1 chunk +2 lines, -1 line 0 comments Download
M test/cctest/SConscript View 1 chunk +1 line, -1 line 0 comments Download
M test/cctest/cctest.status View 1 1 chunk +3 lines, -0 lines 0 comments Download
M test/cctest/test-assembler-mips.cc View 1 2 7 chunks +1098 lines, -40 lines 0 comments Download
M test/cctest/test-regexp.cc View 1 2 chunks +5 lines, -1 line 0 comments Download

Messages

Total messages: 7 (0 generated)
Paul Lind
9 years, 9 months ago (2011-03-18 07:03:18 UTC) #1
Søren Thygesen Gjesse
First round of comments, mainly for the platform independent files. As you have probably seen ...
9 years, 9 months ago (2011-03-21 16:05:19 UTC) #2
Paul Lind
Thanks for the code review! I have addressed the comments, and rebased the code on ...
9 years, 9 months ago (2011-03-23 01:55:43 UTC) #3
Søren Thygesen Gjesse
Next round of comments. I still have to review macro-assembler-mips and simulator-mips. http://codereview.chromium.org/6709022/diff/5001/src/mips/assembler-mips-inl.h File src/mips/assembler-mips-inl.h ...
9 years, 9 months ago (2011-03-23 23:38:42 UTC) #4
Søren Thygesen Gjesse
Done with all files. When the comments has been addressed this should be committable. Regarding ...
9 years, 9 months ago (2011-03-24 22:11:19 UTC) #5
Paul Lind
Responded to all comments. Thanks for the review. The new patchset is uploaded, but I ...
9 years, 9 months ago (2011-03-26 18:39:17 UTC) #6
Søren Thygesen Gjesse
9 years, 9 months ago (2011-03-28 13:06:28 UTC) #7
LGTM!

I am fine with the postponing some changes to a separate change.

Committed: http://code.google.com/p/v8/source/detail?r=7388

Powered by Google App Engine
This is Rietveld 408576698