summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2017-06-25MIR Optimise - Support minimal optimisiationsJohn Hodge3-22/+342
2017-06-23MIR Gen - Disable argument replacement until argument states are tracked fullyJohn Hodge2-3/+18
2017-06-22MIR Gen - Remove arguments that are just assigned from argumentsJohn Hodge2-0/+15
2017-06-22Codegen C - First pass at structured C output (generated, but not compiled)John Hodge3-94/+584
2017-06-18Trans - Starting work on multiple targetsJohn Hodge5-511/+657
2017-06-18MIR Optimise - (minor) Comment on sortJohn Hodge1-0/+1
2017-06-17MIR Optimise - Sort BBs into approximate program flowJohn Hodge2-1/+117
2017-06-16MIR optimise - Fix a few little bugsJohn Hodge3-22/+80
2017-06-16MIR - Unify temporaries and variablesJohn Hodge21-944/+521
2017-06-15Codegen C - Fix float precision, disable test broken by fixed precisionJohn Hodge1-18/+14
2017-06-11Codegen C - Fix -INFINITYJohn Hodge1-1/+1
2017-06-11Codegen C - Make all drop glue staticJohn Hodge1-6/+6
2017-06-11Typecheck Static - Fix bug in needs_drop_glueJohn Hodge1-1/+2
2017-06-11Expand - Make file!/line! get the invocation location of a macroJohn Hodge6-17/+29
2017-06-11Parse - Support chaining of spans (for macro expansions)John Hodge16-90/+101
2017-06-10MIR Validate Full - Remove need for garbage collection of statesJohn Hodge1-45/+142
2017-06-10MIR Gen - Fix incorrect codegen due to defaulting to 0 not ~0John Hodge2-3/+4
2017-06-09Fix use of hard tabsJohn Hodge22-360/+360
2017-06-09Fix build broken by MSVC portJohn Hodge6-9/+10
2017-06-04Merge branch 'master' of https://github.com/thepowersgang/mrustcJohn Hodge (bugs)32-315/+1085
2017-06-04All - Compile and run fixes in MSVCJohn Hodge (bugs)9-23/+80
2017-06-04Trans - Emit monomorphised/inlined functions as `static`John Hodge4-12/+27
2017-06-04HIR Typecheck - Remove assertion that static impls aren't fuzzyJohn Hodge1-1/+1
2017-06-03HIR Typecheck - Validate traits after typecheckJohn Hodge5-17/+286
2017-06-02MIR Optimise - Remove unused drop flagsJohn Hodge1-81/+106
2017-06-02Codegen C - Return value from mainJohn Hodge1-2/+2
2017-06-02Tweaks to handling of struct patternsJohn Hodge3-16/+41
2017-05-28AST - Refactor to make unit-like structs their own variantJohn Hodge11-68/+95
2017-05-28HIR - (minir) Fix debug output of patternsJohn Hodge1-4/+4
2017-05-28Typecheck Expressions - Fix some places where ivars don't have indexesJohn Hodge2-1/+12
2017-05-26Typecheck Expr - Fix a place where literals can become trait objectsJohn Hodge1-9/+22
2017-05-26HIR Typecheck - Handle struct syntax for unit structsJohn Hodge3-2/+37
2017-05-26Codegen C - Handle signed bswapJohn Hodge1-1/+7
2017-05-24Enable optimisationJohn Hodge1-0/+1
2017-05-16HIR Typecheck - TweaksJohn Hodge1-2/+3
2017-05-15MIR Gen - Handle drop_in_place being a lang itemJohn Hodge1-4/+17
2017-05-15expand/lang - Lang items in later versions of rustcJohn Hodge1-0/+2
2017-05-15MIR Gen - Don't emit drop for union valuesJohn Hodge1-0/+7
2017-05-15HIR Typecheck - Fix greedily picking the most specific impl when typecheckingJohn Hodge1-4/+4
2017-05-15HIR Typecheck - Handling of implicit Sized bound when searching forJohn Hodge3-18/+88
impls
2017-05-15MIR - Handle Union field accessJohn Hodge2-56/+97
2017-05-15Parse - Handle `Struct { var }` initialisationJohn Hodge1-3/+12
2017-05-15Codegen C - Fix some edge cases with floats, add newer intrinsicsJohn Hodge1-2/+20
2017-05-15HIR Impl Specialisation - Handling of TraitObjectJohn Hodge1-3/+30
2017-05-14Lex - Handle i128/u128 literalsJohn Hodge1-0/+2
2017-05-14HIR Typecheck - Fix (hopefully) typeck errors in new libcollectionsJohn Hodge2-20/+173
2017-05-14Visual Studio compile fixesJohn Hodge (bugs)4-20/+6
2017-05-14Merge branch 'master' of https://github.com/thepowersgang/mrustcJohn Hodge (bugs)13-69/+98
2017-05-14Merge branch 'master' of https://github.com/thepowersgang/mrustcJohn Hodge (bugs)59-3131/+7538
# Conflicts: # src/common.hpp # src/hir/deserialise.cpp # src/hir_typeck/static.cpp # src/mir/from_hir.cpp # src/mir/from_hir.hpp # src/mir/from_hir_match.cpp # src/mir/helpers.hpp # src/mir/mir_builder.cpp
2017-05-13Parse - Remove TOK_MACROJohn Hodge10-63/+89