about summary refs log tree commit diff
path: root/src/rt/arch/x86_64
AgeCommit message (Collapse)AuthorLines
2011-12-18rt: Add lots of documentation to __morestackBrian Anderson-23/+23
2011-12-17rt: Use a DWARF CFI scheme that works on mac in __morestackBrian Anderson-11/+3
2011-12-16rt: Fix saved address of unwinding %rsp in __morestackBrian Anderson-1/+1
I haven't thought too deeply about this, but I think I was telling the unwinder to use the stack pointer for the wrong frame when unwinding. Not sure how that could have worked at all, but this results in the correct alignment for cleanups.
2011-12-16rt: Insert stack alignment checks into upcallsBrian Anderson-0/+10
2011-12-12rt: Remove some duplicated code from 64-bit __morestackBrian Anderson-12/+0
2011-12-12rt: Make unwinding through __morestack work on macBrian Anderson-3/+1
Had to bump the min stack size in some of the tests from 256 bytes to 1024 bytes. Not sure why yet.
2011-12-12rt: Write CFI instructions that (might) work on mac in __morestackBrian Anderson-0/+14
The DW_CFA_val_offset_sf instruction doesn't seem to work on mac, even after implementing it in the llvm-mc assembler, so now I'm looking for a different way to communicate the stack pointer adjustment to the unwinder.
2011-12-11rt: Make unwinding through __morestack work on macBrian Anderson-12/+0
Had to bump the min stack size in some of the tests from 256 bytes to 1024 bytes. Not sure why yet.
2011-12-11rt: Write CFI instructions that (might) work on mac in __morestackBrian Anderson-4/+19
The DW_CFA_val_offset_sf instruction doesn't seem to work on mac, even after implementing it in the llvm-mc assembler, so now I'm looking for a different way to communicate the stack pointer adjustment to the unwinder.
2011-12-11rt: Add DWARF CFI info to asm_call_on_stackBrian Anderson-7/+27
This will allow the unwinder to unwind this function so we can call upcall_fail on the C stack.
2011-12-10build: Use llvm-mc as our assemblerBrian Anderson-4/+6
LLVM's assembler understands .cfi pseudo-ops on the mac, which we need in order to generate frames that can be DWARF-unwound
2011-12-06rt: Various tweaks to make __morestack unwinding work on linuxBrian Anderson-0/+11
When unwinding through __morestack the stack limit in the TLS is invalidated and must be reset. Instead of actually landing at __morestack we're just going to make all our Rust landing pads call upcall_reset_stack_limit, which will find the stack segment that corresponds to the current stack pointer and put the limit in the TLS. Also massively expand the stack segment red zone to make more room for the dynamic linker. Will fix in the future.
2011-12-06Make valgrind usage more consistent and less error prone.Austin Seipp-5/+1
I was still having issues with the build system somehow getting confused as to which set of valgrind headers to use when compiling rt. This commit moves all the valgrind headers into their own directory under rt and makes the usage more consistent. The compiler is now passed the -DNVALGRIND flag when valgrind is not installed, as opposed to passing -DHAVE_VALGRIND. We also pass -I src/rt to the compiler when building rt so you can more easily import what you want. I also cleaned up some erroneous #includes along the way. It should be safe to always just import the local valgrind headers and use them without question. NVALGRIND turns the operations to no-ops when it is active, and the build and tests run cleanly with or without.
2011-12-05rt: Use an out pointer for rust_new_stackBrian Anderson-1/+5
upcall_call_shim_on_c_stack does not handle return values
2011-12-02rt: Fix __morestack prologue on x86_64 macBrian Anderson-1/+1
2011-12-01rt: Fix 64-bit linux __morestackBrian Anderson-2/+26
2011-12-01rt: Implement __morestack for 64-bit mac. Doesn't unwind yetBrian Anderson-10/+5
2011-12-01rt: Implement record_sp for 64-bit macBrian Anderson-1/+8
2011-11-30rt: Reorganize stack growth codeBrian Anderson-12/+12
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-14/+3
2011-11-30rt: Remove upcall_alloc_c_stack/call_c_stack, et. al.Brian Anderson-68/+0
We are using upcall_call_shim_on_c_stack now
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/+4
2011-11-28rt: Make 64-bit __morestack grow and shrink properlyBrian Anderson-6/+47
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-28rt: Set hidden visibility on __morestackBrian Anderson-0/+9
Each crate will have its own copy of this function, which should not be exported.
2011-11-28rt: Implement part of the 64-bit __morestackBrian Anderson-20/+42
2011-11-27rt: Implement record_sp for 64-bit linuxBrian Anderson-0/+5
2011-11-22rt: Add x86_64 record_sp stubBrian Anderson-0/+12
2011-11-18get pure wrappers approach runningNiko Matsakis-0/+22
2011-11-17add an extra underscoreNiko Matsakis-1/+1
2011-11-17rt: Make morestack link on x86_64. Still utterly brokenBrian Anderson-4/+10
2011-11-16Various fixes for x86_64 on linuxBrian Anderson-1/+1
Configure LLVM correctly, use the right data layout, add the readlink function back, fix C constants, etc.
2011-11-16add shim upcall funcNiko Matsakis-0/+16
2011-11-09hack around the problem that x86_64 expects first few args in regs.Niko Matsakis-3/+38
call on c-stack expects all data to be delivered on the stack.
2011-11-09use uint64_t when adjusting stack ptrNiko Matsakis-2/+2
2011-11-08correct stack alignmentNiko Matsakis-59/+58
2011-11-08fix bug in loading argument regsNiko Matsakis-2/+2
2011-11-08correct calling convention for x86_64Niko Matsakis-66/+107
2011-11-08fix alignment of xmm register storageNiko Matsakis-17/+20
2011-11-02add required symbolsNiko Matsakis-0/+8
2011-11-02hastily port so we don't fail to buildNiko Matsakis-0/+52
2011-11-02start going back to an i386 buildNiko Matsakis-36/+38
2011-11-02hack around on makefiles trying to get a 64 bit buildNiko Matsakis-0/+214
right now there are many temporary hacks, search for NDM to find them