[ARM]: Don't tail-pad over-aligned functions to the alignment boundary.
authorRichard Earnshaw <Richard.Earnshaw@arm.com>
Fri, 24 Apr 2015 14:51:49 +0000 (15:51 +0100)
committerRichard Earnshaw <Richard.Earnshaw@arm.com>
Fri, 24 Apr 2015 14:54:39 +0000 (15:54 +0100)
2015-04/24  Richard Earnshaw  <rearnsha@arm.com>

gas/
* config/tc-arm.h (arm_min): New function.
(SUB_SEGMENT_ALIGN): Define.

gas/testsuite/
* gas/arm/align64.d: Delete trailing padding NOPs.

ld/testsuite/
* ld-arm/armthumb-lib.d: Regenerate expected output.
* ld-arm/armthumb-lib.d: Likewise.
* ld-arm/armthumb-lib.sym: Likewise.
* ld-arm/cortex-a8-fix-b-rel-arm.d: Likewise.
* ld-arm/cortex-a8-fix-b-rel-thumb.d: Likewise.
* ld-arm/cortex-a8-fix-b.d: Likewise.
* ld-arm/cortex-a8-fix-bcc-rel-thumb.d: Likewise.
* ld-arm/cortex-a8-fix-bcc.d: Likewise.
* ld-arm/cortex-a8-fix-bl-rel-arm.d: Likewise.
* ld-arm/cortex-a8-fix-bl-rel-plt.d: Likewise.
* ld-arm/cortex-a8-fix-bl-rel-thumb.d: Likewise.
* ld-arm/cortex-a8-fix-bl.d: Likewise.
* ld-arm/cortex-a8-fix-blx-bcond.d: Likewise.
* ld-arm/cortex-a8-fix-blx-rel-arm.d: Likewise.
* ld-arm/cortex-a8-fix-blx-rel-thumb.d: Likewise.
* ld-arm/cortex-a8-fix-blx.d: Likewise.
* ld-arm/cortex-a8-fix-hdr.d: Likewise.
* ld-arm/farcall-mixed-app-v5.d: Likewise.
* ld-arm/farcall-mixed-app.d: Likewise.
* ld-arm/farcall-mixed-lib-v4t.d: Likewise.
* ld-arm/farcall-mixed-lib.d: Likewise.
* ld-arm/mixed-app-v5.d: Likewise.
* ld-arm/mixed-app.d: Likewise.
* ld-arm/mixed-lib.d: Likewise.

28 files changed:
gas/ChangeLog
gas/config/tc-arm.h
gas/testsuite/ChangeLog
gas/testsuite/gas/arm/align64.d
ld/testsuite/ChangeLog
ld/testsuite/ld-arm/armthumb-lib.d
ld/testsuite/ld-arm/armthumb-lib.sym
ld/testsuite/ld-arm/cortex-a8-fix-b-rel-arm.d
ld/testsuite/ld-arm/cortex-a8-fix-b-rel-thumb.d
ld/testsuite/ld-arm/cortex-a8-fix-b.d
ld/testsuite/ld-arm/cortex-a8-fix-bcc-rel-thumb.d
ld/testsuite/ld-arm/cortex-a8-fix-bcc.d
ld/testsuite/ld-arm/cortex-a8-fix-bl-rel-arm.d
ld/testsuite/ld-arm/cortex-a8-fix-bl-rel-plt.d
ld/testsuite/ld-arm/cortex-a8-fix-bl-rel-thumb.d
ld/testsuite/ld-arm/cortex-a8-fix-bl.d
ld/testsuite/ld-arm/cortex-a8-fix-blx-bcond.d
ld/testsuite/ld-arm/cortex-a8-fix-blx-rel-arm.d
ld/testsuite/ld-arm/cortex-a8-fix-blx-rel-thumb.d
ld/testsuite/ld-arm/cortex-a8-fix-blx.d
ld/testsuite/ld-arm/cortex-a8-fix-hdr.d
ld/testsuite/ld-arm/farcall-mixed-app-v5.d
ld/testsuite/ld-arm/farcall-mixed-app.d
ld/testsuite/ld-arm/farcall-mixed-lib-v4t.d
ld/testsuite/ld-arm/farcall-mixed-lib.d
ld/testsuite/ld-arm/mixed-app-v5.d
ld/testsuite/ld-arm/mixed-app.d
ld/testsuite/ld-arm/mixed-lib.d

