Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(260)

Unified Diff: test/MC/X86/AlignedBundling/nacl-call-auto-align-to-end.s

Issue 647443005: Change usage of naclcall and nacljmp pseudo-instructions to match x86 gas (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-llvm.git@master
Patch Set: remove NACL_call32d and auto-align bare call Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: test/MC/X86/AlignedBundling/nacl-call-auto-align-to-end.s
diff --git a/test/MC/X86/AlignedBundling/nacl-call-auto-align-to-end.s b/test/MC/X86/AlignedBundling/nacl-call-auto-align-to-end.s
new file mode 100644
index 0000000000000000000000000000000000000000..dd284c33f2112b432b257b7bc1cd381317da3867
--- /dev/null
+++ b/test/MC/X86/AlignedBundling/nacl-call-auto-align-to-end.s
@@ -0,0 +1,47 @@
+# RUN: llvm-mc -filetype=obj -triple i686-unknown-nacl %s -o - \
+# RUN: | llvm-objdump -disassemble -no-show-raw-insn - | FileCheck %s
+
+# RUN: llvm-mc -filetype=obj -triple x86_64-unknown-nacl \
+# RUN: -sfi-hide-sandbox-base=false %s -o - \
+# RUN: | llvm-objdump -disassemble -no-show-raw-insn - | FileCheck %s
+
+# RUN: llvm-mc -filetype=obj -triple x86_64-unknown-nacl \
+# RUN: -sfi-hide-sandbox-base=true %s -o - \
+# RUN: | llvm-objdump -disassemble -no-show-raw-insn - \
+# RUN: | FileCheck --check-prefix=HIDE %s
+
+# Test that bare call instructions in NaCl are automatically aligned to the end
+# of a bundle without the need for .bundle_align directives, to match gas's
+# behavior.
+ .text
+foo:
+# Each of these mov instructions is 4 bytes long.
+ movsd %xmm1,%xmm2
+ movsd %xmm1,%xmm2
+ movsd %xmm1,%xmm2
+ movsd %xmm1,%xmm2
+# Each of these movs is 5 bytes long.
+ movl $1, %eax
+ movl $1, %eax
+ call bar
+# To align this call to a bundle end, we need a 1-byte NOP.
+# CHECK: 1a: nop
+# CHECK-NEXT: 1b: call
+
+ movsd %xmm1,%xmm2
+ movsd %xmm1,%xmm2
+ movsd %xmm1,%xmm2
+ movsd %xmm1,%xmm2
+ movl $1, %eax
+ movl $1, %eax
+ movl $1, %eax
+ call bar
+# Here we have to pad until the end of the *next* boundary because
+# otherwise the call crosses a boundary.
+# The last byte of the bundle has to be a 1-byte nop so it doesn't
+# cross the boundary itself.
+# CHECK: 3f: nop
+# The remaining nops can be implemented any way the compiler wants.
+# CHECK: 5b: call
+
+# HIDE-NOT: call

Powered by Google App Engine
This is Rietveld 408576698