about summary refs log tree commit diff
path: root/src
AgeCommit message (Expand)AuthorLines
2011-12-01stdlib: Implement some preliminary libuv bindingsBrian Anderson-2/+283
2011-12-01Fix mistake in last use passMarijn Haverbeke-5/+12
2011-11-30rt: Reorganize stack growth codeBrian Anderson-72/+75
2011-11-30rt: Remove redundant defs of RUST_DEL_STACKBrian Anderson-2/+0
2011-11-30rt: Remove the stack pointer field of stk_segBrian Anderson-42/+9
2011-11-30rt: Remove upcall_alloc_c_stack/call_c_stack, et. al.Brian Anderson-129/+0
2011-11-30rt: Rewrite 32-bit __morestack to use the shim upcallBrian Anderson-85/+63
2011-11-30adjust and un-xfailNiko Matsakis-17/+21
2011-11-30Register snapshotsBrian Anderson-0/+7
2011-11-30xfail run-pass/bind-native-printfBrian Anderson-0/+1
2011-11-30Box ast::path valuesMarijn Haverbeke-103/+102
2011-11-30Fix typo in stdlib docs.Lindsey Kuper-1/+1
2011-11-29rt: Request the correct number of bytes on the C stackBrian Anderson-1/+1
2011-11-29rt: Delete the entire stack chain on task destructionBrian Anderson-2/+6
2011-11-29rt: Conditionalize out the 32-bit __morestack for everything but LinuxBrian Anderson-0/+7
2011-11-29rt: Fix the name of the linux macro in x86_64/morestack.SBrian Anderson-1/+1
2011-11-29rt: Fix calculation of stack args location in x86_64/morestack.SBrian Anderson-3/+49
2011-11-29rt: Fix i386/morestack.S for static linkingBrian Anderson-2/+3
2011-11-29make check-fast workNiko Matsakis-2/+2
2011-11-29tweak to get windows test-running correctNiko Matsakis-1/+2
2011-11-29fix to new model where triple is explicitNiko Matsakis-5/+5
2011-11-29update snapshot scriptsNiko Matsakis-21/+20
2011-11-29when type checking still pass in the rustc args from cmd lineNiko Matsakis-6/+2
2011-11-29update io test to use tmp directory, and update configure to create itNiko Matsakis-1/+1
2011-11-29extra whitespaceNiko Matsakis-1/+1
2011-11-29fix bug in shape concerning size of tag variantNiko Matsakis-7/+47
2011-11-29basic builds functionNiko Matsakis-2/+4
2011-11-29Add --stack-growth to the morestack test compile flagsBrian Anderson-0/+3
2011-11-28rt: Make 64-bit __morestack grow and shrink properlyBrian Anderson-7/+54
2011-11-28rt: Remove a FIXME frome x86_64/morestack.SBrian Anderson-1/+0
2011-11-28rt: Get 64-bit Linux __morestack allocating new stacksBrian Anderson-5/+10
2011-11-28rustc: Link in libmorestack.a when --stack-growthBrian Anderson-0/+5
2011-11-28rt: Set hidden visibility on __morestackBrian Anderson-0/+18
2011-11-28rt: Rename L$bail to .L$bail in i386/morestack.SBrian Anderson-2/+2
2011-11-28build: Stop linking morestack.S to rtBrian Anderson-1/+0
2011-11-28rt: Implement part of the 64-bit __morestackBrian Anderson-20/+57
2011-11-28Ignore some should_fail tests on win32Brian Anderson-0/+2
2011-11-28c_vec: add testsJoshua Wise-0/+58
2011-11-28c_vec: Remove the mutable cast be forcing the pointer to be mutable throughou...Joshua Wise-6/+7
2011-11-28Add c_vec library to std.Joshua Wise-1/+100
2011-11-28ptr: Add mut_offset, to be able to calculate an offset on mutable pointers.Joshua Wise-0/+10
2011-11-27rt: Implement record_sp for 64-bit linuxBrian Anderson-0/+5
2011-11-25Register snapshotsBrian Anderson-0/+5
2011-11-25rustc: Fall back to intrinsics.ll if we can't parse the bcBrian Anderson-4/+61
2011-11-24Comment-out some math tests that produce different results on win32Brian Anderson-7/+9
2011-11-24std: math: renaming and documentation fixesStefan Plantikow-8/+35
2011-11-24std: factored f32 and f64 out from mathStefan Plantikow-77/+289
2011-11-24std: added missing calls to math; covers C95 completely now, includes testsStefan Plantikow-31/+336
2011-11-24std: math now declares libm dependencies as pureStefan Plantikow-60/+60
2011-11-24std: rewrote math to support most C95 libmath calls on f32, f64 and floatStefan Plantikow-64/+305