From: Saleem Abdulrasool Date: Sat, 26 Jul 2014 21:08:34 +0000 (+0000) Subject: builtins: correct constant alignments X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=15a906cf37481c4897942f267c41ada2af44414b;p=platform%2Fupstream%2Fllvm.git 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 --- diff --git a/compiler-rt/lib/builtins/i386/floatdidf.S b/compiler-rt/lib/builtins/i386/floatdidf.S index 5c45ee9..c4626ed 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 b006278..982c0fe 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 8984627..47f4346 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 9d2f31f..a353311 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)