Jim Laskey | 8e8de8f | 2006-09-07 22:05:02 +0000 | [diff] [blame] | 1 | //===-- X86TargetAsmInfo.cpp - X86 asm properties ---------------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Jim Laskey | 8e8de8f | 2006-09-07 22:05:02 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file contains the declarations of the X86TargetAsmInfo properties. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "X86TargetAsmInfo.h" |
| 15 | #include "X86TargetMachine.h" |
| 16 | #include "X86Subtarget.h" |
Reid Spencer | 7aa8a45 | 2007-01-12 23:22:14 +0000 | [diff] [blame] | 17 | #include "llvm/DerivedTypes.h" |
Chris Lattner | 625bd05 | 2006-11-29 01:14:06 +0000 | [diff] [blame] | 18 | #include "llvm/InlineAsm.h" |
| 19 | #include "llvm/Instructions.h" |
Chris Lattner | 3e9f1d0 | 2007-04-01 20:49:36 +0000 | [diff] [blame] | 20 | #include "llvm/Intrinsics.h" |
Chris Lattner | 625bd05 | 2006-11-29 01:14:06 +0000 | [diff] [blame] | 21 | #include "llvm/Module.h" |
| 22 | #include "llvm/ADT/StringExtras.h" |
Anton Korobeynikov | cee750f | 2008-02-27 23:33:50 +0000 | [diff] [blame] | 23 | #include "llvm/Support/Dwarf.h" |
| 24 | |
Jim Laskey | 8e8de8f | 2006-09-07 22:05:02 +0000 | [diff] [blame] | 25 | using namespace llvm; |
Anton Korobeynikov | cee750f | 2008-02-27 23:33:50 +0000 | [diff] [blame] | 26 | using namespace llvm::dwarf; |
Jim Laskey | 8e8de8f | 2006-09-07 22:05:02 +0000 | [diff] [blame] | 27 | |
Dan Gohman | cfbb2f0 | 2008-03-25 21:45:14 +0000 | [diff] [blame] | 28 | static const char *const x86_asm_table[] = { |
| 29 | "{si}", "S", |
Andrew Lenharth | 6c0695f | 2006-11-28 19:52:49 +0000 | [diff] [blame] | 30 | "{di}", "D", |
| 31 | "{ax}", "a", |
| 32 | "{cx}", "c", |
Andrew Lenharth | 6c0695f | 2006-11-28 19:52:49 +0000 | [diff] [blame] | 33 | "{memory}", "memory", |
| 34 | "{flags}", "", |
| 35 | "{dirflag}", "", |
| 36 | "{fpsr}", "", |
| 37 | "{cc}", "cc", |
| 38 | 0,0}; |
| 39 | |
Jim Laskey | 8e8de8f | 2006-09-07 22:05:02 +0000 | [diff] [blame] | 40 | X86TargetAsmInfo::X86TargetAsmInfo(const X86TargetMachine &TM) { |
| 41 | const X86Subtarget *Subtarget = &TM.getSubtarget<X86Subtarget>(); |
Anton Korobeynikov | cee750f | 2008-02-27 23:33:50 +0000 | [diff] [blame] | 42 | X86TM = &TM; |
| 43 | |
Chris Lattner | afbfded | 2006-10-05 02:43:52 +0000 | [diff] [blame] | 44 | // FIXME - Should be simplified. |
Andrew Lenharth | 6c0695f | 2006-11-28 19:52:49 +0000 | [diff] [blame] | 45 | |
| 46 | AsmTransCBE = x86_asm_table; |
Anton Korobeynikov | 8210045 | 2008-07-09 13:20:27 +0000 | [diff] [blame^] | 47 | |
Jim Laskey | 8e8de8f | 2006-09-07 22:05:02 +0000 | [diff] [blame] | 48 | switch (Subtarget->TargetType) { |
| 49 | case X86Subtarget::isDarwin: |
| 50 | AlignmentIsInBytes = false; |
Evan Cheng | fb8075d | 2008-02-28 00:43:03 +0000 | [diff] [blame] | 51 | TextAlignFillValue = 0x90; |
Jim Laskey | 8e8de8f | 2006-09-07 22:05:02 +0000 | [diff] [blame] | 52 | GlobalPrefix = "_"; |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 53 | if (!Subtarget->is64Bit()) |
| 54 | Data64bitsDirective = 0; // we can't emit a 64-bit unit |
Jim Laskey | 8e8de8f | 2006-09-07 22:05:02 +0000 | [diff] [blame] | 55 | ZeroDirective = "\t.space\t"; // ".space N" emits N zeros. |
| 56 | PrivateGlobalPrefix = "L"; // Marker for constant pool idxs |
Chris Lattner | 42ca450 | 2007-01-17 17:43:33 +0000 | [diff] [blame] | 57 | BSSSection = 0; // no BSS section. |
| 58 | ZeroFillDirective = "\t.zerofill\t"; // Uses .zerofill |
Jim Laskey | 8e8de8f | 2006-09-07 22:05:02 +0000 | [diff] [blame] | 59 | ConstantPoolSection = "\t.const\n"; |
Chris Lattner | afbfded | 2006-10-05 02:43:52 +0000 | [diff] [blame] | 60 | JumpTableDataSection = "\t.const\n"; |
Evan Cheng | 8910c1c | 2006-10-26 19:18:18 +0000 | [diff] [blame] | 61 | CStringSection = "\t.cstring"; |
Jim Laskey | 8e8de8f | 2006-09-07 22:05:02 +0000 | [diff] [blame] | 62 | FourByteConstantSection = "\t.literal4\n"; |
| 63 | EightByteConstantSection = "\t.literal8\n"; |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 64 | if (Subtarget->is64Bit()) |
| 65 | SixteenByteConstantSection = "\t.literal16\n"; |
Evan Cheng | f0b5d56 | 2007-03-08 01:07:07 +0000 | [diff] [blame] | 66 | ReadOnlySection = "\t.const\n"; |
Jim Laskey | 8e8de8f | 2006-09-07 22:05:02 +0000 | [diff] [blame] | 67 | LCOMMDirective = "\t.lcomm\t"; |
Dale Johannesen | 4af3494 | 2008-01-15 23:24:56 +0000 | [diff] [blame] | 68 | SwitchToSectionDirective = "\t.section "; |
Dale Johannesen | 428ac54 | 2008-06-03 18:09:06 +0000 | [diff] [blame] | 69 | StringConstantPrefix = "\1LC"; |
Jim Laskey | 8e8de8f | 2006-09-07 22:05:02 +0000 | [diff] [blame] | 70 | COMMDirectiveTakesAlignment = false; |
| 71 | HasDotTypeDotSizeDirective = false; |
Evan Cheng | b267ca1 | 2007-01-30 08:04:53 +0000 | [diff] [blame] | 72 | if (TM.getRelocationModel() == Reloc::Static) { |
| 73 | StaticCtorsSection = ".constructor"; |
| 74 | StaticDtorsSection = ".destructor"; |
| 75 | } else { |
| 76 | StaticCtorsSection = ".mod_init_func"; |
| 77 | StaticDtorsSection = ".mod_term_func"; |
| 78 | } |
Dale Johannesen | 4af3494 | 2008-01-15 23:24:56 +0000 | [diff] [blame] | 79 | if (Subtarget->is64Bit()) { |
| 80 | PersonalityPrefix = ""; |
| 81 | PersonalitySuffix = "+4@GOTPCREL"; |
| 82 | } else { |
| 83 | PersonalityPrefix = "L"; |
| 84 | PersonalitySuffix = "$non_lazy_ptr"; |
| 85 | } |
Bill Wendling | ef4a661 | 2007-09-11 17:20:55 +0000 | [diff] [blame] | 86 | NeedsIndirectEncoding = true; |
Dale Johannesen | 27c3105 | 2008-03-25 23:29:30 +0000 | [diff] [blame] | 87 | InlineAsmStart = "## InlineAsm Start"; |
| 88 | InlineAsmEnd = "## InlineAsm End"; |
| 89 | CommentString = "##"; |
Jim Laskey | 8e8de8f | 2006-09-07 22:05:02 +0000 | [diff] [blame] | 90 | SetDirective = "\t.set"; |
Bill Wendling | adbda02 | 2007-08-22 18:44:05 +0000 | [diff] [blame] | 91 | PCSymbol = "."; |
Chris Lattner | a53115b | 2006-09-26 03:39:53 +0000 | [diff] [blame] | 92 | UsedDirective = "\t.no_dead_strip\t"; |
Dale Johannesen | 038129d | 2008-01-10 02:03:30 +0000 | [diff] [blame] | 93 | WeakDefDirective = "\t.weak_definition "; |
| 94 | WeakRefDirective = "\t.weak_reference "; |
Dale Johannesen | c7406ae | 2008-01-11 00:54:37 +0000 | [diff] [blame] | 95 | HiddenDirective = "\t.private_extern "; |
Bill Wendling | bebc364 | 2008-03-18 23:38:12 +0000 | [diff] [blame] | 96 | ProtectedDirective = "\t.globl\t"; |
Anton Korobeynikov | 8210045 | 2008-07-09 13:20:27 +0000 | [diff] [blame^] | 97 | |
Chris Lattner | b266ccd | 2007-01-18 01:15:58 +0000 | [diff] [blame] | 98 | // In non-PIC modes, emit a special label before jump tables so that the |
| 99 | // linker can perform more accurate dead code stripping. |
| 100 | if (TM.getRelocationModel() != Reloc::PIC_) { |
| 101 | // Emit a local label that is preserved until the linker runs. |
| 102 | JumpTableSpecialLabelPrefix = "l"; |
| 103 | } |
Anton Korobeynikov | 2a07e2f | 2007-05-05 09:04:50 +0000 | [diff] [blame] | 104 | |
| 105 | SupportsDebugInformation = true; |
Jim Laskey | 8e8de8f | 2006-09-07 22:05:02 +0000 | [diff] [blame] | 106 | NeedsSet = true; |
| 107 | DwarfAbbrevSection = ".section __DWARF,__debug_abbrev,regular,debug"; |
| 108 | DwarfInfoSection = ".section __DWARF,__debug_info,regular,debug"; |
| 109 | DwarfLineSection = ".section __DWARF,__debug_line,regular,debug"; |
| 110 | DwarfFrameSection = ".section __DWARF,__debug_frame,regular,debug"; |
| 111 | DwarfPubNamesSection = ".section __DWARF,__debug_pubnames,regular,debug"; |
| 112 | DwarfPubTypesSection = ".section __DWARF,__debug_pubtypes,regular,debug"; |
| 113 | DwarfStrSection = ".section __DWARF,__debug_str,regular,debug"; |
| 114 | DwarfLocSection = ".section __DWARF,__debug_loc,regular,debug"; |
| 115 | DwarfARangesSection = ".section __DWARF,__debug_aranges,regular,debug"; |
| 116 | DwarfRangesSection = ".section __DWARF,__debug_ranges,regular,debug"; |
| 117 | DwarfMacInfoSection = ".section __DWARF,__debug_macinfo,regular,debug"; |
Anton Korobeynikov | 095546c | 2007-08-21 00:31:30 +0000 | [diff] [blame] | 118 | |
| 119 | // Exceptions handling |
Dale Johannesen | 4af3494 | 2008-01-15 23:24:56 +0000 | [diff] [blame] | 120 | SupportsExceptionHandling = true; |
Dale Johannesen | 038129d | 2008-01-10 02:03:30 +0000 | [diff] [blame] | 121 | GlobalEHDirective = "\t.globl\t"; |
| 122 | SupportsWeakOmittedEHFrame = false; |
Anton Korobeynikov | 095546c | 2007-08-21 00:31:30 +0000 | [diff] [blame] | 123 | AbsoluteEHSectionOffsets = false; |
| 124 | DwarfEHFrameSection = |
| 125 | ".section __TEXT,__eh_frame,coalesced,no_toc+strip_static_syms+live_support"; |
| 126 | DwarfExceptionSection = ".section __DATA,__gcc_except_tab"; |
Jim Laskey | 8e8de8f | 2006-09-07 22:05:02 +0000 | [diff] [blame] | 127 | break; |
Reid Spencer | 02b8511 | 2006-10-30 22:32:30 +0000 | [diff] [blame] | 128 | |
| 129 | case X86Subtarget::isELF: |
Dan Gohman | 6445f61 | 2007-06-27 15:09:47 +0000 | [diff] [blame] | 130 | ReadOnlySection = "\t.section\t.rodata"; |
Dan Gohman | 6f858e2 | 2007-05-03 16:38:57 +0000 | [diff] [blame] | 131 | FourByteConstantSection = "\t.section\t.rodata.cst4,\"aM\",@progbits,4"; |
| 132 | EightByteConstantSection = "\t.section\t.rodata.cst8,\"aM\",@progbits,8"; |
Anton Korobeynikov | 2a07e2f | 2007-05-05 09:04:50 +0000 | [diff] [blame] | 133 | SixteenByteConstantSection = "\t.section\t.rodata.cst16,\"aM\",@progbits,16"; |
Dan Gohman | 6f858e2 | 2007-05-03 16:38:57 +0000 | [diff] [blame] | 134 | CStringSection = "\t.section\t.rodata.str1.1,\"aMS\",@progbits,1"; |
Chris Lattner | a3bfdd4 | 2007-01-03 18:16:48 +0000 | [diff] [blame] | 135 | PrivateGlobalPrefix = ".L"; |
Evan Cheng | 8752ce6 | 2006-12-01 20:47:11 +0000 | [diff] [blame] | 136 | WeakRefDirective = "\t.weak\t"; |
Anton Korobeynikov | 8b0a8c8 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 137 | SetDirective = "\t.set\t"; |
Anton Korobeynikov | edb4a6b | 2007-05-01 10:19:31 +0000 | [diff] [blame] | 138 | PCSymbol = "."; |
Anton Korobeynikov | 2a07e2f | 2007-05-05 09:04:50 +0000 | [diff] [blame] | 139 | |
| 140 | // Set up DWARF directives |
| 141 | HasLEB128 = true; // Target asm supports leb128 directives (little-endian) |
Anton Korobeynikov | 59db3ec | 2007-07-25 00:06:28 +0000 | [diff] [blame] | 142 | |
| 143 | // Debug Information |
Anton Korobeynikov | 2a07e2f | 2007-05-05 09:04:50 +0000 | [diff] [blame] | 144 | AbsoluteDebugSectionOffsets = true; |
Anton Korobeynikov | 2a07e2f | 2007-05-05 09:04:50 +0000 | [diff] [blame] | 145 | SupportsDebugInformation = true; |
Reid Spencer | 02b8511 | 2006-10-30 22:32:30 +0000 | [diff] [blame] | 146 | DwarfAbbrevSection = "\t.section\t.debug_abbrev,\"\",@progbits"; |
| 147 | DwarfInfoSection = "\t.section\t.debug_info,\"\",@progbits"; |
| 148 | DwarfLineSection = "\t.section\t.debug_line,\"\",@progbits"; |
| 149 | DwarfFrameSection = "\t.section\t.debug_frame,\"\",@progbits"; |
| 150 | DwarfPubNamesSection ="\t.section\t.debug_pubnames,\"\",@progbits"; |
| 151 | DwarfPubTypesSection ="\t.section\t.debug_pubtypes,\"\",@progbits"; |
| 152 | DwarfStrSection = "\t.section\t.debug_str,\"\",@progbits"; |
| 153 | DwarfLocSection = "\t.section\t.debug_loc,\"\",@progbits"; |
| 154 | DwarfARangesSection = "\t.section\t.debug_aranges,\"\",@progbits"; |
| 155 | DwarfRangesSection = "\t.section\t.debug_ranges,\"\",@progbits"; |
| 156 | DwarfMacInfoSection = "\t.section\t.debug_macinfo,\"\",@progbits"; |
Anton Korobeynikov | 2365f51 | 2007-07-14 14:06:15 +0000 | [diff] [blame] | 157 | |
Anton Korobeynikov | 59db3ec | 2007-07-25 00:06:28 +0000 | [diff] [blame] | 158 | // Exceptions handling |
Anton Korobeynikov | 2365f51 | 2007-07-14 14:06:15 +0000 | [diff] [blame] | 159 | if (!Subtarget->is64Bit()) |
| 160 | SupportsExceptionHandling = true; |
Anton Korobeynikov | 59db3ec | 2007-07-25 00:06:28 +0000 | [diff] [blame] | 161 | AbsoluteEHSectionOffsets = false; |
Anton Korobeynikov | 71144d8 | 2007-05-01 10:16:06 +0000 | [diff] [blame] | 162 | DwarfEHFrameSection = "\t.section\t.eh_frame,\"aw\",@progbits"; |
| 163 | DwarfExceptionSection = "\t.section\t.gcc_except_table,\"a\",@progbits"; |
Reid Spencer | 02b8511 | 2006-10-30 22:32:30 +0000 | [diff] [blame] | 164 | break; |
| 165 | |
Jim Laskey | 8e8de8f | 2006-09-07 22:05:02 +0000 | [diff] [blame] | 166 | case X86Subtarget::isCygwin: |
Anton Korobeynikov | 317848f | 2007-01-03 11:43:14 +0000 | [diff] [blame] | 167 | case X86Subtarget::isMingw: |
Jim Laskey | 8e8de8f | 2006-09-07 22:05:02 +0000 | [diff] [blame] | 168 | GlobalPrefix = "_"; |
Anton Korobeynikov | 317848f | 2007-01-03 11:43:14 +0000 | [diff] [blame] | 169 | LCOMMDirective = "\t.lcomm\t"; |
Jim Laskey | 8e8de8f | 2006-09-07 22:05:02 +0000 | [diff] [blame] | 170 | COMMDirectiveTakesAlignment = false; |
| 171 | HasDotTypeDotSizeDirective = false; |
| 172 | StaticCtorsSection = "\t.section .ctors,\"aw\""; |
| 173 | StaticDtorsSection = "\t.section .dtors,\"aw\""; |
Anton Korobeynikov | 1a85645 | 2007-01-14 11:49:39 +0000 | [diff] [blame] | 174 | HiddenDirective = NULL; |
Anton Korobeynikov | 2a07e2f | 2007-05-05 09:04:50 +0000 | [diff] [blame] | 175 | PrivateGlobalPrefix = "L"; // Prefix for private global symbols |
| 176 | WeakRefDirective = "\t.weak\t"; |
| 177 | SetDirective = "\t.set\t"; |
Anton Korobeynikov | ab4022f | 2006-10-31 08:31:24 +0000 | [diff] [blame] | 178 | |
| 179 | // Set up DWARF directives |
| 180 | HasLEB128 = true; // Target asm supports leb128 directives (little-endian) |
Anton Korobeynikov | 79dda2b | 2007-05-01 22:23:12 +0000 | [diff] [blame] | 181 | AbsoluteDebugSectionOffsets = true; |
| 182 | AbsoluteEHSectionOffsets = false; |
Anton Korobeynikov | 2a07e2f | 2007-05-05 09:04:50 +0000 | [diff] [blame] | 183 | SupportsDebugInformation = true; |
Anton Korobeynikov | a6199c8 | 2007-03-07 02:47:57 +0000 | [diff] [blame] | 184 | DwarfSectionOffsetDirective = "\t.secrel32\t"; |
Anton Korobeynikov | ab4022f | 2006-10-31 08:31:24 +0000 | [diff] [blame] | 185 | DwarfAbbrevSection = "\t.section\t.debug_abbrev,\"dr\""; |
| 186 | DwarfInfoSection = "\t.section\t.debug_info,\"dr\""; |
| 187 | DwarfLineSection = "\t.section\t.debug_line,\"dr\""; |
| 188 | DwarfFrameSection = "\t.section\t.debug_frame,\"dr\""; |
| 189 | DwarfPubNamesSection ="\t.section\t.debug_pubnames,\"dr\""; |
| 190 | DwarfPubTypesSection ="\t.section\t.debug_pubtypes,\"dr\""; |
| 191 | DwarfStrSection = "\t.section\t.debug_str,\"dr\""; |
| 192 | DwarfLocSection = "\t.section\t.debug_loc,\"dr\""; |
| 193 | DwarfARangesSection = "\t.section\t.debug_aranges,\"dr\""; |
| 194 | DwarfRangesSection = "\t.section\t.debug_ranges,\"dr\""; |
| 195 | DwarfMacInfoSection = "\t.section\t.debug_macinfo,\"dr\""; |
| 196 | break; |
Bill Wendling | 1150286 | 2007-01-16 04:13:03 +0000 | [diff] [blame] | 197 | |
Jim Laskey | 8e8de8f | 2006-09-07 22:05:02 +0000 | [diff] [blame] | 198 | case X86Subtarget::isWindows: |
| 199 | GlobalPrefix = "_"; |
| 200 | HasDotTypeDotSizeDirective = false; |
| 201 | break; |
Bill Wendling | 1150286 | 2007-01-16 04:13:03 +0000 | [diff] [blame] | 202 | |
Jim Laskey | 8e8de8f | 2006-09-07 22:05:02 +0000 | [diff] [blame] | 203 | default: break; |
| 204 | } |
Anton Korobeynikov | 8210045 | 2008-07-09 13:20:27 +0000 | [diff] [blame^] | 205 | |
Jim Laskey | 8e8de8f | 2006-09-07 22:05:02 +0000 | [diff] [blame] | 206 | if (Subtarget->isFlavorIntel()) { |
| 207 | GlobalPrefix = "_"; |
| 208 | CommentString = ";"; |
Anton Korobeynikov | 8210045 | 2008-07-09 13:20:27 +0000 | [diff] [blame^] | 209 | |
Jim Laskey | 8e8de8f | 2006-09-07 22:05:02 +0000 | [diff] [blame] | 210 | PrivateGlobalPrefix = "$"; |
| 211 | AlignDirective = "\talign\t"; |
| 212 | ZeroDirective = "\tdb\t"; |
| 213 | ZeroDirectiveSuffix = " dup(0)"; |
| 214 | AsciiDirective = "\tdb\t"; |
| 215 | AscizDirective = 0; |
| 216 | Data8bitsDirective = "\tdb\t"; |
| 217 | Data16bitsDirective = "\tdw\t"; |
| 218 | Data32bitsDirective = "\tdd\t"; |
| 219 | Data64bitsDirective = "\tdq\t"; |
| 220 | HasDotTypeDotSizeDirective = false; |
Anton Korobeynikov | 8210045 | 2008-07-09 13:20:27 +0000 | [diff] [blame^] | 221 | |
Jim Laskey | 8e8de8f | 2006-09-07 22:05:02 +0000 | [diff] [blame] | 222 | TextSection = "_text"; |
| 223 | DataSection = "_data"; |
Anton Korobeynikov | 24287dd | 2006-12-19 21:04:20 +0000 | [diff] [blame] | 224 | JumpTableDataSection = NULL; |
Jim Laskey | 8e8de8f | 2006-09-07 22:05:02 +0000 | [diff] [blame] | 225 | SwitchToSectionDirective = ""; |
| 226 | TextSectionStartSuffix = "\tsegment 'CODE'"; |
| 227 | DataSectionStartSuffix = "\tsegment 'DATA'"; |
| 228 | SectionEndDirectiveSuffix = "\tends\n"; |
| 229 | } |
Bill Wendling | cb90099 | 2007-01-16 09:29:17 +0000 | [diff] [blame] | 230 | |
Dan Gohman | a779a98 | 2008-05-05 00:28:39 +0000 | [diff] [blame] | 231 | // On Linux we must declare when we can use a non-executable stack. |
Dan Gohman | 600bf16 | 2008-05-05 16:11:31 +0000 | [diff] [blame] | 232 | if (Subtarget->isLinux()) |
Dan Gohman | a779a98 | 2008-05-05 00:28:39 +0000 | [diff] [blame] | 233 | NonexecutableStackDirective = "\t.section\t.note.GNU-stack,\"\",@progbits"; |
| 234 | |
Bill Wendling | cb90099 | 2007-01-16 09:29:17 +0000 | [diff] [blame] | 235 | AssemblerDialect = Subtarget->getAsmFlavor(); |
Jim Laskey | 8e8de8f | 2006-09-07 22:05:02 +0000 | [diff] [blame] | 236 | } |
Chris Lattner | afbfded | 2006-10-05 02:43:52 +0000 | [diff] [blame] | 237 | |
Chris Lattner | 625bd05 | 2006-11-29 01:14:06 +0000 | [diff] [blame] | 238 | bool X86TargetAsmInfo::LowerToBSwap(CallInst *CI) const { |
| 239 | // FIXME: this should verify that we are targetting a 486 or better. If not, |
| 240 | // we will turn this bswap into something that will be lowered to logical ops |
| 241 | // instead of emitting the bswap asm. For now, we don't support 486 or lower |
| 242 | // so don't worry about this. |
Anton Korobeynikov | 8210045 | 2008-07-09 13:20:27 +0000 | [diff] [blame^] | 243 | |
Chris Lattner | 625bd05 | 2006-11-29 01:14:06 +0000 | [diff] [blame] | 244 | // Verify this is a simple bswap. |
| 245 | if (CI->getNumOperands() != 2 || |
| 246 | CI->getType() != CI->getOperand(1)->getType() || |
Chris Lattner | 42a7551 | 2007-01-15 02:27:26 +0000 | [diff] [blame] | 247 | !CI->getType()->isInteger()) |
Chris Lattner | 625bd05 | 2006-11-29 01:14:06 +0000 | [diff] [blame] | 248 | return false; |
Anton Korobeynikov | 8210045 | 2008-07-09 13:20:27 +0000 | [diff] [blame^] | 249 | |
Chris Lattner | 3e9f1d0 | 2007-04-01 20:49:36 +0000 | [diff] [blame] | 250 | const IntegerType *Ty = dyn_cast<IntegerType>(CI->getType()); |
| 251 | if (!Ty || Ty->getBitWidth() % 16 != 0) |
Reid Spencer | a54b7cb | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 252 | return false; |
Anton Korobeynikov | 8210045 | 2008-07-09 13:20:27 +0000 | [diff] [blame^] | 253 | |
Chris Lattner | 625bd05 | 2006-11-29 01:14:06 +0000 | [diff] [blame] | 254 | // Okay, we can do this xform, do so now. |
Chandler Carruth | 6994040 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 255 | const Type *Tys[] = { Ty }; |
Chris Lattner | 625bd05 | 2006-11-29 01:14:06 +0000 | [diff] [blame] | 256 | Module *M = CI->getParent()->getParent()->getParent(); |
Chandler Carruth | 6994040 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 257 | Constant *Int = Intrinsic::getDeclaration(M, Intrinsic::bswap, Tys, 1); |
Anton Korobeynikov | 8210045 | 2008-07-09 13:20:27 +0000 | [diff] [blame^] | 258 | |
Chris Lattner | 625bd05 | 2006-11-29 01:14:06 +0000 | [diff] [blame] | 259 | Value *Op = CI->getOperand(1); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 260 | Op = CallInst::Create(Int, Op, CI->getName(), CI); |
Anton Korobeynikov | 8210045 | 2008-07-09 13:20:27 +0000 | [diff] [blame^] | 261 | |
Chris Lattner | 625bd05 | 2006-11-29 01:14:06 +0000 | [diff] [blame] | 262 | CI->replaceAllUsesWith(Op); |
| 263 | CI->eraseFromParent(); |
| 264 | return true; |
| 265 | } |
| 266 | |
| 267 | |
| 268 | bool X86TargetAsmInfo::ExpandInlineAsm(CallInst *CI) const { |
| 269 | InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue()); |
Chris Lattner | 5d52135 | 2006-11-29 01:48:01 +0000 | [diff] [blame] | 270 | std::vector<InlineAsm::ConstraintInfo> Constraints = IA->ParseConstraints(); |
Anton Korobeynikov | 8210045 | 2008-07-09 13:20:27 +0000 | [diff] [blame^] | 271 | |
Chris Lattner | 625bd05 | 2006-11-29 01:14:06 +0000 | [diff] [blame] | 272 | std::string AsmStr = IA->getAsmString(); |
Anton Korobeynikov | 8210045 | 2008-07-09 13:20:27 +0000 | [diff] [blame^] | 273 | |
Chris Lattner | 625bd05 | 2006-11-29 01:14:06 +0000 | [diff] [blame] | 274 | // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a" |
| 275 | std::vector<std::string> AsmPieces; |
| 276 | SplitString(AsmStr, AsmPieces, "\n"); // ; as separator? |
Anton Korobeynikov | 8210045 | 2008-07-09 13:20:27 +0000 | [diff] [blame^] | 277 | |
Chris Lattner | 625bd05 | 2006-11-29 01:14:06 +0000 | [diff] [blame] | 278 | switch (AsmPieces.size()) { |
Anton Korobeynikov | 8210045 | 2008-07-09 13:20:27 +0000 | [diff] [blame^] | 279 | default: return false; |
Chris Lattner | 625bd05 | 2006-11-29 01:14:06 +0000 | [diff] [blame] | 280 | case 1: |
| 281 | AsmStr = AsmPieces[0]; |
| 282 | AsmPieces.clear(); |
| 283 | SplitString(AsmStr, AsmPieces, " \t"); // Split with whitespace. |
Anton Korobeynikov | 8210045 | 2008-07-09 13:20:27 +0000 | [diff] [blame^] | 284 | |
Chris Lattner | 5d52135 | 2006-11-29 01:48:01 +0000 | [diff] [blame] | 285 | // bswap $0 |
Anton Korobeynikov | 8210045 | 2008-07-09 13:20:27 +0000 | [diff] [blame^] | 286 | if (AsmPieces.size() == 2 && |
Chris Lattner | 625bd05 | 2006-11-29 01:14:06 +0000 | [diff] [blame] | 287 | AsmPieces[0] == "bswap" && AsmPieces[1] == "$0") { |
| 288 | // No need to check constraints, nothing other than the equivalent of |
| 289 | // "=r,0" would be valid here. |
| 290 | return LowerToBSwap(CI); |
| 291 | } |
| 292 | break; |
Chris Lattner | 5d52135 | 2006-11-29 01:48:01 +0000 | [diff] [blame] | 293 | case 3: |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 294 | if (CI->getType() == Type::Int64Ty && Constraints.size() >= 2 && |
Chris Lattner | 5d52135 | 2006-11-29 01:48:01 +0000 | [diff] [blame] | 295 | Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" && |
| 296 | Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") { |
| 297 | // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64 |
| 298 | std::vector<std::string> Words; |
| 299 | SplitString(AsmPieces[0], Words, " \t"); |
| 300 | if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%eax") { |
| 301 | Words.clear(); |
| 302 | SplitString(AsmPieces[1], Words, " \t"); |
| 303 | if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%edx") { |
| 304 | Words.clear(); |
| 305 | SplitString(AsmPieces[2], Words, " \t,"); |
| 306 | if (Words.size() == 3 && Words[0] == "xchgl" && Words[1] == "%eax" && |
| 307 | Words[2] == "%edx") { |
| 308 | return LowerToBSwap(CI); |
| 309 | } |
| 310 | } |
| 311 | } |
| 312 | } |
| 313 | break; |
Chris Lattner | 625bd05 | 2006-11-29 01:14:06 +0000 | [diff] [blame] | 314 | } |
| 315 | return false; |
| 316 | } |
Anton Korobeynikov | cee750f | 2008-02-27 23:33:50 +0000 | [diff] [blame] | 317 | |
| 318 | /// PreferredEHDataFormat - This hook allows the target to select data |
| 319 | /// format used for encoding pointers in exception handling data. Reason is |
| 320 | /// 0 for data, 1 for code labels, 2 for function pointers. Global is true |
| 321 | /// if the symbol can be relocated. |
Anton Korobeynikov | 8213f9c | 2008-02-29 22:09:08 +0000 | [diff] [blame] | 322 | unsigned X86TargetAsmInfo::PreferredEHDataFormat(DwarfEncoding::Target Reason, |
Anton Korobeynikov | cee750f | 2008-02-27 23:33:50 +0000 | [diff] [blame] | 323 | bool Global) const { |
| 324 | const X86Subtarget *Subtarget = &X86TM->getSubtarget<X86Subtarget>(); |
| 325 | |
| 326 | switch (Subtarget->TargetType) { |
| 327 | case X86Subtarget::isDarwin: |
Anton Korobeynikov | 8213f9c | 2008-02-29 22:09:08 +0000 | [diff] [blame] | 328 | if (Reason == DwarfEncoding::Functions && Global) |
Anton Korobeynikov | cee750f | 2008-02-27 23:33:50 +0000 | [diff] [blame] | 329 | return (DW_EH_PE_pcrel | DW_EH_PE_indirect | DW_EH_PE_sdata4); |
Anton Korobeynikov | 8213f9c | 2008-02-29 22:09:08 +0000 | [diff] [blame] | 330 | else if (Reason == DwarfEncoding::CodeLabels || !Global) |
Anton Korobeynikov | cee750f | 2008-02-27 23:33:50 +0000 | [diff] [blame] | 331 | return DW_EH_PE_pcrel; |
| 332 | else |
| 333 | return DW_EH_PE_absptr; |
| 334 | |
| 335 | case X86Subtarget::isELF: |
| 336 | case X86Subtarget::isCygwin: |
| 337 | case X86Subtarget::isMingw: { |
| 338 | CodeModel::Model CM = X86TM->getCodeModel(); |
| 339 | |
| 340 | if (X86TM->getRelocationModel() == Reloc::PIC_) { |
| 341 | unsigned Format = 0; |
| 342 | |
| 343 | if (!Subtarget->is64Bit()) |
| 344 | // 32 bit targets always encode pointers as 4 bytes |
| 345 | Format = DW_EH_PE_sdata4; |
| 346 | else { |
| 347 | // 64 bit targets encode pointers in 4 bytes iff: |
| 348 | // - code model is small OR |
Anton Korobeynikov | c0f41db | 2008-07-09 13:19:08 +0000 | [diff] [blame] | 349 | // - code model is medium and we're emitting externally visible symbols |
| 350 | // or any code symbols |
Anton Korobeynikov | cee750f | 2008-02-27 23:33:50 +0000 | [diff] [blame] | 351 | if (CM == CodeModel::Small || |
Anton Korobeynikov | 8213f9c | 2008-02-29 22:09:08 +0000 | [diff] [blame] | 352 | (CM == CodeModel::Medium && (Global || |
| 353 | Reason != DwarfEncoding::Data))) |
Anton Korobeynikov | cee750f | 2008-02-27 23:33:50 +0000 | [diff] [blame] | 354 | Format = DW_EH_PE_sdata4; |
| 355 | else |
| 356 | Format = DW_EH_PE_sdata8; |
| 357 | } |
| 358 | |
| 359 | if (Global) |
| 360 | Format |= DW_EH_PE_indirect; |
| 361 | |
| 362 | return (Format | DW_EH_PE_pcrel); |
| 363 | } else { |
| 364 | if (Subtarget->is64Bit() && |
| 365 | (CM == CodeModel::Small || |
Anton Korobeynikov | 8213f9c | 2008-02-29 22:09:08 +0000 | [diff] [blame] | 366 | (CM == CodeModel::Medium && Reason != DwarfEncoding::Data))) |
Anton Korobeynikov | cee750f | 2008-02-27 23:33:50 +0000 | [diff] [blame] | 367 | return DW_EH_PE_udata4; |
| 368 | else |
| 369 | return DW_EH_PE_absptr; |
| 370 | } |
| 371 | } |
| 372 | |
| 373 | default: |
| 374 | return TargetAsmInfo::PreferredEHDataFormat(Reason, Global); |
| 375 | } |
| 376 | } |
| 377 | |
Anton Korobeynikov | 29b03f7 | 2008-07-09 13:19:38 +0000 | [diff] [blame] | 378 | std::string X86TargetAsmInfo::UniqueSectionForGlobal(const GlobalValue* GV, |
| 379 | SectionKind::Kind kind) const { |
| 380 | const X86Subtarget *Subtarget = &X86TM->getSubtarget<X86Subtarget>(); |
| 381 | |
| 382 | switch (Subtarget->TargetType) { |
| 383 | case X86Subtarget::isDarwin: |
| 384 | if (kind == SectionKind::Text) |
| 385 | return "__TEXT,__textcoal_nt,coalesced,pure_instructions"; |
| 386 | else |
| 387 | return "__DATA,__datacoal_nt,coalesced"; |
| 388 | case X86Subtarget::isCygwin: |
| 389 | case X86Subtarget::isMingw: |
| 390 | switch (kind) { |
| 391 | case SectionKind::Text: |
| 392 | return ".text$linkonce" + GV->getName(); |
| 393 | case SectionKind::Data: |
| 394 | case SectionKind::BSS: |
| 395 | case SectionKind::ThreadData: |
| 396 | case SectionKind::ThreadBSS: |
| 397 | return ".data$linkonce" + GV->getName(); |
| 398 | case SectionKind::ROData: |
| 399 | case SectionKind::RODataMergeConst: |
| 400 | case SectionKind::RODataMergeStr: |
| 401 | return ".rdata$linkonce" + GV->getName(); |
| 402 | default: |
| 403 | assert(0 && "Unknown section kind"); |
| 404 | } |
| 405 | case X86Subtarget::isELF: |
| 406 | return TargetAsmInfo::UniqueSectionForGlobal(GV, kind); |
| 407 | default: |
| 408 | return ""; |
| 409 | } |
| 410 | } |
| 411 | |
| 412 | |
Anton Korobeynikov | c0f41db | 2008-07-09 13:19:08 +0000 | [diff] [blame] | 413 | std::string X86TargetAsmInfo::SectionForGlobal(const GlobalValue *GV) const { |
Anton Korobeynikov | c0f41db | 2008-07-09 13:19:08 +0000 | [diff] [blame] | 414 | SectionKind::Kind kind = SectionKindForGlobal(GV); |
| 415 | unsigned flags = SectionFlagsForGlobal(GV, GV->getSection().c_str()); |
| 416 | std::string Name; |
| 417 | |
| 418 | // FIXME: Should we use some hashing based on section name and just check |
| 419 | // flags? |
Anton Korobeynikov | 29b03f7 | 2008-07-09 13:19:38 +0000 | [diff] [blame] | 420 | // FIXME: It seems, that Darwin uses much more sections. |
Anton Korobeynikov | c0f41db | 2008-07-09 13:19:08 +0000 | [diff] [blame] | 421 | |
| 422 | // Select section name |
Anton Korobeynikov | 29b03f7 | 2008-07-09 13:19:38 +0000 | [diff] [blame] | 423 | if (GV->hasSection()) { |
| 424 | // Honour section already set, if any |
| 425 | Name = GV->getSection(); |
| 426 | } else { |
| 427 | // Use default section depending on the 'type' of global |
| 428 | if (const Function *F = dyn_cast<Function>(GV)) { |
| 429 | switch (F->getLinkage()) { |
| 430 | default: assert(0 && "Unknown linkage type!"); |
| 431 | case Function::InternalLinkage: |
| 432 | case Function::DLLExportLinkage: |
| 433 | case Function::ExternalLinkage: |
| 434 | Name = TextSection; |
Anton Korobeynikov | c0f41db | 2008-07-09 13:19:08 +0000 | [diff] [blame] | 435 | break; |
Anton Korobeynikov | 29b03f7 | 2008-07-09 13:19:38 +0000 | [diff] [blame] | 436 | case Function::WeakLinkage: |
| 437 | case Function::LinkOnceLinkage: |
| 438 | Name = UniqueSectionForGlobal(F, kind); |
Anton Korobeynikov | c0f41db | 2008-07-09 13:19:08 +0000 | [diff] [blame] | 439 | break; |
Anton Korobeynikov | c0f41db | 2008-07-09 13:19:08 +0000 | [diff] [blame] | 440 | } |
Anton Korobeynikov | 29b03f7 | 2008-07-09 13:19:38 +0000 | [diff] [blame] | 441 | } else if (const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV)) { |
| 442 | if (GVar->hasCommonLinkage() || |
| 443 | GVar->hasLinkOnceLinkage() || |
| 444 | GVar->hasWeakLinkage()) |
| 445 | Name = UniqueSectionForGlobal(GVar, kind); |
| 446 | else { |
| 447 | switch (kind) { |
| 448 | case SectionKind::Data: |
| 449 | Name = DataSection; |
| 450 | break; |
| 451 | case SectionKind::BSS: |
| 452 | Name = (BSSSection ? BSSSection : DataSection); |
| 453 | break; |
| 454 | case SectionKind::ROData: |
| 455 | case SectionKind::RODataMergeStr: |
| 456 | case SectionKind::RODataMergeConst: |
| 457 | // FIXME: Temporary |
| 458 | Name = DataSection; |
| 459 | break; |
| 460 | case SectionKind::ThreadData: |
| 461 | Name = (TLSDataSection ? TLSDataSection : DataSection); |
| 462 | break; |
| 463 | case SectionKind::ThreadBSS: |
| 464 | Name = (TLSBSSSection ? TLSBSSSection : DataSection); |
| 465 | default: |
| 466 | assert(0 && "Unsuported section kind for global"); |
| 467 | } |
| 468 | } |
| 469 | } else |
| 470 | assert(0 && "Unsupported global"); |
| 471 | } |
Anton Korobeynikov | c0f41db | 2008-07-09 13:19:08 +0000 | [diff] [blame] | 472 | |
Anton Korobeynikov | 6e405f3 | 2008-07-09 13:20:07 +0000 | [diff] [blame] | 473 | Name += PrintSectionFlags(flags); |
| 474 | return Name; |
| 475 | } |
| 476 | |
| 477 | std::string X86TargetAsmInfo::PrintSectionFlags(unsigned flags) const { |
| 478 | const X86Subtarget *Subtarget = &X86TM->getSubtarget<X86Subtarget>(); |
| 479 | |
| 480 | std::string Flags = ""; |
| 481 | |
Anton Korobeynikov | c0f41db | 2008-07-09 13:19:08 +0000 | [diff] [blame] | 482 | // Add all special flags, etc |
| 483 | switch (Subtarget->TargetType) { |
| 484 | case X86Subtarget::isELF: |
Anton Korobeynikov | 6e405f3 | 2008-07-09 13:20:07 +0000 | [diff] [blame] | 485 | Flags += ",\""; |
Anton Korobeynikov | c0f41db | 2008-07-09 13:19:08 +0000 | [diff] [blame] | 486 | |
| 487 | if (!(flags & SectionFlags::Debug)) |
Anton Korobeynikov | 6e405f3 | 2008-07-09 13:20:07 +0000 | [diff] [blame] | 488 | Flags += 'a'; |
Anton Korobeynikov | c0f41db | 2008-07-09 13:19:08 +0000 | [diff] [blame] | 489 | if (flags & SectionFlags::Code) |
Anton Korobeynikov | 6e405f3 | 2008-07-09 13:20:07 +0000 | [diff] [blame] | 490 | Flags += 'x'; |
Anton Korobeynikov | c0f41db | 2008-07-09 13:19:08 +0000 | [diff] [blame] | 491 | if (flags & SectionFlags::Writeable) |
Anton Korobeynikov | 6e405f3 | 2008-07-09 13:20:07 +0000 | [diff] [blame] | 492 | Flags += 'w'; |
Anton Korobeynikov | c0f41db | 2008-07-09 13:19:08 +0000 | [diff] [blame] | 493 | if (flags & SectionFlags::Mergeable) |
Anton Korobeynikov | 6e405f3 | 2008-07-09 13:20:07 +0000 | [diff] [blame] | 494 | Flags += 'M'; |
Anton Korobeynikov | c0f41db | 2008-07-09 13:19:08 +0000 | [diff] [blame] | 495 | if (flags & SectionFlags::Strings) |
Anton Korobeynikov | 6e405f3 | 2008-07-09 13:20:07 +0000 | [diff] [blame] | 496 | Flags += 'S'; |
Anton Korobeynikov | c0f41db | 2008-07-09 13:19:08 +0000 | [diff] [blame] | 497 | if (flags & SectionFlags::TLS) |
Anton Korobeynikov | 6e405f3 | 2008-07-09 13:20:07 +0000 | [diff] [blame] | 498 | Flags += 'T'; |
Anton Korobeynikov | c0f41db | 2008-07-09 13:19:08 +0000 | [diff] [blame] | 499 | |
Anton Korobeynikov | 6e405f3 | 2008-07-09 13:20:07 +0000 | [diff] [blame] | 500 | Flags += "\""; |
Anton Korobeynikov | c0f41db | 2008-07-09 13:19:08 +0000 | [diff] [blame] | 501 | |
| 502 | // FIXME: There can be exceptions here |
| 503 | if (flags & SectionFlags::BSS) |
Anton Korobeynikov | 6e405f3 | 2008-07-09 13:20:07 +0000 | [diff] [blame] | 504 | Flags += ",@nobits"; |
Anton Korobeynikov | c0f41db | 2008-07-09 13:19:08 +0000 | [diff] [blame] | 505 | else |
Anton Korobeynikov | 6e405f3 | 2008-07-09 13:20:07 +0000 | [diff] [blame] | 506 | Flags += ",@progbits"; |
Anton Korobeynikov | c0f41db | 2008-07-09 13:19:08 +0000 | [diff] [blame] | 507 | |
| 508 | // FIXME: entity size for mergeable sections |
| 509 | break; |
| 510 | case X86Subtarget::isCygwin: |
| 511 | case X86Subtarget::isMingw: |
Anton Korobeynikov | 6e405f3 | 2008-07-09 13:20:07 +0000 | [diff] [blame] | 512 | Flags += ",\""; |
Anton Korobeynikov | c0f41db | 2008-07-09 13:19:08 +0000 | [diff] [blame] | 513 | |
| 514 | if (flags & SectionFlags::Code) |
Anton Korobeynikov | 6e405f3 | 2008-07-09 13:20:07 +0000 | [diff] [blame] | 515 | Flags += 'x'; |
Anton Korobeynikov | c0f41db | 2008-07-09 13:19:08 +0000 | [diff] [blame] | 516 | if (flags & SectionFlags::Writeable) |
Anton Korobeynikov | 6e405f3 | 2008-07-09 13:20:07 +0000 | [diff] [blame] | 517 | Flags += 'w'; |
Anton Korobeynikov | c0f41db | 2008-07-09 13:19:08 +0000 | [diff] [blame] | 518 | |
Anton Korobeynikov | 6e405f3 | 2008-07-09 13:20:07 +0000 | [diff] [blame] | 519 | Flags += "\""; |
Anton Korobeynikov | c0f41db | 2008-07-09 13:19:08 +0000 | [diff] [blame] | 520 | |
| 521 | break; |
| 522 | case X86Subtarget::isDarwin: |
| 523 | // Darwin does not use any special flags |
| 524 | default: |
| 525 | break; |
| 526 | } |
| 527 | |
Anton Korobeynikov | 6e405f3 | 2008-07-09 13:20:07 +0000 | [diff] [blame] | 528 | return Flags; |
Anton Korobeynikov | c0f41db | 2008-07-09 13:19:08 +0000 | [diff] [blame] | 529 | } |