diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-07-26 21:08:34 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-07-26 21:08:34 +0000 |
commit | 15a906cf37481c4897942f267c41ada2af44414b (patch) | |
tree | b7fbaf3be6181a94b8186df634d7727e3d2445bd /compiler-rt | |
parent | 6c9ee7b0c8560250fcc0c023529ec9753851729a (diff) | |
download | bcm5719-llvm-15a906cf37481c4897942f267c41ada2af44414b.tar.gz bcm5719-llvm-15a906cf37481c4897942f267c41ada2af44414b.zip |
builtins: correct constant alignments
MMX/SSE instructions expect 128-bit alignment (16-byte) for constants that they
reference. Correct the alignment on the constant values. Although it is quite
possible for the data to end up aligned, there is no guarantee that this will
occur unless it is explicitly aligned to the desired location. If the data ends
up being unaligned, the resultant binary would fault at runtime due to the
unaligned access.
As an example, the follow would fault previously:
cc -c lib/builtins/x86_64/floatundidf.S -o floatundidf.o
cc -c test/builtins/Unit/floatundidf_test.c -o floatundidf_test.c
ld -m elf_x86_64 floatundidf.o floatundidf_test.o -lc -o floatundidf
However, if the object files were reversed, the data would end up aligned and
the problem would go unnoticed.
llvm-svn: 214033
Diffstat (limited to 'compiler-rt')
-rw-r--r-- | compiler-rt/lib/builtins/i386/floatdidf.S | 11 | ||||
-rw-r--r-- | compiler-rt/lib/builtins/i386/floatundidf.S | 14 | ||||
-rw-r--r-- | compiler-rt/lib/builtins/i386/floatundisf.S | 19 | ||||
-rw-r--r-- | compiler-rt/lib/builtins/i386/floatundixf.S | 14 |
4 files changed, 41 insertions, 17 deletions
diff --git a/compiler-rt/lib/builtins/i386/floatdidf.S b/compiler-rt/lib/builtins/i386/floatdidf.S index 5c45ee9e62f..c4626eda5cb 100644 --- a/compiler-rt/lib/builtins/i386/floatdidf.S +++ b/compiler-rt/lib/builtins/i386/floatdidf.S @@ -10,9 +10,14 @@ #ifndef __ELF__ .const #endif -.balign 4 -twop52: .quad 0x4330000000000000 -twop32: .quad 0x41f0000000000000 + + .balign 16 +twop52: + .quad 0x4330000000000000 + + .balign 16 +twop32: + .quad 0x41f0000000000000 #define REL_ADDR(_a) (_a)-0b(%eax) diff --git a/compiler-rt/lib/builtins/i386/floatundidf.S b/compiler-rt/lib/builtins/i386/floatundidf.S index b0062784874..982c0fee6de 100644 --- a/compiler-rt/lib/builtins/i386/floatundidf.S +++ b/compiler-rt/lib/builtins/i386/floatundidf.S @@ -20,11 +20,17 @@ #ifndef __ELF__ .const #endif -.balign 4 -twop52: .quad 0x4330000000000000 + .balign 16 +twop52: + .quad 0x4330000000000000 + + .balign 16 twop84_plus_twop52: - .quad 0x4530000000100000 -twop84: .quad 0x4530000000000000 + .quad 0x4530000000100000 + + .balign 16 +twop84: + .quad 0x4530000000000000 #define REL_ADDR(_a) (_a)-0b(%eax) diff --git a/compiler-rt/lib/builtins/i386/floatundisf.S b/compiler-rt/lib/builtins/i386/floatundisf.S index 8984627437a..47f4346d778 100644 --- a/compiler-rt/lib/builtins/i386/floatundisf.S +++ b/compiler-rt/lib/builtins/i386/floatundisf.S @@ -55,12 +55,19 @@ END_COMPILERRT_FUNCTION(__floatundisf) #ifndef __ELF__ .const #endif -.balign 8 -twop52: .quad 0x4330000000000000 - .quad 0x0000000000000fff -sticky: .quad 0x0000000000000000 - .long 0x00000012 -twelve: .long 0x00000000 + .balign 16 +twop52: + .quad 0x4330000000000000 + .quad 0x0000000000000fff + + .balign 16 +sticky: + .quad 0x0000000000000000 + .long 0x00000012 + + .balign 16 +twelve: + .long 0x00000000 #define TWOp52 twop52-0b(%ecx) #define STICKY sticky-0b(%ecx,%eax,8) diff --git a/compiler-rt/lib/builtins/i386/floatundixf.S b/compiler-rt/lib/builtins/i386/floatundixf.S index 9d2f31faa3e..a3533115e46 100644 --- a/compiler-rt/lib/builtins/i386/floatundixf.S +++ b/compiler-rt/lib/builtins/i386/floatundixf.S @@ -10,11 +10,17 @@ #ifndef __ELF__ .const #endif -.balign 4 -twop52: .quad 0x4330000000000000 + .balign 16 +twop52: + .quad 0x4330000000000000 + + .balign 16 twop84_plus_twop52_neg: - .quad 0xc530000000100000 -twop84: .quad 0x4530000000000000 + .quad 0xc530000000100000 + + .balign 16 +twop84: + .quad 0x4530000000000000 #define REL_ADDR(_a) (_a)-0b(%eax) |