| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Test the deque a bit. Give it a get-by-index method. Fix two uncovered ↵ | Roy Frostig | 2010-07-28 | 1 | -0/+1 |
| | | | | | state-calculation bugs --- one decently, the other with an ugly hack. Bug on the latter coming right up. | ||||
| * | Switch machine-type lexemes to use suffixes. Remove support for foo(bar) as ↵ | Graydon Hoare | 2010-07-27 | 1 | -0/+2 |
| | | | | | a cast notation. Closes #129. | ||||
| * | Calm some LLVM indigestion of last change. | Graydon Hoare | 2010-07-27 | 1 | -0/+1 |
| | | |||||
| * | Move the test suite to the "as" form for casts. XFAIL a few tests for LLVM. | Patrick Walton | 2010-07-26 | 1 | -0/+4 |
| | | |||||
| * | Expose an RNG (the one used by our runtime) to Rust via std. | Roy Frostig | 2010-07-25 | 1 | -0/+1 |
| | | |||||
| * | Modify testcase to match new syntax and un-XFAIL mutable-vec-drop.rs. | Graydon Hoare | 2010-07-23 | 1 | -1/+0 |
| | | |||||
| * | Include all lval-writing statements in stmt_is_init calculation, not just ↵ | Graydon Hoare | 2010-07-23 | 1 | -1/+0 |
| | | | | | "copy-like". Un-XFAIL generic-tag-alt.rs | ||||
| * | Notify copy glue of dst-initialization and fix _vec.alloc issues in lib and ↵ | Roy Frostig | 2010-07-22 | 1 | -1/+0 |
| | | | | | runtime. Closes #109. | ||||
| * | A certain incomplete quantity of wrestling with "INIT" statements that don't ↵ | Graydon Hoare | 2010-07-22 | 1 | -0/+3 |
| | | | | | actually initialize. Should probably rename them to MAKE. Anyway, WIP, but two steps forward (and one back). More later. | ||||
| * | Un-XFAIL stuff that started working when pcwalton's new typechecker landed. | Graydon Hoare | 2010-07-22 | 1 | -13/+1 |
| | | |||||
| * | XFAIL task-comm-5, it's burning the tinderboxes. | Graydon Hoare | 2010-07-22 | 1 | -0/+1 |
| | | |||||
| * | Add XFAIL'ed test for return-in-iter, call unimpl when we find it. Closes #100. | Graydon Hoare | 2010-07-22 | 1 | -0/+2 |
| | | |||||
| * | Fix mem op= mem bug in trans.ml (via not terribly good fix). Closes #111. | Graydon Hoare | 2010-07-22 | 1 | -0/+1 |
| | | |||||
| * | Fix simple generic type parameters in LLVM. | Jeffrey Yasskin | 2010-07-23 | 1 | -2/+0 |
| | | |||||
| * | Implement tuple access for LLVM. | Jeffrey Yasskin | 2010-07-23 | 1 | -1/+0 |
| | | | | | | | | This involved adding an Ast.ty return to trans_lval. I also included the code for record and box access, but their tests don't completely pass yet. | ||||
| * | Nothing change, to tickle tinderboxes. | Graydon Hoare | 2010-07-21 | 1 | -1/+1 |
| | | |||||
| * | XFAIL comm-2 for now; there's an assertion trappping in rust_task::wakeup. | Graydon Hoare | 2010-07-21 | 1 | -0/+1 |
| | | |||||
| * | Teach the makefile to generate .ll files, | Jeffrey Yasskin | 2010-07-22 | 1 | -0/+6 |
| | | | | | | which are helpful in debugging the llvm backend. Also tell git to ignore LLVM's intermediate files. | ||||
| * | Fix more bad tabs in Makefile. | Graydon Hoare | 2010-07-20 | 1 | -3/+3 |
| | | |||||
| * | Extend compile-check for llvm case. | Graydon Hoare | 2010-07-20 | 1 | -0/+4 |
| | | |||||
| * | Re-XFAIL stuff that is definitely still unsupported in LLVM-land (like, ↵ | Graydon Hoare | 2010-07-20 | 1 | -0/+3 |
| | | | | | throws Not_implemented). | ||||
| * | Fix whitespace in Makefile. | Graydon Hoare | 2010-07-20 | 1 | -1/+1 |
| | | |||||
| * | ctxt_auto_deref_lval decides whether to autoderef the entire lval, not its base. | Roy Frostig | 2010-07-19 | 1 | -0/+1 |
| | | |||||
| * | Autoderef objects when passing them as implicit (indirect) arg upon ↵ | Roy Frostig | 2010-07-19 | 1 | -0/+1 |
| | | | | | vtbl-dispatch. Add testcase and XFAIL it on LLVM. Closes #112. | ||||
| * | Fix argv.rs under the LLVM compiler. | Jeffrey Yasskin | 2010-07-19 | 1 | -1/+0 |
| | | | | | | | The call to rust_start was assuming that all rust main() functions have the same signature, but the compiler doesn't actually canonicalize them. So instead just match the C signature of rust_start, and cast. | ||||
| * | Work around auto-dereference crash in rustboot. | Jeffrey Yasskin | 2010-07-19 | 1 | -0/+2 |
| | | |||||
| * | Fixed circular buffer resizing bug. | Michael Bebenita | 2010-07-19 | 1 | -1/+0 |
| | | |||||
| * | Added a message passing system based on lock free queues for inter-thread ↵ | Michael Bebenita | 2010-07-19 | 1 | -3/+20 |
| | | | | | communication. Channels now buffer on the sending side, and no longer require blocking when sending. Lots of other refactoring and bug fixes. | ||||
| * | Fix opeq.rs for LLVM by implementing simple augmented-assignment operators. | Jeffrey Yasskin | 2010-07-20 | 1 | -1/+0 |
| | | |||||
| * | Make the LLVM compiler crash when it hits a source construct it doesn't know | Jeffrey Yasskin | 2010-07-20 | 1 | -0/+1 |
| | | | | | what to do with, rather than silently omitting it from the output. | ||||
| * | Un-XFAIL a bunch of LLVM tests that already pass. | Jeffrey Yasskin | 2010-07-20 | 1 | -15/+0 |
| | | |||||
| * | Sort the XFAILed tests to make it easier to track changes. | Jeffrey Yasskin | 2010-07-20 | 1 | -13/+13 |
| | | |||||
| * | Make the build system run dsymutil so we can debug llvm-produced binaries on ↵ | Jeffrey Yasskin | 2010-07-20 | 1 | -2/+18 |
| | | | | | OSX. | ||||
| * | Improve the LLVM-using experience. | Jeffrey Yasskin | 2010-07-20 | 1 | -3/+4 |
| | | | | | | | | llvm-config may be installed somewhere that's not on the path or in ocaml's default lib directory, so allow users to override $CFG_LLVM_CONFIG with an environment variable and look up lib and binary paths through calls to llvm-config. | ||||
| * | Fix argv.rs under the LLVM compiler. | Jeffrey Yasskin | 2010-07-18 | 1 | -1/+0 |
| | | | | | | | The call to rust_start was assuming that all rust main() functions have the same signature, but the compiler doesn't actually canonicalize them. So instead just match the C signature of rust_start, and cast. | ||||
| * | Fix the LLVM ocamlopt build. | Jeffrey Yasskin | 2010-07-18 | 1 | -2/+2 |
| | | |||||
| * | Work around auto-dereference crash in rustboot. | Jeffrey Yasskin | 2010-07-18 | 1 | -1/+0 |
| | | |||||
| * | Un-XFAIL a couple tests fixed by pcwalton's new typechecker. Closes #50. ↵ | Graydon Hoare | 2010-07-16 | 1 | -2/+0 |
| | | | | | Closes #51. | ||||
| * | Un-XFAIL generic-fn-twice.rs, issue 93 | Patrick Walton | 2010-07-16 | 1 | -1/+0 |
| | | |||||
| * | Feed the correct return type to the typechecker when typechecking objects, ↵ | Patrick Walton | 2010-07-16 | 1 | -0/+1 |
| | | | | | and add a testcase. | ||||
| * | XFAIL foreach-nested.rs and foreach-nested-2.rs under LLVM | Patrick Walton | 2010-07-16 | 1 | -0/+2 |
| | | |||||
| * | XFAIL the new destructor tests; collided with new typechecker; add test for ↵ | Graydon Hoare | 2010-07-15 | 1 | -0/+3 |
| | | | | | issue #109. | ||||
| * | Implement the "simple typechecker", which avoids HM inference | Patrick Walton | 2010-07-15 | 1 | -1/+3 |
| | | |||||
| * | XFAIL jyasskin's new tests under LLVM backend. | Graydon Hoare | 2010-07-15 | 1 | -0/+2 |
| | | |||||
| * | XFAIL use-import-export.rs on the LLVM backend. | Graydon Hoare | 2010-07-15 | 1 | -0/+1 |
| | | |||||
| * | Fix support for profiling the compiler. | Graydon Hoare | 2010-07-14 | 1 | -4/+6 |
| | | |||||
| * | Fix LLVM-detection logic to notice when we have, or don't have, the ocaml ↵ | Graydon Hoare | 2010-07-13 | 1 | -6/+6 |
| | | | | | bindings. Also XFAIL missed new case. Closes #102. | ||||
| * | Fix post-stmt drop calculations. Closes #106. | Graydon Hoare | 2010-07-11 | 1 | -0/+1 |
| | | |||||
| * | Add a boot/README file explaining rustboot's organization a bit. | Graydon Hoare | 2010-07-11 | 1 | -1/+1 |
| | | |||||
| * | Disable llvm-config logic due to optimistic assumption of "having the ocaml ↵ | Graydon Hoare | 2010-07-10 | 1 | -1/+9 |
| | | | | | bindings". Also add NO_LLVM override make-var, for good measure. | ||||