summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
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.
2018-02-21macro_rules - Handle macros in :itemJohn Hodge1-1/+49
2018-02-21Expand - Run expansion on trait paths in impl blocks (fixes #56)John Hodge1-1/+1
2018-02-19Add OpenBSD support.Brian Callahan3-0/+44
2018-02-19Codegen C - Fix bad attempt at making MSVC workJohn Hodge1-8/+5
2018-02-18Standalone MIRI - Implement BinOp comparisons and Terminator::IfJohn Hodge1-2/+2
2018-02-18MIR Optimise - Some work on const propagationJohn Hodge1-22/+77
2018-02-18MIR Optimise - Constant-propagate known enum variants.John Hodge1-3/+48
2018-02-18Codegen C - Still trying to make MSVC workJohn Hodge1-4/+24
2018-02-18Standalone MIRI (and mmir codegen) - Support external functionsJohn Hodge1-0/+24
2018-02-18MIR Gen - Store enum path with params in RValue::VariantJohn Hodge1-8/+8
2018-02-16MIR Optimise - (minor) Note about switch consteval eliminationJohn Hodge1-0/+12
2018-02-16Standalone MIRI - Hacking along, hit a blocker that will need some refactor.John Hodge1-6/+17
2018-02-12Codegen MMIR - Fix compilation error on linuxJohn Hodge1-3/+9
2018-02-11Codegen MMIR - Fix some minor architecture issuesJohn Hodge3-10/+17
2018-02-11Standalone MIRI - Implementation sprint, statics in process.John Hodge1-3/+271
2018-02-11Codegen C - Fix warnings due to incorrect signs of enum variantsJohn Hodge1-34/+41
2018-02-11Codegen C - Fix some minor issuesJohn Hodge1-11/+11
2018-02-10Trans - Fix mismatches between mrustc's sizings and C's sizingsJohn Hodge4-25/+115
2018-02-04Trans - Fixes to edge cases with enum variantsJohn Hodge2-5/+19
2018-02-04Codegen C - Avoid ICE with gcc 5.4.0 (ubuntu), clean up some warningsJohn Hodge1-5/+6
2018-02-04Target - Fix incorrect array size calculationJohn Hodge1-7/+7
2018-02-04Trans - mingw32 target attempt (still being worked on)John Hodge5-69/+262
2018-02-01Codegen C - Minor fixes from target structure layoutJohn Hodge2-67/+78
2018-01-28standalone_miri - Up to attempting to run `hello`John Hodge1-7/+6
2018-01-28All - mingw32 compilation changesJohn Hodge1-3/+3
2018-01-28Codegen MMIR - More implementation workJohn Hodge1-17/+75
2018-01-27Trans - Add "backend" for monomorphised MIRJohn Hodge8-4/+792