aboutsummaryrefslogtreecommitdiffstats
path: root/test/MC/Mips
diff options
context:
space:
mode:
authorAkira Hatanaka <ahatanaka@mips.com>2012-03-21 00:52:01 +0000
committerAkira Hatanaka <ahatanaka@mips.com>2012-03-21 00:52:01 +0000
commitfb54afbcb8f460c5c4cafa605259ba0dd77504dc (patch)
tree9f66dcb3d6e76c8410bc21deb2df4d5edc8b7966 /test/MC/Mips
parentb7febfbafae97bce00bd239d34e91b9997a5338d (diff)
downloadexternal_llvm-fb54afbcb8f460c5c4cafa605259ba0dd77504dc.zip
external_llvm-fb54afbcb8f460c5c4cafa605259ba0dd77504dc.tar.gz
external_llvm-fb54afbcb8f460c5c4cafa605259ba0dd77504dc.tar.bz2
Incremental big endian patch by Jack Carter.
These changes allow us to compile big endian from the command line for 32 bit Mips targets. This patch will result in code and data actually being produced in the correct endianess. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153153 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/MC/Mips')
-rw-r--r--test/MC/Mips/elf-bigendian.ll45
1 files changed, 45 insertions, 0 deletions
diff --git a/test/MC/Mips/elf-bigendian.ll b/test/MC/Mips/elf-bigendian.ll
new file mode 100644
index 0000000..875ba3b
--- /dev/null
+++ b/test/MC/Mips/elf-bigendian.ll
@@ -0,0 +1,45 @@
+; RUN: llc -filetype=obj -mtriple mips-unknown-linux %s -o - | elf-dump --dump-section-data | FileCheck %s
+
+; Check that this is big endian.
+; CHECK: ('e_indent[EI_DATA]', 0x02)
+
+; Make sure that a section table (text) entry is correct.
+; CHECK: (('sh_name', 0x{{[0]*}}5) # '.text'
+; CHECKNEXT: ('sh_type', 0x{{[0]*}}1)
+; CHECKNEXT: ('sh_flags', 0x{{[0]*}}6)
+; CHECKNEXT: ('sh_addr', 0x{{{[0-9,a-f]+}})
+; CHECKNEXT: ('sh_offset', 0x{{{[0-9,a-f]+}})
+; CHECKNEXT: ('sh_size', 0x{{{[0-9,a-f]+}})
+; CHECKNEXT: ('sh_link', 0x{{[0]+}})
+; CHECKNEXT: ('sh_info', 0x{{[0]+}})
+; CHECKNEXT: ('sh_addralign', 0x{{[0]*}}4)
+; CHECKNEXT: ('sh_entsize', 0x{{[0]+}})
+
+; See that at least first 3 instructions are correct: GP prologue
+; CHECKNEXT: ('_section_data', '3c1c0000 279c0000 0399e021 {{[0-9,a-f]*}}')
+
+; ModuleID = '../br1.c'
+target datalayout = "E-p:32:32:32-i1:8:8-i8:8:32-i16:16:32-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-n32"
+target triple = "mips-unknown-linux"
+
+@x = global i32 1, align 4
+@str = private unnamed_addr constant [4 x i8] c"goo\00"
+@str2 = private unnamed_addr constant [4 x i8] c"foo\00"
+
+define i32 @main() nounwind {
+entry:
+ %0 = load i32* @x, align 4
+ %tobool = icmp eq i32 %0, 0
+ br i1 %tobool, label %if.end, label %foo
+
+if.end: ; preds = %entry
+ %puts = tail call i32 @puts(i8* getelementptr inbounds ([4 x i8]* @str, i32 0, i32 0))
+ br label %foo
+
+foo: ; preds = %entry, %if.end
+ %puts2 = tail call i32 @puts(i8* getelementptr inbounds ([4 x i8]* @str2, i32 0, i32 0))
+ ret i32 0
+}
+
+declare i32 @puts(i8* nocapture) nounwind
+