Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(6222)

Issue 10126044: code review 10126044: runtime: more flexible heap memory mapping on 64-bits (Closed)

Can't Edit
Can't Publish+Mail
Start Review
Created:
10 years, 10 months ago by dvyukov
Modified:
10 years, 10 months ago
Reviewers:
iant
CC:
golang-dev, dave_cheney.net, DMorsing, iant, kcc1
Visibility:
Public.

Description

runtime: more flexible heap memory mapping on 64-bits Fixes issue 5641.

Patch Set 1 #

Patch Set 2 : diff -r 3bd0f5144c86 https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 3 : diff -r 3bd0f5144c86 https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 4 : diff -r 3bd0f5144c86 https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 5 : diff -r 3bd0f5144c86 https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 6 : diff -r 3bd0f5144c86 https://dvyukov%40google.com@code.google.com/p/go/ #

Total comments: 11

Patch Set 7 : diff -r 9b1143bb425e https://dvyukov%40google.com@code.google.com/p/go/ #

Total comments: 10

Patch Set 8 : diff -r 9b1143bb425e https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 9 : diff -r c855ffd64015 https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 10 : diff -r 8ae475f7599b https://dvyukov%40google.com@code.google.com/p/go/ #

Unified diffs Side-by-side diffs Delta from patch set Stats (+68 lines, -5 lines) Patch
A misc/cgo/testasan/main.go View 1 2 3 4 5 6 7 1 chunk +49 lines, -0 lines 0 comments Download
M src/pkg/runtime/malloc.goc View 1 2 3 4 5 6 7 8 3 chunks +13 lines, -5 lines 0 comments Download
M src/run.bash View 1 2 3 1 chunk +6 lines, -0 lines 0 comments Download

Messages

Total messages: 12
dvyukov
Hello golang-dev@googlegroups.com, I'd like you to review this change to https://dvyukov%40google.com@code.google.com/p/go/
10 years, 10 months ago (2013-06-10 08:49:29 UTC) #1
dvyukov
Hello golang-dev@googlegroups.com (cc: golang-dev@googlegroups.com, kcc@google.com), Please take another look.
10 years, 10 months ago (2013-06-10 08:50:30 UTC) #2
dave_cheney.net
s/mere/more/ in the title. On 10/06/2013, at 18:49, dvyukov@google.com wrote: > Reviewers: golang-dev1, > > ...
10 years, 10 months ago (2013-06-10 09:20:43 UTC) #3
dvyukov
On 2013/06/10 09:20:43, dfc wrote: > s/mere/more/ in the title. Done
10 years, 10 months ago (2013-06-10 09:22:49 UTC) #4
DMorsing
https://codereview.appspot.com/10126044/diff/15001/src/pkg/runtime/malloc.goc File src/pkg/runtime/malloc.goc (right): https://codereview.appspot.com/10126044/diff/15001/src/pkg/runtime/malloc.goc#newcode306 src/pkg/runtime/malloc.goc:306: int32 i; Use int64 here to avoid a cast. ...
10 years, 10 months ago (2013-06-10 09:36:22 UTC) #5
dave_cheney.net
https://codereview.appspot.com/10126044/diff/15001/src/run.bash File src/run.bash (right): https://codereview.appspot.com/10126044/diff/15001/src/run.bash#newcode112 src/run.bash:112: [ "$GOHOSTOS-$GOARCH" != linux-amd64 ] || not testing windows/amd64 ...
10 years, 10 months ago (2013-06-10 12:28:39 UTC) #6
dvyukov
On 2013/06/10 12:28:39, dfc wrote: > https://codereview.appspot.com/10126044/diff/15001/src/run.bash > File src/run.bash (right): > > https://codereview.appspot.com/10126044/diff/15001/src/run.bash#newcode112 > ...
10 years, 10 months ago (2013-06-10 13:32:03 UTC) #7
dvyukov
https://codereview.appspot.com/10126044/diff/15001/src/pkg/runtime/malloc.goc File src/pkg/runtime/malloc.goc (right): https://codereview.appspot.com/10126044/diff/15001/src/pkg/runtime/malloc.goc#newcode306 src/pkg/runtime/malloc.goc:306: int32 i; On 2013/06/10 09:36:22, DMorsing wrote: > Use ...
10 years, 10 months ago (2013-06-10 13:32:09 UTC) #8
iant
https://codereview.appspot.com/10126044/diff/20001/misc/cgo/testasan/main.go File misc/cgo/testasan/main.go (right): https://codereview.appspot.com/10126044/diff/20001/misc/cgo/testasan/main.go#newcode25 misc/cgo/testasan/main.go:25: void* thread(void *p) The declaration above is static, so ...
10 years, 10 months ago (2013-06-10 17:00:00 UTC) #9
dvyukov
PTAL https://codereview.appspot.com/10126044/diff/20001/misc/cgo/testasan/main.go File misc/cgo/testasan/main.go (right): https://codereview.appspot.com/10126044/diff/20001/misc/cgo/testasan/main.go#newcode25 misc/cgo/testasan/main.go:25: void* thread(void *p) On 2013/06/10 17:00:00, iant wrote: ...
10 years, 10 months ago (2013-06-10 18:29:58 UTC) #10
iant
LGTM
10 years, 10 months ago (2013-06-10 21:17:39 UTC) #11
dvyukov
10 years, 10 months ago (2013-06-12 14:47:29 UTC) #12
*** Submitted as https://code.google.com/p/go/source/detail?r=7544727c9c28 ***

runtime: more flexible heap memory mapping on 64-bits
Fixes issue 5641.

R=golang-dev, dave, daniel.morsing, iant
CC=golang-dev, kcc
https://codereview.appspot.com/10126044
Sign in to reply to this message.

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b