Commit Graph

  • 3bc263f102 Improve makefile to try to avoid wedging on failure-to-dep lib/std.rc Graydon Hoare 2010-06-29 10:25:25 -0700
  • 0d6aaec493 Work-around and un-XFAIL generic-obj.rs test. The problem uncovered in the original XFAIL is more generally that of issue #92. Roy Frostig 2010-06-29 00:48:49 -0700
  • 023e5af639 The few and proud isolated bits from stdlib-work so far that don't break everything. Note util.rs hasn't yet been declared mod in the std crate. Don't do that yet, as it breaks make check. Roy Frostig 2010-06-28 23:18:51 -0700
  • d94f0e2498 Add a NO_VALGRIND override mechanism to makefile, if you want day-to-day builds to cycle faster on linux. Graydon Hoare 2010-06-28 22:29:17 -0700
  • d5ff6e133c Add to generic-obj.rs testcase a method that takes an argument of the object type-param type. XFAIL the test since it no longer passes. Roy Frostig 2010-06-28 21:45:48 -0700
  • 5b5b334c24 Testcase (XFAILed) for fn item given as lval. Roy Frostig 2010-06-28 21:18:09 -0700
  • 329a65530f Canonicalize hashtables after running them through htab_map. Closes #77. Graydon Hoare 2010-06-28 19:24:04 -0700
  • bd059a354d Whitespace. Graydon Hoare 2010-06-28 19:21:09 -0700
  • 5abc483d9a Move more of the GC logic into the runtime. Graydon Hoare 2010-06-28 18:53:16 -0700
  • a27cbd4ee8 Testcase (XFAILed) for mutable alias vec weirdness. Roy Frostig 2010-06-28 16:36:24 -0700
  • 66d313d365 Teach the typechecker that uints are integral types. Closes #88. Roy Frostig 2010-06-28 15:27:05 -0700
  • d608c09168 Some fixme-to-issue housekeeping. Graydon Hoare 2010-06-28 09:39:43 -0700
  • e1f6749f9a Once more with feeling. Closes #13. Graydon Hoare 2010-06-27 20:54:33 -0700
  • 8815c02005 Previous commit closes #13. Trying to convince github of that fact automagically. Graydon Hoare 2010-06-27 20:53:07 -0700
  • 1316312c0c Only translate or dwarf-emit items or stubs locally defined or used. Avoids instantiating O(sizeof(standard-library)) worth of imports stubs on each 'use std'. Closes issue 13. Graydon Hoare 2010-06-27 20:48:28 -0700
  • 7045526a3e Change slot_mem_ctrl to classify vec[state] as GC mem. Breaking / XFAILing mutable-vec-drop.rs test. Graydon Hoare 2010-06-27 13:53:23 -0700
  • fb3e2fa4bf Encode tag and iso types at dwarf level. Can't decode them yet. Graydon Hoare 2010-06-27 13:48:25 -0700
  • 7ea416f4c3 Add callable gc method exposed to user code, use it in mlist-cycle.rs test (still not quite working; some memory corruption in the recursive tag constructors, not the GC) Graydon Hoare 2010-06-25 23:57:30 -0700
  • 9236ad2846 Further attempts to convince mem_ctrl to be sane. Graydon Hoare 2010-06-25 23:55:36 -0700
  • 50e96414d2 Fix register-use bugs in sweep pass, factor sweep pass out and call twice for separate sever/free phases. Graydon Hoare 2010-06-25 23:07:34 -0700
  • 90eaaf666b Improve sever_slot logging. Graydon Hoare 2010-06-25 23:03:06 -0700
  • 49ac5e6312 Fix copy-paste error in logging function. Graydon Hoare 2010-06-25 23:02:19 -0700
  • 37426e42cf Add sever-glue, for missing first stage of sweep. Graydon Hoare 2010-06-25 21:57:46 -0700
  • 0cf3c2ad93 Pass type parameters to free function called from sweep loop. Graydon Hoare 2010-06-25 21:20:32 -0700
  • 3718055276 Align emitted DATA_* elements -- tydescs in particular -- to 16 byte boundaries, so we can get our tag bit freed up. Graydon Hoare 2010-06-25 20:47:16 -0700
  • dd2716f56c Fix bad register use in GC sweep pass. Graydon Hoare 2010-06-25 20:46:11 -0700
  • 968ec14527 Fix marking logic. Graydon Hoare 2010-06-25 19:56:29 -0700
  • 34dc7053eb Fix over-conservatism in alias analysis. Graydon Hoare 2010-06-25 19:55:40 -0700
  • c56a729ff1 Remove obsolete comment. Graydon Hoare 2010-06-25 17:32:35 -0700
  • eb7807c4fe I hear actually loading the next pointer into the right register helps when walking a list. Graydon Hoare 2010-06-25 17:31:08 -0700
  • d601b357ec Debug GC glue enough that marking passes. Graydon Hoare 2010-06-25 16:59:29 -0700
  • 2a2474d497 Update comment to reflect slightly-improved GC situation. Graydon Hoare 2010-06-25 16:56:25 -0700
  • eed5c0aa24 Add rust_task::gc(size_t args) method that drops us back into the GC glue. Graydon Hoare 2010-06-25 16:54:03 -0700
  • 67d1f0a9aa Emit gc glue and rearrange crate glue offsets slightly to have a regular order. Graydon Hoare 2010-06-25 15:43:55 -0700
  • 2e3fa5bd68 Return at end of GC glue. Graydon Hoare 2010-06-25 15:43:03 -0700
  • a9c639ec8a Fix forgotten llvm xfail in Makefile. Graydon Hoare 2010-06-25 15:42:24 -0700
  • c06ea8f944 Add test of recursive object types (ha, work by default) and fix effect-walker bug revealed by it. Graydon Hoare 2010-06-25 12:15:40 -0700
  • 422b8a6be4 Unlink (doubly) gc chain on free. Graydon Hoare 2010-06-25 11:48:17 -0700
  • e875993471 Doubly-link gc chain on alloc. Graydon Hoare 2010-06-25 11:00:23 -0700
  • 63b5e18207 Enlarge gc header to doubly-link the gc chain. Graydon Hoare 2010-06-25 09:00:08 -0700
  • 5dfe101e51 Revert "Add intrinsic calling convention." Isn't going to work. Graydon Hoare 2010-06-25 01:30:23 -0700
  • 287d69ddac Sketch out gc glue. Graydon Hoare 2010-06-25 01:29:51 -0700
  • 85a701c8f6 Add testcases for item name conflict at the same path level. Roy Frostig 2010-06-25 01:26:44 -0700
  • 241305caab Resolve and typecheck patterns in pattern alt redux. This time featuring way more correctness. Roy Frostig 2010-06-25 00:47:23 -0700
  • 0d9565a4c1 Rearrange pexp-custom stuff a bit. Graydon Hoare 2010-06-25 00:00:31 -0700
  • 72c6c60d80 Add intrinsic calling convention. Graydon Hoare 2010-06-24 19:21:40 -0700
  • c483808e0f Factor out some trans bits. Graydon Hoare 2010-06-24 19:21:15 -0700
  • 1c60be2f32 Fix bad output-slot logic in tag constructors. Graydon Hoare 2010-06-24 18:25:10 -0700
  • bcf29b882a A couple new tests for broken parts of the typechecker, XFAILed. Graydon Hoare 2010-06-24 16:57:00 -0700
  • 261d543920 Ignore TAGS. Graydon Hoare 2010-06-24 16:51:48 -0700
  • 24d5ff75c3 Fix output-slot handling for real. It's been broken for a long time. Graydon Hoare 2010-06-24 16:19:55 -0700
  • d3c0762ff8 A couple more ignorable files. Graydon Hoare 2010-06-24 16:19:45 -0700
  • af44ec2856 Issue 24, drop output slot when not initializing. Un-XFAIL generic-tag.rs. Add test for output slot modes with several broken cases. Graydon Hoare 2010-06-24 13:32:59 -0700
  • 69a34503f4 Remove redundant copy of comment. Graydon Hoare 2010-06-24 11:18:02 -0700
  • 0364a801bb Clean up trans_alt_tag to use slots, not assume interior words. Also remove record-based destructuring (hard on eyes). Add execution parts to generic-tag-alt.rs and un-XFAIL it. Graydon Hoare 2010-06-24 11:15:22 -0700
  • 25eb1fd3c9 Add fmt module, move out some common format helpers, add instruction-selection tracing and make selection use queues rather than list refs. Graydon Hoare 2010-06-24 10:34:47 -0700
  • 4a1f86ccd7 Merge timer loop functions, fix win32 build broken by logger change. Graydon Hoare 2010-06-24 08:52:52 -0700
  • 0016473117 Add more ignorable build artifacts. Graydon Hoare 2010-06-24 08:45:28 -0700
  • 935442babc Fix hg dependency in testsuite. Graydon Hoare 2010-06-24 08:44:14 -0700
  • 1f3cff91f6 Remove bogus FIXME. Roy Frostig 2010-06-24 08:23:17 -0700
  • bc286c7f2c Resolve and typecheck patterns in pattern alt. Roy Frostig 2010-06-24 08:13:32 -0700
  • f038f4d533 Update README to point to github, test email notification. Graydon Hoare 2010-06-23 21:11:10 -0700
  • d6b7c96c3e Populate tree. Graydon Hoare 2010-06-23 21:03:09 -0700
  • c01efc669f Initial git commit. Graydon Hoare 2010-06-16 14:30:45 -0700