summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2018-05-13Codegen MMIR - Struct constructorsJohn Hodge1-1/+38
2018-05-12Trans - Support NonZero optimisation for BoxJohn Hodge2-0/+14
2018-05-12Standalone MIRI - TLS and some other messing aboutJohn Hodge1-1/+1
2018-05-12MIR Cleanup - Remove cast of PhantomDataJohn Hodge1-8/+2
2018-05-12Codegen MMIR - Emit vtables (only partially complete)John Hodge1-38/+104
2018-05-11Merge branch 'master' of https://github.com/thepowersgang/mrustcJohn Hodge3-250/+311
2018-05-05Target - Minor fixes to target.toml file loading (should work now)John Hodge2-24/+67
2018-05-05MIR Optimise - Reorder code a bit for easier readingJohn Hodge1-225/+240
2018-05-05MIR Optimise - Short-circuit fail CommonStatements to hopefully avoid ↵John Hodge1-1/+4
excessive runtime
2018-04-25HIR Dump - (minor), fix formatting of enumsJohn Hodge1-1/+2
2018-04-25Fix #72 - Use-after-free of a string in HIR loweringJohn Hodge1-1/+2
2018-04-02Add targets aarch64-linux-gnu and aarch64-unknown-openbsdJakub Jirutka1-0/+23
2018-04-02Fix aarch64 triplet from arm64-* to aarch64-*Jakub Jirutka1-2/+2
ARM's 64-bit ISA introduced in ARMv8-A is called "aarch64" by most projects, including Rust and GCC. Better to avoid more confusions.
2018-04-01All - Move toml parser and path header to a common library, start on custom ↵John Hodge1-7/+165
target specs.
2018-04-01Codegen C - Fix compilation error in cargo (#66)John Hodge1-4/+16
2018-03-31Codegen C - Fix a few bugs with no ZST modeJohn Hodge1-3/+35
2018-03-30HIR From AST - inline(never)John Hodge1-2/+6
2018-03-30Codegen C - Fix ZST handlingJohn Hodge1-4/+23
2018-03-26netbsd/amd64 supportMaya Rashish3-1/+19
2018-03-20Update proc_macro.cppАристарх Фещуков1-1/+1
2018-03-17Codegen C - Work around GCC5 bug by emitting a single-field struct instead ↵John Hodge1-1/+12
of a union Fixes #63
2018-03-17Codegen C - Fix structured emission (still disabled)John Hodge3-34/+171
2018-03-17Codegen - Minor array fix for MSVCJohn Hodge1-7/+27
2018-03-17Standalone MIRI - size_of_val and drop_in_placeJohn Hodge1-3/+3
2018-03-17VTables - Rename vtable static to have the # at the end (helps parsing in mmir)John Hodge6-48/+147
2018-03-17MIR Optimise - Slight cleanup for faster compilesJohn Hodge2-8/+11
2018-03-17Standalone Miri - More work blasting alongJohn Hodge1-0/+4
2018-03-17Trans - Move monomorphisation from codegen pass to its own pass, and do a ↵John Hodge8-22/+225
second inlining pass after monomorph.
2018-03-03Codegen C - Avoid warning from msvc changeJohn Hodge1-1/+1
2018-03-03Codegen C - Avoid attempting to get type of a non-LValue when looking for ZSTsJohn Hodge1-6/+9
2018-03-03Trans Enumerate - Some work on doing selective library enumeration (has some ↵John Hodge2-43/+54
holes, so is still disabled)
2018-03-03Codegen C - Fix ordering of InterlockedCompareExchange argumentsJohn Hodge1-3/+4
2018-03-03Codegen C - A few more MSVC compile fixes, now compiling (after patching ↵John Hodge1-5/+19
libstd to remove unused extern)
2018-03-03Codegen C - Work around InterlockedExchangeSubtract not existing for all ↵John Hodge1-2/+6
types by emulating with add
2018-03-03Codegen C - More work with MSVC support (darn atomics)John Hodge1-59/+82
2018-02-28Codegen C - MSVC fiddling still, fix compile error on gccJohn Hodge1-7/+37
2018-02-25Codegen C - More work on MSVC functionsJohn Hodge1-13/+43
2018-02-25Codegen C - Literals and omitted ZSTsJohn Hodge1-4/+19
2018-02-25Codegen C - Don't add `_d` field when there's an unsizedJohn Hodge1-1/+1
2018-02-25Codegen C - Minor fix with vtable handling, more work on MSVC zstsJohn Hodge1-6/+29
2018-02-25HIR+Codegen C - Encode drop/size/align in VTables at HIR level, working on ↵John Hodge2-96/+225
MSVC compilation
2018-02-25MIR Gen - Replace infinite loop for default in match generation with a ↵John Hodge1-1/+3
diverge terminator
2018-02-25MIR Optimise - Remove no-op assignmentsJohn Hodge1-0/+51
2018-02-25HIR Typecheck - Fix case where inferrence stalls when there's a `T = ↵John Hodge1-17/+60
<T>::Assoc bound` and unsizing, should fix #62
2018-02-24Standalone MIRI + Codegen MMIR - Drop supportJohn Hodge1-88/+63
2018-02-24macro_rules - Allow macros for :typeJohn Hodge1-1/+10
2018-02-24Expand - Fix #61, not expanding paths in typesJohn Hodge1-1/+10
2018-02-24Parse - Handle `use *;`, fixes #60John Hodge1-0/+3
2018-02-24macro_rules - Fix #59 and add tests for various macro quirksJohn Hodge1-1/+4
2018-02-21Merge pull request #58 from ibara/masterJohn Hodge (Mutabah)3-0/+44
Add OpenBSD support.