Skip to content

Commit 6841f38

Browse files
committed
Fix ivec self-append. Closes #816
1 parent 0f1f5e6 commit 6841f38

File tree

2 files changed

+45
-6
lines changed

2 files changed

+45
-6
lines changed

src/comp/middle/trans_ivec.rs

+6
Original file line numberDiff line numberDiff line change
@@ -384,6 +384,12 @@ fn trans_append(cx: &@block_ctxt, t: ty::t, orig_lhs: ValueRef,
384384
rs = reserve_space(bcx, llunitty, lhs, rhs_len);
385385
let lhs_data = rs.val;
386386
bcx = rs.bcx;
387+
388+
// If rhs is lhs then our rhs pointer may have changed
389+
rhs_len_and_data = get_len_and_data(bcx, rhs, unit_ty);
390+
rhs_data = rhs_len_and_data.data;
391+
bcx = rhs_len_and_data.bcx;
392+
387393
// Work out the end pointer.
388394

389395
let lhs_unscaled_idx = bcx.build.UDiv(rhs_len, llsize_of(llunitty));

src/test/run-pass/vec-self-append.rs

+39-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,40 @@
1-
// xfail-stage1
2-
// xfail-stage2
3-
// xfail-stage3
4-
51
use std;
62
import std::vec;
73

8-
fn main() {
4+
fn test_heap_to_heap() {
5+
// a spills onto the heap
6+
let a = [0, 1, 2, 3, 4];
7+
a += a;
8+
assert vec::len(a) == 10u;
9+
assert a[0] == 0;
10+
assert a[1] == 1;
11+
assert a[2] == 2;
12+
assert a[3] == 3;
13+
assert a[4] == 4;
14+
assert a[5] == 0;
15+
assert a[6] == 1;
16+
assert a[7] == 2;
17+
assert a[8] == 3;
18+
assert a[9] == 4;
19+
}
20+
21+
fn test_stack_to_heap() {
22+
// a is entirely on the stack
23+
let a = [0, 1, 2];
24+
// a spills to the heap
25+
a += a;
26+
assert vec::len(a) == 6u;
27+
assert a[0] == 0;
28+
assert a[1] == 1;
29+
assert a[2] == 2;
30+
assert a[3] == 0;
31+
assert a[4] == 1;
32+
assert a[5] == 2;
33+
}
34+
35+
fn test_loop() {
936
// Make sure we properly handle repeated self-appends.
10-
let a: [int] = ~[0];
37+
let a: [int] = [0];
1138
let i = 20;
1239
let expected_len = 1u;
1340
while i > 0 {
@@ -18,3 +45,9 @@ fn main() {
1845
expected_len *= 2u;
1946
}
2047
}
48+
49+
fn main() {
50+
test_heap_to_heap();
51+
test_stack_to_heap();
52+
test_loop();
53+
}

0 commit comments

Comments
 (0)