about summary refs log tree commit diff
path: root/src/comp
AgeCommit message (Collapse)AuthorLines
2010-09-28Translate literal int, char, bool and str types, as well as logging them.Graydon Hoare-20/+95
2010-09-28More rustc expr-parsing logic.Graydon Hoare-22/+238
2010-09-27Start building up the expression tower.Graydon Hoare-20/+92
2010-09-27Translate exit-task glue such that rustc's output programs exit properly.Graydon Hoare-17/+71
2010-09-27Fix indexing bug in rustc's indirect-upcall arg-copying loops.Graydon Hoare-3/+4
2010-09-27First linkable and executable translation from rustc. Upcalls to log, passes ↵Graydon Hoare-9/+51
wrong arg, crashes. Baby steps.
2010-09-24Construct the crate constant in rustc.Graydon Hoare-1/+62
2010-09-24Modify the task type to not contain any opaques; apparently these make LLVM ↵Graydon Hoare-6/+25
cross.
2010-09-24More work on trans, almost getting to the point of emitting an upcall.Graydon Hoare-37/+204
2010-09-23Wrap long line.Graydon Hoare-1/+2
2010-09-23Add trans.get_upcall and skeleton for trans_log.Graydon Hoare-2/+36
2010-09-23Improve LLVM builder wrapper-object.Graydon Hoare-53/+206
2010-09-23Declare the global and upcall glues as ValueRefs in rustc's trans.Graydon Hoare-22/+95
2010-09-23Translate a bunch of the material (lltrans, llasm, abi) from rustboot to ↵Graydon Hoare-12/+232
rustc, and move files around.
2010-09-23More fleshing-out on rustc.me.trans. Emitting modules and fns corresponding ↵Graydon Hoare-16/+64
to parsed input now.
2010-09-22Flesh out rustc.me.trans to construct functions, basic blocks and builders ↵Graydon Hoare-3/+63
off the AST.
2010-09-22Move llvm-using code in rustc to trans module.Graydon Hoare-21/+38
2010-09-21Begin teaching rustc to parse literals, atoms, stmts, blocks, items, ↵Graydon Hoare-38/+182
modules, crates.
2010-09-21Implement preliminary form of structured compare. No boxes, vectors or ↵Graydon Hoare-2/+1
strings yet.
2010-09-21Add QUES to comp/fe/lexer.rs, rustc can self-lex again.Graydon Hoare-0/+3
2010-09-20Bind pattern slots with ?, drop parens from 0-ary tag constructors, ↵Graydon Hoare-353/+353
translate 0-ary constructors as constants. Rustc loses ~300kb.
2010-09-14Teach front-end about simple, first-cut version of const items.Graydon Hoare-0/+3
2010-09-09Switch tags to purely nominal, removing TY_iso and TY_idx. Seems to mostly ↵Graydon Hoare-180/+212
work, possibly a little bumpy. Changes a lot.
2010-09-01Add session, span tracking, error reporting, beginning of a function to ↵Graydon Hoare-35/+165
parse an item to rustc.
2010-08-31Add block-comment support, various additional operators. Rustc can lex ↵Graydon Hoare-60/+164
itself now.
2010-08-31Er, this would be the hunk that actually failed to get committed last time.Graydon Hoare-7/+7
2010-08-31Reinstate commit 9f0eaa65817303b8768c80454734144c176fda43 with sufficient ↵Graydon Hoare-17/+150
fixes to hopefully not break tinderboxes.
2010-08-27Revert "More work on lexer.rs: start using keyword hashtable, handle more ↵Patrick Walton-150/+17
lexemes." due to tinderbox bustage This reverts commit 9f0eaa65817303b8768c80454734144c176fda43.
2010-08-27More work on lexer.rs: start using keyword hashtable, handle more lexemes.Graydon Hoare-17/+150
2010-08-27Whitespace shuffle in rustc's lexer to fit 78-column rule and put out ↵Roy Frostig-5/+20
burning tinderbox.
2010-08-27Modify rustboot to use lexer.reader.Graydon Hoare-94/+103
2010-08-24Add lexer.reader to rustc for tracking position, char conversion, holding ↵Graydon Hoare-0/+89
keyword tables.
2010-08-24Add very basic char / str literal handling to rustc lexer.Graydon Hoare-0/+56
2010-08-24Tidy lexer.Graydon Hoare-15/+23
2010-08-23Handle line-comments and a few more symbols in rustc lexer.Graydon Hoare-4/+81
2010-08-20Stringify op tokens.Graydon Hoare-2/+29
2010-08-20Accumulate number tokens properly, handle newline, EQ and EQEQ in rustc lexer.Graydon Hoare-17/+28
2010-08-20Lex commas too in the self-hosted compilerPatrick Walton-0/+1
2010-08-20Use pattern matching for the one-byte structural symbols in the self-hosted ↵Patrick Walton-10/+12
compiler
2010-08-20Fix some lexer bugs in rustc. Beginning to lex stuff now.Graydon Hoare-3/+7
2010-08-20Expand rustc lexer to do almost-nearly-nontrivial stuff.Graydon Hoare-4/+201
2010-08-20Use str += u8 in rustc lexer.Graydon Hoare-0/+4
2010-08-19Add some code to lexer in rustc.Graydon Hoare-2/+35
2010-08-18Simplify lexer/parser structure to use stdio_reader.Graydon Hoare-32/+35
2010-08-18Add do-nothing obj type for lexer to rustc.Graydon Hoare-0/+9
2010-08-18Add mod token to rustc.Graydon Hoare-0/+161
2010-08-18Add mod common to rustc.Graydon Hoare-0/+19
2010-08-18Change indent on rustc.rc.Graydon Hoare-16/+17
2010-08-18Flesh out the ast module in rustc a little.Graydon Hoare-1/+47
2010-08-18Add test code that exercises LLVM in rustc. Works.Graydon Hoare-0/+17