about summary refs log tree commit diff
path: root/src/test/codegen
diff options
context:
space:
mode:
authorJonas Schievink <jonasschievink@gmail.com>2021-02-06 17:01:52 +0100
committerGitHub <noreply@github.com>2021-02-06 17:01:52 +0100
commit11e7897eae7aaee59c257e85f12d2cfbcd8ebd97 (patch)
tree52bad551569f9af1725e432990376b99db148699 /src/test/codegen
parente143159e752cb39bd92db5fc4a7904805a1ecd03 (diff)
parent243755a13e78ebe7a3bb5ba797dd3e2fd04dd2dd (diff)
downloadrust-11e7897eae7aaee59c257e85f12d2cfbcd8ebd97.tar.gz
rust-11e7897eae7aaee59c257e85f12d2cfbcd8ebd97.zip
Rollup merge of #81812 - nagisa:nagisa/escape-the-escape-hatch, r=Amanieu
Add a test for escaping LLVMisms in inline asm

We escape certain LLVM-specific features when passing the inline
assembly string to the LLVM. Until now, however, there was no test
making sure this behaviour stays intact. This commit adds such a test!

r? `@Amanieu`
cc `@joshtriplett`
Diffstat (limited to 'src/test/codegen')
-rw-r--r--src/test/codegen/asm-sanitize-llvm.rs32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/test/codegen/asm-sanitize-llvm.rs b/src/test/codegen/asm-sanitize-llvm.rs
new file mode 100644
index 00000000000..fe09caa6973
--- /dev/null
+++ b/src/test/codegen/asm-sanitize-llvm.rs
@@ -0,0 +1,32 @@
+// FIXME(nagisa): remove the flags here once all targets support `asm!`.
+// compile-flags: --target x86_64-unknown-linux-gnu
+
+// Verify we sanitize the special tokens for the LLVM inline-assembly, ensuring people won't
+// inadvertently rely on the LLVM-specific syntax and features.
+#![no_core]
+#![feature(no_core, lang_items, rustc_attrs)]
+#![crate_type = "rlib"]
+
+#[rustc_builtin_macro]
+macro_rules! asm {
+    () => {};
+}
+
+#[lang = "sized"]
+trait Sized {}
+#[lang = "copy"]
+trait Copy {}
+
+pub unsafe fn we_escape_dollar_signs() {
+    // CHECK: call void asm sideeffect alignstack inteldialect "banana$$:"
+    asm!(
+        r"banana$:",
+    )
+}
+
+pub unsafe fn we_escape_escapes_too() {
+    // CHECK: call void asm sideeffect alignstack inteldialect "banana\{{(\\|5C)}}36:"
+    asm!(
+        r"banana\36:",
+    )
+}