about summary refs log tree commit diff
path: root/src/comp
AgeCommit message (Expand)AuthorLines
2011-05-10rustc: Cache intermediate results of metadata.Encode.ty_str. Shaves 30% off t...Patrick Walton-3/+22
2011-05-10Switch memcpy to memmove since we're willing to compile x = x and such.Graydon Hoare-18/+17
2011-05-10rustc: Get rid of native Rust glue for all upcalls except the exit task gluePatrick Walton-133/+114
2011-05-10Re-enable use of llvm intrinsics for memcpy, memset. Should have aligned stac...Graydon Hoare-106/+77
2011-05-09Fix long lines in fold.rs, typeck.rsBrian Anderson-2/+4
2011-05-09Alias-ify fold and its users, remove another 85kb.Graydon Hoare-357/+378
2011-05-09rustc: Give our upcall definitions the right valuesPatrick Walton-40/+50
2011-05-09Alias-ify walk, typeck, metadata. Cuts another 80kb off rustc.Graydon Hoare-150/+153
2011-05-09rustc: Declare upcalls with real signatures; preparation for killing rust_nat...Patrick Walton-0/+151
2011-05-09Remove boxes from token.t.Graydon Hoare-42/+79
2011-05-09rustc: Alias fix part 2 -- Check that the aliasness of function parameters ma...Patrick Walton-10/+11
2011-05-09Alias-ify a variety of fn signatures in ty. Cuts 180kb off rustc.Graydon Hoare-112/+114
2011-05-09rustc: Alias fix part 1 -- Separate out AST modes from typechecker modes, and...Patrick Walton-71/+63
2011-05-09rustc: Replace our homebrew list of passes with the standard function and mod...Patrick Walton-51/+21
2011-05-08rustc: Stop emitting zero-length arraysPatrick Walton-14/+42
2011-05-07Stop stringifying integers to get integral constants.Graydon Hoare-32/+37
2011-05-06rustc: Make llvm_err() conform to Postel's law a little betterPatrick Walton-1/+6
2011-05-06Fix GenericOS.getenv returning a raw str, return an Option.t[str] instead.Graydon Hoare-2/+11
2011-05-06rustc: Uncomment LLVMAddStandardPasses, now that we have a native glue that s...Patrick Walton-2/+2
2011-05-06Rename std modules to be camelcasedMarijn Haverbeke-1321/+1321
2011-05-06rustc: Bump the number of native glues to 8Patrick Walton-1/+1
2011-05-06rustllvm: Add a binding to the LLVM standard module passesPatrick Walton-0/+10
2011-05-06rustc: For stack local derived tydescs, allocate the root tydesc separately f...Patrick Walton-24/+36
2011-05-06rustc: Factor derived tydesc construction out of get_tydesc()Patrick Walton-43/+44
2011-05-06rustc: Include a representation of the type in question in the symbols genera...Patrick Walton-1/+1
2011-05-06Ge the host triple using LLVM. Fix a few 'mutable' warnings also.Kelly Wilson-8/+29
2011-05-06Use #env to bake a git revision string into rustc's --version output.Graydon Hoare-4/+5
2011-05-05rustc: Remove some debugging code from decl_native_fn_and_pair()Patrick Walton-6/+0
2011-05-05rustc: Fix a bunch of argument-passing bugs in decl_native_fn_and_pair()Patrick Walton-54/+82
2011-05-05Fix x86.rs triple for linux.Graydon Hoare-1/+1
2011-05-05Consolidating expr_to_str functions.Lindsey Kuper-22/+8
2011-05-05Use symbolic register names so that we get the correct encoding on OS X.Rafael Ávila de Espíndola-2/+2
2011-05-05Change the setup so that rust_activate_glue returns to rust_exit_task_glueRafael Ávila de Espíndola-16/+17
2011-05-05rustc: Add Rust intrinsic support to the crate metadata reader and writerPatrick Walton-3/+7
2011-05-05rustc: Fix bug in equal_abi that was preventing Rust intrinsics from workingPatrick Walton-0/+6
2011-05-05Add --help, --version and -v flags (not yet supporting GIT_REV env var, waiti...Graydon Hoare-4/+23
2011-05-05rustc: Link with intrinsics.bc; change intrinsics linkage to linkonce_odrPatrick Walton-2/+28
2011-05-05rustc: Add a binding to LLVM's bitcode parserPatrick Walton-0/+9
2011-05-05Enforce in typechecker that preds return a boolTim Chevalier-0/+11
2011-05-05Bring back "pred" syntax for writing predicates for checkTim Chevalier-22/+155
2011-05-05Check well-formedness of constraintsTim Chevalier-6/+37
2011-05-05Check that the operand in a check is a callTim Chevalier-8/+19
2011-05-05Remove 'deprecated mutable...' from our codeMarijn Haverbeke-14/+14
2011-05-05Return a fresh, unreachable context after ret, break, and contMarijn Haverbeke-2/+2
2011-05-05Eradicate fold from capture.rsMarijn Haverbeke-59/+54
2011-05-05rustc: Add a Link module; move crate writing to it to slim down trans slightlyPatrick Walton-173/+197
2011-05-04rustllvm: Add bindings to the LLVM linkerPatrick Walton-1/+3
2011-05-04rustc: Detect the system root and allow the user to override if necessaryPatrick Walton-4/+22
2011-05-04Add #env syntax extension for plucking strings out of the compilation environ...Graydon Hoare-0/+76
2011-05-05Fix and re-enable destructorsMarijn Haverbeke-6/+7