about summary refs log tree commit diff
path: root/src/test/codegen/stack-probes.rs
AgeCommit message (Collapse)AuthorLines
2022-09-26Enable inline stack probes on PowerPC and SystemZJosh Stone-22/+0
2021-04-29Remove tests introduced or cahnged by PR #77885, which is reverted in this PR.Felix S. Klock II-2/+0
2021-01-14Use probe-stack=inline-asm in LLVM 11+Erik Desjardins-1/+2
2020-06-04test: codegen: skip tests inappropriate for riscv64Tom Eccles-0/+1
2018-12-25Remove licensesMark Rousskov-10/+0
2018-07-09bump minimum LLVM version to 5.0gnzlbg-1/+0
2018-06-17test: Ignore some problematic tests on powerpc and powerpc64*John Paul Adrian Glaubitz-0/+2
2018-06-04test: Ignore some problematic tests on sparc and sparc64John Paul Adrian Glaubitz-0/+2
2018-03-29Ignore stack-probes tests on powerpc/s390x tooJosh Stone-0/+1
We only support stack probes on x86 and x86_64. Other arches are already ignored.
2018-03-09test: ignore stack probe tests on mips*James Cowgill-0/+2
2018-03-09test: remove duplicate ignore-aarch64 from stack-probes testJames Cowgill-1/+0
2018-01-31Enable stack-probe tests with system LLVM >= 5.0Josh Stone-1/+1
2017-07-24Add a disabled builder for aarch64 emulated testsAlex Crichton-0/+1
This commit adds a disabled builder which will run all tests for the standard library for aarch64 in a QEMU instance. Once we get enough capacity to run this on Travis this can be used to boost our platform coverage of AArch64
2017-07-21Ignore stack probe tests on AArch64Mátyás Mustoha-0/+1
2017-07-18powerpc: Ignore the stack-probes testLuca Barbato-0/+1
2017-07-06rustc: Implement stack probes for x86Alex Crichton-0/+24
This commit implements stack probes on x86/x86_64 using the freshly landed support upstream in LLVM. The purpose of stack probes here are to guarantee a segfault on stack overflow rather than having a chance of running over the guard page already present on all threads by accident. At this time there's no support for any other architecture because LLVM itself does not have support for other architectures.