[PATCH] D19392: Emit code16 in assembly in 16-bit mode
Nirav Dave via llvm-commits
llvm-commits at lists.llvm.org
Fri Apr 22 06:42:00 PDT 2016
This revision was automatically updated to reflect the committed changes.
Closed by commit rL267152: Emit code16 in assembly in 16-bit mode (authored by niravd).
Changed prior to commit:
http://reviews.llvm.org/D19392?vs=54584&id=54641#toc
Repository:
rL LLVM
http://reviews.llvm.org/D19392
Files:
llvm/trunk/lib/Target/X86/X86AsmPrinter.cpp
llvm/trunk/test/CodeGen/X86/x86-16.ll
Index: llvm/trunk/test/CodeGen/X86/x86-16.ll
===================================================================
--- llvm/trunk/test/CodeGen/X86/x86-16.ll
+++ llvm/trunk/test/CodeGen/X86/x86-16.ll
@@ -0,0 +1,20 @@
+; RUN: llc < %s | FileCheck %s
+target datalayout = "e-m:e-p:32:32-f64:32:64-f80:32-n8:16:32-S128"
+target triple = "i386-unknown-linux-code16"
+
+; Function Attrs: nounwind
+define i32 @main() #0 {
+ %retval = alloca i32, align 4
+ store i32 0, i32* %retval, align 4
+ ret i32 0
+}
+
+; CHECK: .code16
+; CHECK-LABEL: main
+
+
+attributes #0 = { nounwind }
+
+!llvm.ident = !{!0}
+
+!0 = !{!"clang version 3.9.0 (trunk 265439) (llvm/trunk 265567)"}
\ No newline at end of file
Index: llvm/trunk/lib/Target/X86/X86AsmPrinter.cpp
===================================================================
--- llvm/trunk/lib/Target/X86/X86AsmPrinter.cpp
+++ llvm/trunk/lib/Target/X86/X86AsmPrinter.cpp
@@ -538,6 +538,12 @@
}
}
OutStreamer->EmitSyntaxDirective();
+
+ // If this is not inline asm and we're in 16-bit
+ // mode prefix assembly with .code16.
+ bool is16 = TT.getEnvironment() == Triple::CODE16;
+ if (M.getModuleInlineAsm().empty() && is16)
+ OutStreamer->EmitAssemblerFlag(MCAF_Code16);
}
static void
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D19392.54641.patch
Type: text/x-patch
Size: 1247 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160422/e8280470/attachment.bin>
More information about the llvm-commits
mailing list