index 4bdbe5d62bb11008d0c20aa2bcf184b6d2caf766..7ea12d9fd00b183d7a7caf24e6bc05d29afcf308 100644 (file)
@@ -1,3 +1,8 @@
+2015-04/24  Richard Earnshaw  <rearnsha@arm.com>
+
+       * config/tc-arm.h (arm_min): New function.
+       (SUB_SEGMENT_ALIGN): Define.
+
 2015-04-23  Matthew Fortune  <matthew.fortune@imgtec.com>
 
        * config/tc-mips.c (macro): State the recommended way of creating
index b604f04b9e468bbd7d02fcae7f82b9dabd71f2c5..22162672c153337bce30e196b510ecd48ce97c14 100644 (file)
@@ -236,10 +236,19 @@ struct arm_frag_type
 #endif
 };
 
+static inline int
+arm_min (int am_p1, int am_p2)
+{
+  return am_p1 < am_p2 ? am_p1 : am_p2;
+}
+
 #define TC_FRAG_TYPE           struct arm_frag_type
 /* NOTE: max_chars is a local variable from frag_var / frag_variant.  */
 #define TC_FRAG_INIT(fragp)    arm_init_frag (fragp, max_chars)
 #define HANDLE_ALIGN(fragp)    arm_handle_align (fragp)
+#define SUB_SEGMENT_ALIGN(SEG, FRCHAIN)                        \
+  ((!(FRCHAIN)->frch_next && subseg_text_p (SEG))              \
+   ? arm_min (2, get_recorded_alignment (SEG)) : 0)
 
 #define md_do_align(N, FILL, LEN, MAX, LABEL)                                  \
   if (FILL == NULL && (N) != 0 && ! need_pass_2 && subseg_text_p (now_seg))    \
index c28a6a2ca652c5e27b2bbecb85c92be9ad910ccd..8a62d532028169b11614621078339180513dea35 100644 (file)
@@ -1,3 +1,7 @@
+2015-04-24  Richard Earnshaw  <rearnsha@arm.com>
+
+       * gas/arm/align64.d: Delete trailing padding NOPs.
+
 2015-04-23  Matthew Fortune  <matthew.fortune@imgtec.com>
 
        * gas/mips/dla-warn.l: New file.
index cee7442d9fd19753670e4b39b5afe7984c70a46e..ee67c820b8d01a280e7134a7ad217ad68b3b1bc0 100644 (file)
@@ -52,18 +52,3 @@ Disassembly of section .text:
 00000078 <foo2\+0x34> e1a00000.*nop.*
 0000007c <foo2\+0x38> e1a00000.*nop.*
 00000080 <foo2\+0x3c> e3a00004.*mov.*r0, #4
-00000084 <foo2\+0x40> e1a00000.*nop.*
-00000088 <foo2\+0x44> e1a00000.*nop.*
-0000008c <foo2\+0x48> e1a00000.*nop.*
-00000090 <foo2\+0x4c> e1a00000.*nop.*
-00000094 <foo2\+0x50> e1a00000.*nop.*
-00000098 <foo2\+0x54> e1a00000.*nop.*
-0000009c <foo2\+0x58> e1a00000.*nop.*
-000000a0 <foo2\+0x5c> e1a00000.*nop.*
-000000a4 <foo2\+0x60> e1a00000.*nop.*
-000000a8 <foo2\+0x64> e1a00000.*nop.*
-000000ac <foo2\+0x68> e1a00000.*nop.*
-000000b0 <foo2\+0x6c> e1a00000.*nop.*
-000000b4 <foo2\+0x70> e1a00000.*nop.*
-000000b8 <foo2\+0x74> e1a00000.*nop.*
-000000bc <foo2\+0x78> e1a00000.*nop.*
index eaa4edbd241fc31e449957960a7ea316a4bc2965..18516a2bc2ca797fed0f28ec097d815a0e4187ec 100644 (file)
@@ -1,3 +1,30 @@
+2015-04-24  Richard Earnshaw  <rearnsha@arm.com>
+
+       * ld-arm/armthumb-lib.d: Regenerate expected output.
+       * ld-arm/armthumb-lib.d: Likewise.
+       * ld-arm/armthumb-lib.sym: Likewise.
+       * ld-arm/cortex-a8-fix-b-rel-arm.d: Likewise.
+       * ld-arm/cortex-a8-fix-b-rel-thumb.d: Likewise.
+       * ld-arm/cortex-a8-fix-b.d: Likewise.
+       * ld-arm/cortex-a8-fix-bcc-rel-thumb.d: Likewise.
+       * ld-arm/cortex-a8-fix-bcc.d: Likewise.
+       * ld-arm/cortex-a8-fix-bl-rel-arm.d: Likewise.
+       * ld-arm/cortex-a8-fix-bl-rel-plt.d: Likewise.
+       * ld-arm/cortex-a8-fix-bl-rel-thumb.d: Likewise.
+       * ld-arm/cortex-a8-fix-bl.d: Likewise.
+       * ld-arm/cortex-a8-fix-blx-bcond.d: Likewise.
+       * ld-arm/cortex-a8-fix-blx-rel-arm.d: Likewise.
+       * ld-arm/cortex-a8-fix-blx-rel-thumb.d: Likewise.
+       * ld-arm/cortex-a8-fix-blx.d: Likewise.
+       * ld-arm/cortex-a8-fix-hdr.d: Likewise.
+       * ld-arm/farcall-mixed-app-v5.d: Likewise.
+       * ld-arm/farcall-mixed-app.d: Likewise.
+       * ld-arm/farcall-mixed-lib-v4t.d: Likewise.
+       * ld-arm/farcall-mixed-lib.d: Likewise.
+       * ld-arm/mixed-app-v5.d: Likewise.
+       * ld-arm/mixed-app.d: Likewise.
+       * ld-arm/mixed-lib.d: Likewise.
+
 2015-04-24  Nick Clifton  <nickc@redhat.com>
 
        * ld-elf/compressed1d.d: Add notarget for ELF based targets that
