Patrick Walton
4018d77f22
libsyntax: Remove an @str
in pretty printing
2014-02-02 01:44:49 +11:00
Patrick Walton
e5dc347ccf
libsyntax: Remove the interner_get
function and all uses
2014-02-02 01:44:49 +11:00
Patrick Walton
a695b62118
librustc: Remove uses of interner_get
in librustc
2014-02-02 01:44:49 +11:00
Patrick Walton
0d0a3dad68
libsyntax: Remove uses of token::ident_to_str()
2014-02-02 01:44:49 +11:00
Patrick Walton
875c9ce30b
libsyntax: Remove many uses of token::ident_to_str
2014-02-02 01:44:49 +11:00
Patrick Walton
e534b565e6
librustc: Remove uses of token::ident_to_str()
from librustc
2014-02-02 01:44:49 +11:00
Patrick Walton
344040d470
librustc: Get rid of ident_to_str
calls in resolve
2014-02-02 01:44:49 +11:00
Patrick Walton
64a3a4169c
librustc: Get rid of calls to token::ident_to_str
in debug info
2014-02-02 01:44:49 +11:00
Patrick Walton
21f86855dd
librustc: De-@str
ident()
and str_of()
2014-02-02 01:44:49 +11:00
Patrick Walton
19d4ea1cba
librustc: De-@str
the LLVM symbol list
2014-02-02 01:44:49 +11:00
Patrick Walton
0f3a4e13f9
librustc: De-@str
type short names
2014-02-02 01:44:49 +11:00
Patrick Walton
e9ce855beb
librustc: De-@str
liveness
2014-02-02 01:44:49 +11:00
Patrick Walton
b265dd4156
librustc: De-@str
symbol hashing
2014-02-02 01:44:49 +11:00
Patrick Walton
1e0c07d011
librustc: De-@str
debuginfo
2014-02-02 01:44:49 +11:00
Patrick Walton
daf5e6f6f4
librustc: De-@str
resolve
2014-02-02 01:44:49 +11:00
Patrick Walton
9869374256
librustc: Remove a bunch of @str
from the compiler around metadata
...
handling
2014-02-02 01:44:48 +11:00
Patrick Walton
b890237e79
libsyntax: Fix tests.
2014-02-02 01:44:48 +11:00
Patrick Walton
52eeed2f73
libsyntax: De-@str
MacroDef
2014-02-02 01:44:48 +11:00
Patrick Walton
c5cbfe89f8
librustc: De-@str
NameAndSpan
2014-02-02 01:44:48 +11:00
Patrick Walton
a4dd3fe2f2
librustc: Fix merge fallout.
2014-02-02 01:44:48 +11:00
Patrick Walton
3c9e9d35ac
libsyntax: Remove ident_to_str
from the parser, which was returning
...
`@str` values
2014-02-02 01:44:48 +11:00
Patrick Walton
cbf9f5f5df
libsyntax: De-@str
get_single_str_from_tts
2014-02-02 01:44:48 +11:00
Patrick Walton
f9af11d6cc
libsyntax: Remove all @str
from the AST
2014-02-02 01:44:48 +11:00
Patrick Walton
b496d7bec2
libsyntax: Make float literals not use @str
2014-02-02 01:44:48 +11:00
Patrick Walton
8d6ef2e1b1
libsyntax: De-@str
pathnames
2014-02-02 01:44:48 +11:00
Patrick Walton
e68108b3e8
librustc: Stop using @str
for source.
2014-02-02 01:44:48 +11:00
Patrick Walton
f152be7a42
libsyntax: Remove the unnecessary src
field from the lexer
2014-02-02 01:44:48 +11:00
Patrick Walton
0327d8a073
librustc: Fix merge fallout.
2014-02-02 01:44:48 +11:00
Patrick Walton
a0646ae3a4
libsyntax: De-@str
to_source
2014-02-02 01:44:48 +11:00
Patrick Walton
8e52b85d5a
libsyntax: De-@str
literal strings in the AST
2014-02-02 01:44:48 +11:00
Patrick Walton
70c5a0fbf7
libsyntax: Introduce an InternedString
type to reduce @str
in the
...
compiler and use it for attributes
2014-02-02 01:44:47 +11:00
Björn Steinbrink
5afc63a2ae
Optimize u64_to_{le,be}_bytes
...
LLVM fails to properly optimize the shifts used to convert the source
value to the right endianess. The resulting assembly copies the value
to the stack one byte at a time even when there's no conversion required
(e.g. u64_to_le_bytes on a little endian machine).
Instead of doing the conversion ourselves using shifts, we can use the
existing intrinsics to perform the endianess conversion and then
transmute the value to get a fixed vector of its bytes.
Before:
test be_i8 ... bench: 21442 ns/iter (+/- 70)
test be_i16 ... bench: 21447 ns/iter (+/- 45)
test be_i32 ... bench: 23832 ns/iter (+/- 63)
test be_i64 ... bench: 26887 ns/iter (+/- 267)
test le_i8 ... bench: 21442 ns/iter (+/- 56)
test le_i16 ... bench: 21448 ns/iter (+/- 36)
test le_i32 ... bench: 23825 ns/iter (+/- 153)
test le_i64 ... bench: 26271 ns/iter (+/- 138)
After:
test be_i8 ... bench: 21438 ns/iter (+/- 10)
test be_i16 ... bench: 21441 ns/iter (+/- 15)
test be_i32 ... bench: 19057 ns/iter (+/- 6)
test be_i64 ... bench: 21439 ns/iter (+/- 34)
test le_i8 ... bench: 21438 ns/iter (+/- 19)
test le_i16 ... bench: 21439 ns/iter (+/- 8)
test le_i32 ... bench: 21439 ns/iter (+/- 19)
test le_i64 ... bench: 21438 ns/iter (+/- 22)
2014-02-01 15:17:22 +01:00
bors
362cbbe01c
auto merge of #11932 : dmanescu/rust/11741-stability-cross-crate, r=alexcrichton
...
Fixes #11741
Added tests and removed xfail-fast from run-pass/simd-experimental which is now fixed (see #11738 ).
2014-02-01 05:31:24 -08:00
bors
1d494198bb
auto merge of #11930 : bjz/rust/next_power_of_two, r=huonw
2014-02-01 04:11:21 -08:00
bors
c80d28c8e3
auto merge of #11963 : alexcrichton/rust/fix-rustpkg, r=brson
...
Right now the bots are all injecting a libstd version, so all the rustpkg tests
are passing. All rustpkg compilations will fail unless the version number is
explicitly given because rustpkg attempts to exactly guess the target file name.
Switch back to using a pattern match in order to unbreak tests.
Closes #11852
2014-02-01 00:46:23 -08:00
bors
ac000cd8e1
auto merge of #11789 : pongad/rust/master, r=kballard
...
All tests passing. #5268
2014-01-31 23:31:28 -08:00
bors
5c5d995126
auto merge of #11965 : alexcrichton/rust/issue-7385, r=alexcrichton
...
I've verified that it works on osx x86_64
Closes #7385
Rolled up PRs:
Closes #11898
Closes #11934
Closes #11942
Closes #11952
Closes #11960
Closes #11966
Closes #11953
Closed issues:
Closes #4063
Closes #7911
2014-01-31 22:21:38 -08:00
Alex Crichton
a67a3b7749
Fixing tests
2014-01-31 22:11:18 -08:00
Alex Crichton
b59895847e
Remove the need to count lang items
...
This solves horrible diffs where all you do is renumber literally everything.
2014-01-31 21:43:12 -08:00
Kevin Ballard
cad4fcd21b
Test for null buffer in CString.len()/.iter() and fail
...
Also change .as_str() to fail on null buffer.
2014-01-31 21:43:09 -08:00
Huon Wilson
a9f73b5e3d
Remove the obsolete handler for impl A;
.
...
This is has been obsolete for quite a while now (including a release),
so removing the special handling seems fine. (The error message is quite
good still anyway.)
Fixes #9580 .
2014-01-31 21:43:09 -08:00
Huon Wilson
6c52e72214
Add test for sensible #[start] error message.
...
Fixes #9575 .
2014-01-31 21:43:09 -08:00
OGINO Masanori
ed5b897899
Add test cases for #4063 .
...
Signed-off-by: OGINO Masanori <masanori.ogino@gmail.com>
2014-01-31 21:43:09 -08:00
Daniel Micay
b5334b3c0d
mark the minimum supported Linux kernel version
...
This is just taken from the binary itself. It would be nice to mark the
minimum glibc version too, and the corresponding RHEL/CentOS version.
2014-01-31 21:43:08 -08:00
Daniel Micay
c9dd1ce89a
mark Windows 8 as supported
2014-01-31 21:43:08 -08:00
Daniel Micay
d244512626
bump minimum supported OS X version to 10.7
...
Closes #11927
Closes #10842
Closes #2024
2014-01-31 21:43:08 -08:00
JeremyLetang
4f24caae11
Add test case for issue 7911
2014-01-31 21:43:08 -08:00
Virgile Andreani
b9a026afba
Fix minor doc typos
2014-01-31 21:43:07 -08:00
Alex Crichton
2c8b112580
Un-xfail test for 7385
...
I've verified that it works on osx x86_64
Closes #7385
2014-01-31 21:43:07 -08:00
Michael Darakananda
d088e5fd94
Added minmax function.
...
Tests ok
2014-02-01 00:27:28 -05:00