summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2019-08-03MIR Cleanup - Clean up constants moreJohn Hodge1-0/+28
2019-08-03Codegen MMIR - Handle enum constructorsJohn Hodge1-4/+49
2019-08-03MIR Optimise - Extend Single-Read/Write optimisation to follow goto/callJohn Hodge1-12/+62
2019-08-03MIR Optimise - Remove duplicate codeJohn Hodge1-30/+5
2019-08-03MIR Optimise - De-borrow, fix invalidation in old de-termporary codeJohn Hodge1-31/+272
2019-07-27Resolve Use - Fix edge case with recursive lookups erroringJohn Hodge1-3/+8
2019-07-27Lower MIR - Handle match with unionJohn Hodge1-1/+8
2019-07-24HIR Typecheck - Semi-hack, auto-deref through &-ptrs when looking for callablesJohn Hodge1-1/+14
2019-07-21Parse - Handle #[cfg_attr(foo, path="")]John Hodge1-1/+14
2019-07-21Typecheck Expressions - Default to u8 when cast to char is seenJohn Hodge1-1/+18
2019-07-21Parse - Handle converting byte string :expr fragments into patternsJohn Hodge1-3/+3
2019-07-21HIR Typecheck - Short-circuit when method name is found on a trait objectJohn Hodge2-0/+7
2019-07-21HIR - Partial support for large arrays (may fail downstream with overflows)John Hodge2-3/+3
2019-07-21(minor) Fix comment typoJohn Hodge1-1/+1
2019-07-21MIR Optimise - Tweaks to new optimisationJohn Hodge1-14/+35
2019-07-20MIR Optimise - Simpler and more powerful temporary eliminationJohn Hodge1-9/+348
2019-07-20Codegen C - Fix Box drop impl not being overriddenJohn Hodge1-9/+21
2019-07-20HIR Typecheck - Move NullOnDrop to a common locationJohn Hodge2-11/+12
2019-07-20HIR Expand Closures - Better namingJohn Hodge1-8/+14
2019-07-14standalone_miri - Fix after MIR refactorJohn Hodge1-7/+22
2019-07-14MIR Optimise - Don't evaluate U128 invJohn Hodge1-2/+3
2019-07-13Trans sizeof - Fix bug where sizeof<*const T> would return 2*ptr if T was ?SizedJohn Hodge4-176/+187
2019-07-13MIR Optimise - Improved constant propagationJohn Hodge1-13/+81
2019-07-13Expand module_path - Unconditionally add `::` to simplify debugging empty ↵John Hodge1-2/+1
crate names
2019-07-13main - Add initial file to depenency listJohn Hodge1-1/+2
2019-07-07Expand module_path - Include crate name (for RUST_LOG)John Hodge1-1/+3
2019-07-07MIR Optimise - Fix (and detect) mis-optimisation with indexing, more const ↵John Hodge3-9/+68
propagation
2019-06-30HIR Typecheck - Cache drop glue presenceJohn Hodge2-7/+27
2019-06-30Codegen C - Fix incorrect size in vtablesJohn Hodge1-5/+12
2019-06-30Expand `#[test]` - Fix should_panic/ignore flagsJohn Hodge1-3/+4
2019-06-29All - Working dylib support (not used yet, needs rpath/absolute)John Hodge4-6/+53
2019-06-29Trans - Rework to potentially support dynamic librariesJohn Hodge9-60/+98
2019-06-29HIR Gen - Improved error message with integer overflowJohn Hodge1-1/+2
2019-06-22AST - Use constant crate paths in HIR metadataJohn Hodge3-3/+13
2019-06-22HIR Deserialise - Disable debug outputJohn Hodge3-8/+15
2019-06-22HIR - Wrap impls in unique_ptr to keep pointer stability hackJohn Hodge9-41/+43
2019-06-22HIR - Planning for removal of evil pointers (but not today)John Hodge5-8/+98
2019-06-22HIR - Fix slight logic error in ItemPath (C++ overloads)John Hodge1-1/+3
2019-06-22Expand/Trans - Better handling of #[panic_implementation]John Hodge4-7/+52
2019-06-16MIR Gen - (minor) Log node pointersJohn Hodge1-0/+5
2019-06-15HIR Annotate - Handle method receivers correctlyJohn Hodge1-2/+25
2019-06-09HIR - Sort trait impls tooJohn Hodge11-232/+308
2019-06-09macro_rules - Handle open range operatorsJohn Hodge1-1/+23
2019-06-08Codegen C - (minor) Include drop statement in output commentsJohn Hodge1-0/+1
2019-06-08HIR Typecheck Static - Handle closures in EAT (for post resolve validation)John Hodge1-0/+3
2019-06-08MIR Gen - Fix clobbering of value state when fields are reassignedJohn Hodge2-21/+14
2019-06-08MIR Gen - Casts moveJohn Hodge2-1/+5
2019-06-06Expand proc_macro - Fix for string interningJohn Hodge1-2/+2
2019-06-04HIR Ops - Remove unused case from impl matching (slight speedup)John Hodge1-1/+1
2019-06-04HIR - Use maps-of-vectors for impl lists for faster lookup, optimise ↵John Hodge13-288/+477
Trans_Enumerate