index f87829cc86ef2bfcaad0835b608155c833917986..9a5dea8244b4a6d8d7a09325524889c3b1a6955b 100644 (file)
@@ -31,15 +31,9 @@ Disassembly of section .text:
 .* <__real_lib_func2>:
  .*:   4770            bx      lr
  .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
 
 .* <lib_func2>:
  .*:   e59fc004        ldr     ip, \[pc, #4\]  ; .* <lib_func2\+0xc>
  .*:   e08cc00f        add     ip, ip, pc
  .*:   e12fff1c        bx      ip
- .*:   ffffffe5        .*
+ .*:   fffffff1        .*
index f1358e2ba1b634cf349e6274b41a90dfdf7a68ca..3714e80847157c88b2c02e204926c36642161a6e 100644 (file)
@@ -11,5 +11,5 @@ Symbol table for image:
  +.. +..: ........ +0 +NOTYPE +GLOBAL +DEFAULT +9 __end__
  +.. +..: ........ +0 +NOTYPE +GLOBAL +DEFAULT +9 __bss_start
  +.. +..: 00000000 +0 +NOTYPE +GLOBAL +DEFAULT +UND app_func2
- +.. +..: .......0 +2 +FUNC +GLOBAL +DEFAULT +6 lib_func2
+ +.. +..: .......[048c] +2 +FUNC +GLOBAL +DEFAULT +6 lib_func2
  +.. +..: ........ +0 +NOTYPE +GLOBAL +DEFAULT +9 _bss_end__
index 195a51bd45bc84d09f5e4adc4b3b748998bdaa23..3e52a495563337c84a938aebc0bbf146f5b35bb2 100644 (file)
@@ -6,7 +6,7 @@ Disassembly of section \.text:
 
 00008f00 <targetfn>:
     8f00:      e12fff1e        bx      lr
-    8f04:      e320f000        nop     \{0\}
+#...
 
 00008f08 <_start>:
     8f08:      bf00            nop
@@ -75,7 +75,7 @@ Disassembly of section \.text:
     9002:      eb01 0002       add\.w  r0, r1, r2
     9006:      f000 b803       b\.w    9010 <__targetfn_from_thumb>
     900a:      4770            bx      lr
-    900c:      f3af 8000       nop\.w
+#...
 
 00009010 <__targetfn_from_thumb>:
     9010:      4778            bx      pc
index 60a254b85a98500886fd527db8015a3f115afd58..6660c75f45f8f84ecbfacedc3a02d738449eec3a 100644 (file)
@@ -6,8 +6,7 @@ Disassembly of section \.text:
 
 00008f00 <targetfn>:
     8f00:      4770            bx      lr
-    8f02:      bf00            nop
-    8f04:      f3af 8000       nop\.w
+#...
 
 00008f08 <_start>:
     8f08:      bf00            nop
@@ -76,5 +75,5 @@ Disassembly of section \.text:
     9002:      eb01 0002       add\.w  r0, r1, r2
     9006:      f7ff bf7b       b\.w    8f00 <targetfn>
     900a:      4770            bx      lr
-    900c:      f3af 8000       nop\.w
+#...
     9010:      f7ff bf76       b\.w    8f00 <targetfn>
index b2d44817a9c7b322cc6ea04a3b2c18ad97eb2ecd..580e69644a30924473ad403f13a1dd9e32bfb0fe 100644 (file)
@@ -71,5 +71,5 @@ Disassembly of section \.text:
     8ffa:      eb01 0002       add\.w  r0, r1, r2
     8ffe:      f000 b803       b\.w    9008 <_start\+0x108>
     9002:      4770            bx      lr
-    9004:      f3af 8000       nop\.w
+#...
     9008:      f7ff bfeb       b\.w    8fe2 <_start\+0xe2>
index 27a7fd42acb9fb3ae8a481258eb9bc573d5d2167..ee8b99f87998276f27ee64ff50dc34630a77963f 100644 (file)
@@ -6,8 +6,7 @@ Disassembly of section \.text:
 
 00008f00 <targetfn>:
     8f00:      4770            bx      lr
-    8f02:      bf00            nop
-    8f04:      f3af 8000       nop\.w
+#...
 
 00008f08 <_start>:
     8f08:      bf00            nop
@@ -76,7 +75,7 @@ Disassembly of section \.text:
     9002:      eb01 0002       add\.w  r0, r1, r2
     9006:      f53f af7b       bmi\.w  8f00 <targetfn>
     900a:      4770            bx      lr
-    900c:      f3af 8000       nop\.w
+#...
     9010:      d401            bmi\.n  9016 <_start\+0x10e>
     9012:      f7ff bff6       b\.w    9002 <_start\+0xfa>
     9016:      f7ff bf73       b\.w    8f00 <targetfn>
index 44b8110987fac5d1181ed42f12bf35bd5ac503e0..a8b8e10382707387e27c1082c14632adfe6adbd5 100644 (file)
@@ -71,7 +71,7 @@ Disassembly of section \.text:
     8ffa:      eb01 0002       add\.w  r0, r1, r2
     8ffe:      f000 b803       b\.w    9008 <_start\+0x108>
     9002:      4770            bx      lr
-    9004:      f3af 8000       nop\.w
+#...
     9008:      d301            bcc\.n  900e <_start\+0x10e>
     900a:      f7ff bffa       b\.w    9002 <_start\+0x102>
     900e:      f7ff bfe8       b\.w    8fe2 <_start\+0xe2>
index fcb3bab61156ffa7e302a80103e67603548da924..938599096e94b4d94e15960378800d549fdb537c 100644 (file)
@@ -6,7 +6,7 @@ Disassembly of section \.text:
 
 00008f00 <targetfn>:
     8f00:      e12fff1e        bx      lr
-    8f04:      e320f000        nop     \{0\}
+#...
 
 00008f08 <_start>:
     8f08:      bf00            nop
@@ -75,5 +75,5 @@ Disassembly of section \.text:
     9002:      eb01 0002       add\.w  r0, r1, r2
     9006:      f7ff ef7c       blx     8f00 <targetfn>
     900a:      4770            bx      lr
-    900c:      f3af 8000       nop\.w
+#...
     9010:      eaffffba        b       8f00 <targetfn>
index ba1f5378c4ed223e153dd8dd724320b8257849dc..c504f792cff9e01818e619201264aa6c462cc92b 100644 (file)
@@ -20,7 +20,7 @@ Disassembly of section \.text:
 00008f00 <targetfn>:
     8f00:      4770            bx      lr
     8f02:      bf00            nop
-    8f04:      f3af 8000       nop\.w
+#...
 
 00008f08 <_start>:
     8f08:      bf00            nop
@@ -89,5 +89,5 @@ Disassembly of section \.text:
     9002:      eb01 0002       add\.w  r0, r1, r2
     9006:      f7ff ef06       blx     8e14 <targetfn@plt>
     900a:      4770            bx      lr
-    900c:      f3af 8000       nop\.w
+#...
     9010:      eaffff7f        b       8e14 <targetfn@plt>
index 8cbd3e0bce9ca3598b61a21fb697e0da08390311..6c97df96a399f4e76bde3d2e70ca64a15cff8d14 100644 (file)
@@ -6,8 +6,7 @@ Disassembly of section \.text:
 
 00008f00 <targetfn>:
     8f00:      4770            bx      lr
-    8f02:      bf00            nop
-    8f04:      f3af 8000       nop\.w
+#...
 
 00008f08 <_start>:
     8f08:      bf00            nop
@@ -76,5 +75,5 @@ Disassembly of section \.text:
     9002:      eb01 0002       add\.w  r0, r1, r2
     9006:      f7ff ff7b       bl      8f00 <targetfn>
     900a:      4770            bx      lr
-    900c:      f3af 8000       nop\.w
+#...
     9010:      f7ff bf76       b\.w    8f00 <targetfn>
index 50dcd4ff2034008b6b393e51c5ea3b07337f1ffc..528a8d3202d21b80acad35713c024a875ec557be 100644 (file)
@@ -71,5 +71,5 @@ Disassembly of section \.text:
     8ffa:      eb01 0002       add\.w  r0, r1, r2
     8ffe:      f000 f803       bl      9008 <_start\+0x108>
     9002:      4770            bx      lr
-    9004:      f3af 8000       nop\.w
+#...
     9008:      f7ff bfeb       b\.w    8fe2 <_start\+0xe2>
index 692a60614cab117017012772ba10d6fcf966c023..9157b835a454c2329143c763f8f5b0a9f8f4af74 100644 (file)
@@ -1100,7 +1100,7 @@ Disassembly of section \.text:
     9ffa:      eb01 0002       add\.w  r0, r1, r2
     9ffe:      f000 e804       blx     a008 <bl_insns\+0x108>
     a002:      4770            bx      lr
-    a004:      f3af 8000       nop\.w
+#...
     a008:      eaffffba        b       9ef8 <arm_target>
     a00c:      d101            bne\.n  a012 <bl_insns\+0x112>
     a00e:      f7fe bff8       b\.w    9002 <_start\+0x102>
index fcb3bab61156ffa7e302a80103e67603548da924..938599096e94b4d94e15960378800d549fdb537c 100644 (file)
@@ -6,7 +6,7 @@ Disassembly of section \.text:
 
 00008f00 <targetfn>:
     8f00:      e12fff1e        bx      lr
-    8f04:      e320f000        nop     \{0\}
+#...
 
 00008f08 <_start>:
     8f08:      bf00            nop
@@ -75,5 +75,5 @@ Disassembly of section \.text:
     9002:      eb01 0002       add\.w  r0, r1, r2
     9006:      f7ff ef7c       blx     8f00 <targetfn>
     900a:      4770            bx      lr
-    900c:      f3af 8000       nop\.w
+#...
     9010:      eaffffba        b       8f00 <targetfn>
index 8cbd3e0bce9ca3598b61a21fb697e0da08390311..6c97df96a399f4e76bde3d2e70ca64a15cff8d14 100644 (file)
@@ -6,8 +6,7 @@ Disassembly of section \.text:
 
 00008f00 <targetfn>:
     8f00:      4770            bx      lr
-    8f02:      bf00            nop
-    8f04:      f3af 8000       nop\.w
+#...
 
 00008f08 <_start>:
     8f08:      bf00            nop
@@ -76,5 +75,5 @@ Disassembly of section \.text:
     9002:      eb01 0002       add\.w  r0, r1, r2
     9006:      f7ff ff7b       bl      8f00 <targetfn>
     900a:      4770            bx      lr
-    900c:      f3af 8000       nop\.w
+#...
     9010:      f7ff bf76       b\.w    8f00 <targetfn>
index 4805256cd9aec1611d286294c4995f5b98c012a7..788e0a300a78f053feabaf279cb5e416011a3084 100644 (file)
@@ -75,5 +75,5 @@ Disassembly of section \.text:
     9002:      eb01 0002       add\.w  r0, r1, r2
     9006:      f7ff ef7c       blx     8f00 <armfn>
     900a:      4770            bx      lr
-    900c:      f3af 8000       nop\.w
+#...
     9010:      eaffffba        b       8f00 <armfn>
index 027d2a11519f9ab92119d9659f0a13f716fb1234..9d4c3dedd9655e675d5b6fce660a9eca8678a382 100644 (file)
@@ -19,6 +19,6 @@ Disassembly of section \.text:
      ff6:      bf00            nop
      ff8:      bf00            nop
      ffa:      ea81 0002       eor.w   r0, r1, r2
-     ffe:      f000 b80f       b.w     1020 <_start\+0x40>
+     ffe:      f000 b803       b.w     1008 <_start\+0x28>
 #...
-    1020:      f7ff bfde       b.w     fe0 <_start>
+    1008:      f7ff bf..       b.w     fe0 <_start>
index 74668837556bf919a9a37a691d068fd196d94d96..ea0e82375e6f891de6d76c3805cca3b21fc640e0 100644 (file)
@@ -39,8 +39,7 @@ Disassembly of section .text:
  .*:   bd00            pop     {pc}
  .*:   4770            bx      lr
  .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
+#...
 
 .* <__app_func_veneer>:
  .*:   e51ff004        ldr     pc, \[pc, #-4\] ; .* <__app_func_veneer\+0x4>
@@ -51,8 +50,8 @@ Disassembly of section .far_arm:
 .* <app_func>:
  .*:   e1a0c00d        mov     ip, sp
  .*:   e92dd800        push    {fp, ip, lr, pc}
- .*:   eb000008        bl      .* <__lib_func1_veneer>
- .*:   eb000009        bl      .* <__lib_func2_veneer>
+ .*:   eb0000..        bl      .* <__lib_func1_veneer>
+ .*:   eb0000..        bl      .* <__lib_func2_veneer>
  .*:   e89d6800        ldm     sp, {fp, sp, lr}
  .*:   e12fff1e        bx      lr
  .*:   e1a00000        nop                     ; \(mov r0, r0\)
@@ -60,15 +59,13 @@ Disassembly of section .far_arm:
 
 .* <app_func2>:
  .*:   e12fff1e        bx      lr
- .*:   e1a00000        nop                     ; \(mov r0, r0\)
- .*:   e1a00000        nop                     ; \(mov r0, r0\)
- .*:   e1a00000        nop                     ; \(mov r0, r0\)
+#...
 
 .* <__lib_func1_veneer>:
- .*:   e51ff004        ldr     pc, \[pc, #-4\] ; 2100034 <__lib_func1_veneer\+0x4>
+ .*:   e51ff004        ldr     pc, \[pc, #-4\] ; .* <__lib_func1_veneer\+0x4>
  .*:   000081e8        .word   0x000081e8
 .* <__lib_func2_veneer>:
- .*:   e51ff004        ldr     pc, \[pc, #-4\] ; 210003c <__lib_func2_veneer\+0x4>
+ .*:   e51ff004        ldr     pc, \[pc, #-4\] ; .* <__lib_func2_veneer\+0x4>
  .*:   000081dc        .word   0x000081dc
 
 Disassembly of section .far_thumb:
@@ -79,8 +76,7 @@ Disassembly of section .far_thumb:
  .*:   bd00            pop     {pc}
  .*:   4770            bx      lr
  .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
+#...
 
 .* <__lib_func2_from_thumb>:
  .*:   e51ff004        ldr     pc, \[pc, #-4\] ; 2200014 <__lib_func2_from_thumb\+0x4>
index 6fa799d38562dd0b9c6b84c179aad59fd60f9140..86127ef4e9f9609c645658243252da254744bcb1 100644 (file)
@@ -41,8 +41,7 @@ Disassembly of section .text:
  .*:   bd00            pop     {pc}
  .*:   4770            bx      lr
  .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
+#...
 
 .* <__app_func_veneer>:
  .*:   e51ff004        ldr     pc, \[pc, #-4\] ; 8234 <__app_func_veneer\+0x4>
@@ -53,8 +52,8 @@ Disassembly of section .far_arm:
 .* <app_func>:
  .*:   e1a0c00d        mov     ip, sp
  .*:   e92dd800        push    {fp, ip, lr, pc}
- .*:   eb000008        bl      .* <__lib_func1_veneer>
- .*:   eb000009        bl      .* <__lib_func2_veneer>
+ .*:   eb000006        bl      .* <__lib_func1_veneer>
+ .*:   eb000007        bl      .* <__lib_func2_veneer>
  .*:   e89d6800        ldm     sp, {fp, sp, lr}
  .*:   e12fff1e        bx      lr
  .*:   e1a00000        nop                     ; \(mov r0, r0\)
@@ -62,15 +61,13 @@ Disassembly of section .far_arm:
 
 .* <app_func2>:
  .*:   e12fff1e        bx      lr
- .*:   e1a00000        nop                     ; \(mov r0, r0\)
- .*:   e1a00000        nop                     ; \(mov r0, r0\)
- .*:   e1a00000        nop                     ; \(mov r0, r0\)
+#...
 
 .* <__lib_func1_veneer>:
- .*:   e51ff004        ldr     pc, \[pc, #-4\] ; 2100034 <__lib_func1_veneer\+0x4>
+ .*:   e51ff004        ldr     pc, \[pc, #-4\] ; .* <__lib_func1_veneer\+0x4>
  .*:   000081ec        .word   0x000081ec
 .* <__lib_func2_veneer>:
- .*:   e51ff004        ldr     pc, \[pc, #-4\] ; 210003c <__lib_func2_veneer\+0x4>
+ .*:   e51ff004        ldr     pc, \[pc, #-4\] ; .* <__lib_func2_veneer\+0x4>
  .*:   000081e0        .word   0x000081e0
 
 Disassembly of section .far_thumb:
@@ -81,8 +78,7 @@ Disassembly of section .far_thumb:
  .*:   bd00            pop     {pc}
  .*:   4770            bx      lr
  .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
+#...
 
 .* <__lib_func2_from_thumb>:
  .*:   4778            bx      pc
index 54f4fab7f76e39ca6eda3af7cbe053c4d3d395d0..e2dbc1bc1e5a1c3f3efe414739057623ed78cdae 100644 (file)
@@ -50,55 +50,47 @@ Disassembly of section .text:
        ...
 
 .* <__real_lib_func2>:
- .*:   f000 f80e       bl      1000330 <__app_func_from_thumb>
- .*:   f000 f81c       bl      1000350 <__app_func_weak_from_thumb>
- .*:   f000 f822       bl      1000360 <__lib_func3_from_thumb>
- .*:   f000 f810       bl      1000340 <__lib_func4_from_thumb>
+ .*:   f000 f8..       bl      .* <__app_func_from_thumb>
+ .*:   f000 f8..       bl      .* <__app_func_weak_from_thumb>
+ .*:   f000 f8..       bl      .* <__lib_func3_from_thumb>
+ .*:   f000 f8..       bl      .* <__lib_func4_from_thumb>
  .*:   4770            bx      lr
- .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
+#...
 
 .* <__app_func_from_thumb>:
  .*:   4778            bx      pc
  .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   e59fc000        ldr     ip, \[pc\]      ; 100033c <__app_func_from_thumb\+0xc>
+ .*:   e59fc000        ldr     ip, \[pc\]      ; .* <__app_func_from_thumb\+0xc>
  .*:   e08cf00f        add     pc, ip, pc
- .*:   feffff68        .word   0xfeffff68
+ .*:   feffff..        .word   0xfeffff..
 
 .* <__lib_func4_from_thumb>:
  .*:   4778            bx      pc
  .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   e59fc000        ldr     ip, \[pc\]      ; 100034c <__lib_func4_from_thumb\+0xc>
+ .*:   e59fc000        ldr     ip, \[pc\]      ; .* <__lib_func4_from_thumb\+0xc>
  .*:   e08cf00f        add     pc, ip, pc
- .*:   feffff88        .word   0xfeffff88
+ .*:   feffff..        .word   0xfeffff..
 
 .* <__app_func_weak_from_thumb>:
  .*:   4778            bx      pc
  .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   e59fc000        ldr     ip, \[pc\]      ; 100035c <__app_func_weak_from_thumb\+0xc>
+ .*:   e59fc000        ldr     ip, \[pc\]      ; .* <__app_func_weak_from_thumb\+0xc>
  .*:   e08cf00f        add     pc, ip, pc
- .*:   feffff58        .word   0xfeffff58
+ .*:   feffff..        .word   0xfeffff..
 
 .* <__lib_func3_from_thumb>:
  .*:   4778            bx      pc
  .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   e59fc000        ldr     ip, \[pc\]      ; 100036c <__lib_func3_from_thumb\+0xc>
+ .*:   e59fc000        ldr     ip, \[pc\]      ; .* <__lib_func3_from_thumb\+0xc>
  .*:   e08cf00f        add     pc, ip, pc
- .*:   feffff58        .word   0xfeffff58
+ .*:   feffff..        .word   0xfeffff..
        ...
 
 .* <__real_lib_func3>:
  .*:   f000 f80e       bl      2000390 <__app_func_from_thumb>
  .*:   f000 f804       bl      2000380 <__app_func_weak_from_thumb>
  .*:   4770            bx      lr
- .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
+#...
 
 .* <__app_func_weak_from_thumb>:
  .*:   4778            bx      pc
index 8524e90ad4f5a41413d8b5360ce20901249af6d7..b73698307c9dec7acec3a566698477004f815db2 100644 (file)
@@ -42,47 +42,40 @@ Disassembly of section .text:
        ...
 
 .* <lib_func2>:
- .*:   f000 e820       blx     1000344 <__app_func_from_thumb>
- .*:   f000 e812       blx     100032c <__app_func_weak_from_thumb>
- .*:   f000 e80a       blx     1000320 <__lib_func3_from_thumb>
- .*:   f000 e814       blx     1000338 <__lib_func4_from_thumb>
+ .*:   f000 e8..       blx     .* <__app_func_from_thumb>
+ .*:   f000 e8..       blx     .* <__app_func_weak_from_thumb>
+ .*:   f000 e8..       blx     .* <__lib_func3_from_thumb>
+ .*:   f000 e8..       blx     .* <__lib_func4_from_thumb>
  .*:   4770            bx      lr
- .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
+ .*:   46c0            nop.*
+#...
 
 .* <__lib_func3_from_thumb>:
- .*:   e59fc000        ldr     ip, \[pc\]      ; 1000328 <__lib_func3_from_thumb\+0x8>
+ .*:   e59fc000        ldr     ip, \[pc\]      ; .* <__lib_func3_from_thumb\+0x8>
  .*:   e08ff00c        add     pc, pc, ip
- .*:   feffff90        .word   0xfeffff90
+ .*:   feffff..        .word   0xfeffff..
 
 .* <__app_func_weak_from_thumb>:
- .*:   e59fc000        ldr     ip, \[pc\]      ; 1000334 <__app_func_weak_from_thumb\+0x8>
+ .*:   e59fc000        ldr     ip, \[pc\]      ; .* <__app_func_weak_from_thumb\+0x8>
  .*:   e08ff00c        add     pc, pc, ip
- .*:   feffff78        .word   0xfeffff78
+ .*:   feffff..        .word   0xfeffff..
 
 .* <__lib_func4_from_thumb>:
- .*:   e59fc000        ldr     ip, \[pc\]      ; 1000340 <__lib_func4_from_thumb\+0x8>
+ .*:   e59fc000        ldr     ip, \[pc\]      ; .* <__lib_func4_from_thumb\+0x8>
  .*:   e08ff00c        add     pc, pc, ip
- .*:   feffff84        .word   0xfeffff84
+ .*:   feffff..        .word   0xfeffff..
 
 .* <__app_func_from_thumb>:
- .*:   e59fc000        ldr     ip, \[pc\]      ; 100034c <__app_func_from_thumb\+0x8>
+ .*:   e59fc000        ldr     ip, \[pc\]      ; .* <__app_func_from_thumb\+0x8>
  .*:   e08ff00c        add     pc, pc, ip
- .*:   feffff54        .word   0xfeffff54
+ .*:   feffff..        .word   0xfeffff..
        ...
 
 .* <lib_func3>:
  .*:   f000 e80c       blx     200037c <__app_func_from_thumb>
  .*:   f000 e804       blx     2000370 <__app_func_weak_from_thumb>
  .*:   4770            bx      lr
- .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
+#...
 
 .* <__app_func_weak_from_thumb>:
  .*:   e59fc000        ldr     ip, \[pc\]      ; 2000378 <__app_func_weak_from_thumb\+0x8>
index 1091a800948ed3b729895b39ad9f63b5bfa648b8..0ad39e6f1f3d0859002adf7ca575b521af95dc6c 100644 (file)
@@ -53,6 +53,4 @@ Disassembly of section .text:
  .*:   f7ff efc.       blx     .* <lib_func2@plt>
  .*:   bd00            pop     {pc}
  .*:   4770            bx      lr
- .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
+#...
index 5fdd9f4217672da78d6c12e8a6f6d968f98b88bf..60831614e41d5f67e7e1d2aa2decd8965b288ef8 100644 (file)
@@ -55,6 +55,4 @@ Disassembly of section .text:
  .*:   f7ff ffc.       bl      .* <lib_func2@plt>
  .*:   bd00            pop     {pc}
  .*:   4770            bx      lr
- .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
+#...
index 29d29e98799d79d8bb59538ebbf6a2a5de9b0054..271692c9ff87f1f69f9bd957386d4a00f681b5a2 100644 (file)
@@ -30,10 +30,4 @@ Disassembly of section .text:
 
 .* <lib_func2>:
  .*:   4770            bx      lr
- .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
- .*:   46c0            nop                     ; \(mov r8, r8\)
+#...
This page took 0.109351 seconds and 4 git commands to generate.