summary refs log tree commit diff
path: root/src/etc
AgeCommit message (Collapse)AuthorLines
2016-09-25Haiku: add support for building on HaikuNiels Sascha Reedijk-1/+1
* Hand rebased from Niels original work on 1.9.0
2016-09-17remove useless semicolon from pythonEitan Adler-12/+12
2016-09-17modern style classesEitan Adler-7/+7
2016-09-17make functions static where possibleEitan Adler-11/+22
2016-09-17Remove unused codeEitan Adler-2/+0
2016-09-17prefer tuple to arrayEitan Adler-2/+2
2016-09-17pep8 prefers triple quoted with double quotesEitan Adler-9/+9
2016-09-17simplify python codeEitan Adler-1/+1
2016-08-31Auto merge of #35585 - Kha:gdb-qualified, r=michaelwoeristerbors-20/+20
gdb: Fix pretty-printing special-cased Rust types gdb trunk now reports fully qualified type names, just like lldb. Move lldb code for extracting unqualified names to shared file. For current releases of gdb, `extract_type_name` should just be a no-op. Fixes #35155
2016-08-23Auto merge of #35748 - michaelwoerister:fix-rust-gdb-py-version-check, r=brsonbors-1/+1
Make version check in gdb_rust_pretty_printing.py more compatible. Some versions of Python don't support the `major` field on the object returned by `sys.version_info`. Fixes #35724 r? @brson
2016-08-22Add sublime-rust to CONFIGS.md.Terry Sun-0/+1
2016-08-17Make version check in gdb_rust_pretty_printing.py more compatible.Michael Woerister-1/+1
Some versions of Python don't support the `major` field on the object returned by `sys.version_info`.
2016-08-10gdb: Fix pretty-printing special-cased Rust typesSebastian Ullrich-20/+20
gdb trunk now reports fully qualified type names, just like lldb. Move lldb code for extracting unqualified names to shared file.
2016-08-01Auto merge of #35163 - sanxiyn:rollup, r=sanxiynbors-6/+0
Rollup of 8 pull requests - Successful merges: #34802, #35033, #35085, #35114, #35134, #35140, #35141, #35157 - Failed merges:
2016-08-01Auto merge of #34743 - badboy:llvm-upgrade, r=eddybbors-0/+7
LLVM upgrade As discussed in https://internals.rust-lang.org/t/need-help-with-emscripten-port/3154/46 I'm trying to update the used LLVM checkout in Rust. I basically took @shepmaster's code and applied it on top (though I did the commits manually, the [original commits have better descriptions](https://github.com/rust-lang/rust/compare/master...avr-rust:avr-support). With these changes I was able to build rustc. `make check` throws one last error on `run-pass/issue-28950.rs`. Output: https://gist.github.com/badboy/bcdd3bbde260860b6159aa49070a9052 I took the metadata changes as is and they seem to work, though it now uses the module in another step. I'm not sure if this is the best and correct way. Things to do: * [x] ~~Make `run-pass/issue-28950.rs` pass~~ unrelated * [x] Find out how the `PositionIndependentExecutable` setting is now used * [x] Is the `llvm::legacy` still the right way to do these things? cc @brson @alexcrichton
2016-08-01Remove CMake workaroundSeo Sanghyeon-6/+0
2016-07-31Add libarena from local rust to stage0Brendan Cully-0/+1
This was needed at least when local rust was 1.9.0 on darwin. Fixes #35149
2016-07-29Update parsing llvm-config outputAlex Crichton-0/+7
Now it prints full paths on MSVC, but we're only interested in path names
2016-07-23Escape fewer Unicode codepoints in `Debug` impl of `str`Tobias Bucher-0/+154
Use the same procedure as Python to determine whether a character is printable, described in [PEP 3138]. In particular, this means that the following character classes are escaped: - Cc (Other, Control) - Cf (Other, Format) - Cs (Other, Surrogate), even though they can't appear in Rust strings - Co (Other, Private Use) - Cn (Other, Not Assigned) - Zl (Separator, Line) - Zp (Separator, Paragraph) - Zs (Separator, Space), except for the ASCII space `' '` (`0x20`) This allows for user-friendly inspection of strings that are not English (e.g. compare `"\u{e9}\u{e8}\u{ea}"` to `"éèê"`). Fixes #34318. [PEP 3138]: https://www.python.org/dev/peps/pep-3138/
2016-07-16Auto merge of #34779 - infinity0:master, r=alexcrichtonbors-0/+9
If local-rust is the same as the current version, then force a local-rebuild In Debian, we would like the option to build/rebuild the current release from *either* the current or previous stable release. So we use enable-local-rust instead of enable-local-rebuild, and read the bootstrap key dynamically from whatever is installed locally. In general, it does not make much sense to allow enable-local-rust without also setting the bootstrap key, since the build would fail otherwise. (The way I detect "the bootstrap key of [the local] rustc installation" is a bit hacky, suggestions welcome.)
2016-07-15mk: If local-rust is the same as the current version, then force a local-rebuildXimin Luo-0/+9
2016-07-14Auto merge of #34599 - cuviper:unicode-9.0, r=alexcrichtonbors-1/+1
Update Unicode tables to 9.0 I just updated `unicode.py`'s generated copyright year, then ran it.
2016-07-06Auto merge of #34689 - alexcrichton:fix-nightlies, r=alexcrichtonbors-2/+9
First attempt to fix nightlies This is just https://github.com/rust-lang/rust/pull/34669 but I added some comments so it can land.
2016-07-06etc: Comment why we're binding xrangeAlex Crichton-0/+3
Just mention there are differences between python versions
2016-07-06Merge branch 'master' of https://github.com/dzamlo/rust into fix-nightliesAlex Crichton-2/+6
2016-07-06Auto merge of #34644 - infinity0:master, r=alexcrichtonbors-2/+0
Avoid redundant downloads when bootstrapping If the local file is available, then verify it against the hash we just downloaded, and if it matches then we don't need to download it again.
2016-07-05Use lazy range in gdb pretty printersLoïc Damien-2/+6
2016-07-05Auto merge of #34412 - gnzlbg:document_platform_intrinsics_generate, ↵bors-13/+110
r=alexcrichton Add x86 intrinsics for bit manipulation (BMI 1.0, BMI 2.0, and TBM). This PR adds the LLVM x86 intrinsics for the bit manipulation instruction sets (BMI 1.0, BMI 2.0, and TBM). The objective of this pull-request is to allow building a library that implements all the algorithms offered by those instruction sets, using compiler intrinsics for the targets that support them (by means of `target_feature`). The target features added are: - `bmi`: Bit Manipulation Instruction Set 1.0, available in Intel >= Haswell and AMD's >= Jaguar/Piledriver, - `bmi2`: Bit Manipulation Instruction Set 2.0, available in Intel >= Haswell and AMD's >= Excavator, - `tbm`: Trailing Bit Manipulation, available only in AMD's Piledriver (won't be available in newer CPUs). The intrinsics added are: - BMI 1.0: - `bextr`: Bit field extract (with register). - BMI 2.0: - `bzhi`: Zero high bits starting with specified bit position. - `pdep`: Parallel bits deposit. - `pext`: Parallel bits extract. - TBM: - `bextri`: Bit field extract (with immediate).
2016-07-04Auto merge of #34646 - michaelwoerister:warn-blacklisted-lldb, r=alexcrichtonbors-0/+11
Make rust-lldb warn about unsupported versions of LLDB r? @alexcrichton
2016-07-04Make rust-lldb warn about unsupported versions of LLDBMichael Woerister-0/+11
2016-07-04Auto merge of #34639 - dzamlo:master, r=michaelwoeristerbors-7/+2
Use lazy iterator in vec/slice gdb pretty printers
2016-07-04Use lazy iterator in vec/slice gdb pretty printersLoïc Damien-7/+2
2016-07-04Avoid redundant downloads when bootstrappingXimin Luo-2/+0
If the local file is available, then verify it against the hash we just downloaded, and if it matches then we don't need to download it again.
2016-07-04Added a pretty printer for &mut slicesNikhil Shagrithaya-1/+1
2016-07-01Update Unicode tables to 9.0Josh Stone-1/+1
2016-06-23Auto merge of #34055 - brson:cmake, r=alexcrichtonbors-1/+7
Convert makefiles to build LLVM/compiler-rt with CMake This is certainly buggy, but I have successfully built on x86_64-unknown-linux-gnu and x86_64-pc-windows-gnu. I haven't built successfully on mac yet, and I've seen mysterious test failures on Linux, but I'm interested in throwing this at the bots to see what they think.
2016-06-22Add target_features for the bit manipulation instruction sets: BMI 1.0, BMI ↵gnzlbg-1/+0
2.0, and TBM.
2016-06-22Add intrinsics for x86 bit manipulation instruction sets: BMI 1.0, BMI 2.0, ↵gnzlbg-0/+53
and TBM.
2016-06-22Allow different instruction set prefixes within the same architecturegnzlbg-13/+37
2016-06-22Add usage examples to the documentation of etc/platform-intrinsics/generator.pygnzlbg-0/+21
2016-06-21Convert makefiles to build LLVM/compiler-rt with CMakeBrian Anderson-1/+7
2016-06-20Run debuginfo tests on TravisSeo Sanghyeon-1/+3
2016-06-03Use Docker for TravisSeo Sanghyeon-0/+25
2016-05-31Auto merge of #33141 - tshepang:python-love, r=brsonbors-8/+4
some Python nits and fixes
2016-05-31mk: Prepare for a new stage0 compilerAlex Crichton-2/+3
This commit prepares the source for a new stage0 compiler, the 1.10.0 beta compiler. These artifacts are hot off the bots and should be ready to go.
2016-05-30print enum variant fields in docsOliver Schneider-0/+1
2016-05-23Auto merge of #33098 - raphlinus:master, r=alexcrichtonbors-4/+134
Efficient trie lookup for boolean Unicode properties Replace binary search of ranges with trie lookup using leaves of 64-bit bitmap chunks. Benchmarks suggest this is approximately 10x faster than the bsearch approach.
2016-05-15Auto merge of #33612 - royalstream:royalstream-enc-enum-ptr, r=michaelwoeristerbors-0/+2
gdb Pretty Print: generic encoded was failing on reference/pointer types If you debug this program using **gdb** ```rust fn main() { let x = 10; let y = Some(&x); // additional code } ``` And you try to print **y**'s value from the debugger, you get the following: ``` (gdb) print y Python Exception <class 'gdb.error'> Cannot convert value to int.: $1 = {RUST$ENCODED$ENUM$0$None = Some = {0x7fff5fbff97c}} ``` What happens is that inside **debugger_pretty_printers_common.py** the method `is_null_variant` doesn't have any special handling for pointer values so it ends up calling `.as_integer()` on `discriminant_val` (which holds a pointer) and fails. Considering it needs to handle pointers and return _true_ when the pointer is _null_, I modified the `.as_integer()` method in **gdb_rust_pretty_printing.py** to take pointers into consideration. After this modification **gdb** prints **y** like this: ``` (gdb) print y $1 = Some = {0x7fff5fbff97c} ``` Now, it would be nice to print something useful (instead of a pointer address) but the pretty printer doesn't currently handle references/pointers so that's a completely different subject.
2016-05-12Generic encoded enums no longer crash on reference/pointer typesSteven Burns-0/+2
2016-05-10Copy more libraries from local Rust to stage0Anton Blanchard-0/+8
When bootstrapping Rust using a previously built toolchain, I noticed a number of libraries were not copied in. As a result the copied in rustc fails to execute because it can't find all its dependences. Add them into the local_stage0.sh script.