summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorFilesLines
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 pr...John Hodge3-9/+68
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 Trans_En...John Hodge13-288/+477
2019-06-04HIR Markings - Flag for any Copy implJohn Hodge5-27/+31
2019-06-02MIR - Refactor LValue to reduce size and linked-list-ness (seems to have had ...John Hodge23-1855/+1798
2019-05-25Derive - Fix incorrect copy-paste during previous refactorJohn Hodge1-1/+1
2019-05-25MIR - Condense LValue debug formatJohn Hodge1-8/+8
2019-05-24Expand derive - Code cleanupJohn Hodge3-228/+207
2019-05-21rc_string - Use memcmp/strcmp (faster)John Hodge2-56/+31
2019-05-19All - Switch to using interned (de-duplicated) RcString-s instead of std::str...John Hodge96-864/+1202
2019-05-18HIR - Fix privacy error for items in non-library crate rootJohn Hodge3-35/+43
2019-05-18main - dylib crate type on command lineJohn Hodge1-0/+3
2019-05-18Forgotten headerJohn Hodge1-0/+33
2019-05-15Expand - Track include!/include_str!/include_bytes! files for dependenciesJohn Hodge2-1/+6
2019-05-14Trans Enumerate - Cache paths used by functionJohn Hodge3-46/+119
2019-05-12Codegen C - (minor) Commenting and extra assertionsJohn Hodge1-3/+7
2019-05-12main - Slight tweak to dependency file outputJohn Hodge1-7/+24
2019-05-11HIR Const Eval - Use cached monomorphsed values in consteval, evaluate in rev...John Hodge2-1/+9
2019-05-11Typecheck Expressions - Fix bug in ivar counting, work around failure in libr...John Hodge1-30/+74
2019-05-09MIR Optimise - Work around De-Temporary bug that was mis-optimising Vec::retainJohn Hodge1-0/+14
2019-05-06Codegen C - Mark llvm.* shims as staticJohn Hodge1-0/+2
2019-05-05HIR Expand Closures - Run on constantsJohn Hodge2-2/+75
2019-05-05LoadCrates - Search for crates with matching names (instead of needing a perf...John Hodge1-14/+50
2019-05-05parse/expand/resolve - `macro` macros use their own module as the resolve rootJohn Hodge13-31/+103
2019-05-05MMIR - Fix a TODO around pointers to stringsJohn Hodge1-12/+25
2019-05-05Typecheck Expressions - Permanently enable match ergonomicsJohn Hodge1-64/+53
2019-05-05MIR - Wrap HIR::Path-s in MIR::Constant in unique_ptrJohn Hodge16-94/+135
2019-05-05Typecheck Expressions - (Disabled) inclusion of a coercion point on match valuesJohn Hodge1-1/+10