[AArch64] Set the minimum alignment on code segments
authorJiong Wang <jiong.wang@arm.com>
Tue, 10 Mar 2015 11:20:57 +0000 (11:20 +0000)
committerJiong Wang <jiong.wang@arm.com>
Tue, 10 Mar 2015 11:22:15 +0000 (11:22 +0000)
gas/
2015-03-10  Matthew Wahab  <matthew.wahab@arm.com>

* config/tc-aarch64.c (mapping_state): Set minimum alignment for
code sections.

gas/testsuite
2015-03-10  Matthew Wahab  <matthew.wahab@arm.com>

* gas/aarch64/codealign.d: Add test for code section alignment.
* gas/aarch64/codealign.s: New file.

gas/ChangeLog
gas/config/tc-aarch64.c
gas/testsuite/ChangeLog
gas/testsuite/gas/aarch64/codealign.d [new file with mode: 0644]
gas/testsuite/gas/aarch64/codealign.s [new file with mode: 0644]

index 6738d51c2ba2a28973bd380a4eca1b1b6f358bd8..e52702cdf846a15b8f0c8baf6ed185c9d4cb23e2 100644 (file)
@@ -1,3 +1,8 @@
+2015-03-10  Matthew Wahab  <matthew.wahab@arm.com>
+
+       * config/tc-aarch64.c (mapping_state): Set minimum alignment for
+       code sections.
+
 2015-03-10  Nick Clifton  <nickc@redhat.com>
 
        PR gas/17852
index 9179fc617f46fe41df3aa5228432e38d261425df..77701c6d1dfba6af84f4ed13a5776610a7926fe5 100644 (file)
@@ -1478,7 +1478,14 @@ mapping_state (enum mstate state)
     /* The mapping symbol has already been emitted.
        There is nothing else to do.  */
     return;
-  else if (TRANSITION (MAP_UNDEFINED, MAP_DATA))
+
+  if (state == MAP_INSN)
+    /* AArch64 instructions require 4-byte alignment.  When emitting
+       instructions into any section, record the appropriate section
+       alignment.  */
+    record_alignment (now_seg, 2);
+
+  if (TRANSITION (MAP_UNDEFINED, MAP_DATA))
     /* This case will be evaluated later in the next else.  */
     return;
   else if (TRANSITION (MAP_UNDEFINED, MAP_INSN))
index fb6e5920ed9a1114740bae30b1a334f884cf8965..004c6423f2afd48e625a1363df5921d8b1179ad6 100644 (file)
@@ -1,3 +1,8 @@
+2015-03-10  Matthew Wahab  <matthew.wahab@arm.com>
+
+       * gas/aarch64/codealign.d: Add test for code section alignment.
+       * gas/aarch64/codealign.s: New file.
+
 2015-03-04  Richard Sandiford  <richard.sandiford@arm.com>
 
        PR gas/17843
diff --git a/gas/testsuite/gas/aarch64/codealign.d b/gas/testsuite/gas/aarch64/codealign.d
new file mode 100644 (file)
index 0000000..a032b83
--- /dev/null
@@ -0,0 +1,16 @@
+#objdump: --section-headers
+# Minimum code alignment should be set.
+# This test is only valid on ELF based ports.
+#not-target: *-*-*coff *-*-pe *-*-wince *-*-*aout* *-*-netbsd *-*-riscix*
+
+.*: +file format.*aarch64.*
+
+Sections:
+Idx Name          Size      VMA               LMA               File off  Algn
+  0 \.text         .*  .*  .*  .*  2\*\*2
+                  .*CODE.*
+  1 \.data         .*  .*  .* .*  2\*\*0
+                  .*DATA.*
+  2 \.bss          .*  .*  .*  .*  2\*\*0
+.*
+
diff --git a/gas/testsuite/gas/aarch64/codealign.s b/gas/testsuite/gas/aarch64/codealign.s
new file mode 100644 (file)
index 0000000..b80a6d9
--- /dev/null
@@ -0,0 +1,2 @@
+.text
+  nop
This page took 0.031147 seconds and 4 git commands to generate.