summary refs log tree commit diff
path: root/src/rt/arch/x86_64/context.h
AgeCommit message (Collapse)AuthorLines
2012-02-09rt: Use rust_task_thread's C-stack pool for native callsBrian Anderson-6/+0
2012-02-09rt: Rename call_shim_on_c_stack to call_and_change_stacksBrian Anderson-1/+1
2012-02-09rt: Remove unused context functionsBrian Anderson-14/+0
2012-01-06fix alignment of registers structureNiko Matsakis-6/+3
2012-01-01forgot to add parenthesesJyun-Yan You-1/+1
2012-01-01freebsd supportUser Jyyou-0/+4
2011-12-19rt: Rename asm_call_on_stack to __morestackBrian Anderson-2/+2
Newer gdb's will backtrace through functions named __morestack even if they change the stack.
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-11-18get pure wrappers approach runningNiko Matsakis-0/+6
2011-11-09use uint64_t when adjusting stack ptrNiko Matsakis-2/+2
2011-11-08correct stack alignmentNiko Matsakis-2/+2
2011-11-08correct calling convention for x86_64Niko Matsakis-27/+26
2011-11-08fix alignment of xmm register storageNiko Matsakis-2/+5
2011-11-02start going back to an i386 buildNiko Matsakis-1/+3
2011-11-02hack around on makefiles trying to get a 64 bit buildNiko Matsakis-0/+56
right now there are many temporary hacks, search for NDM to find them