Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 1 | //===-- MipsTargetAsmInfo.cpp - Mips 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. |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file contains the declarations of the MipsTargetAsmInfo properties. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "MipsTargetAsmInfo.h" |
Bruno Cardoso Lopes | 753a987 | 2007-11-12 19:49:57 +0000 | [diff] [blame] | 15 | #include "MipsTargetMachine.h" |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 16 | |
| 17 | using namespace llvm; |
| 18 | |
Anton Korobeynikov | ae408e6 | 2008-07-19 13:16:11 +0000 | [diff] [blame] | 19 | MipsTargetAsmInfo::MipsTargetAsmInfo(const MipsTargetMachine &TM): |
| 20 | ELFTargetAsmInfo(TM) { |
Bruno Cardoso Lopes | 43d526d | 2008-07-14 14:42:54 +0000 | [diff] [blame] | 21 | |
Bruno Cardoso Lopes | 92e87f2 | 2008-07-23 16:01:50 +0000 | [diff] [blame] | 22 | Subtarget = &TM.getSubtarget<MipsSubtarget>(); |
Bruno Cardoso Lopes | feb95cc | 2008-07-22 15:34:27 +0000 | [diff] [blame] | 23 | |
Bruno Cardoso Lopes | 43d526d | 2008-07-14 14:42:54 +0000 | [diff] [blame] | 24 | AlignmentIsInBytes = false; |
| 25 | COMMDirectiveTakesAlignment = true; |
| 26 | Data16bitsDirective = "\t.half\t"; |
| 27 | Data32bitsDirective = "\t.word\t"; |
| 28 | Data64bitsDirective = NULL; |
| 29 | PrivateGlobalPrefix = "$"; |
| 30 | JumpTableDataSection = "\t.rdata"; |
| 31 | CommentString = "#"; |
| 32 | ReadOnlySection = "\t.rdata"; |
| 33 | ZeroDirective = "\t.space\t"; |
| 34 | BSSSection = "\t.section\t.bss"; |
Bruno Cardoso Lopes | 91fd532 | 2008-07-21 18:52:34 +0000 | [diff] [blame] | 35 | CStringSection = ".rodata.str"; |
Bruno Cardoso Lopes | 85e31e3 | 2008-07-28 19:11:24 +0000 | [diff] [blame] | 36 | FourByteConstantSection = "\t.section\t.rodata.cst4,\"aM\",@progbits,4"; |
Bruno Cardoso Lopes | 753a987 | 2007-11-12 19:49:57 +0000 | [diff] [blame] | 37 | |
Bruno Cardoso Lopes | 92e87f2 | 2008-07-23 16:01:50 +0000 | [diff] [blame] | 38 | if (!Subtarget->hasABICall()) { |
Bruno Cardoso Lopes | 753a987 | 2007-11-12 19:49:57 +0000 | [diff] [blame] | 39 | JumpTableDirective = "\t.word\t"; |
Bruno Cardoso Lopes | 92e87f2 | 2008-07-23 16:01:50 +0000 | [diff] [blame] | 40 | SmallDataSection = getNamedSection("\t.sdata", SectionFlags::Writeable); |
| 41 | SmallBSSSection = getNamedSection("\t.sbss", SectionFlags::Writeable | |
| 42 | SectionFlags::BSS); |
| 43 | } else |
Bruno Cardoso Lopes | 753a987 | 2007-11-12 19:49:57 +0000 | [diff] [blame] | 44 | JumpTableDirective = "\t.gpword\t"; |
Bruno Cardoso Lopes | 92e87f2 | 2008-07-23 16:01:50 +0000 | [diff] [blame] | 45 | |
Bruno Cardoso Lopes | feb95cc | 2008-07-22 15:34:27 +0000 | [diff] [blame] | 46 | } |
Bruno Cardoso Lopes | 753a987 | 2007-11-12 19:49:57 +0000 | [diff] [blame] | 47 | |
Bruno Cardoso Lopes | ea7930e | 2008-07-30 17:04:04 +0000 | [diff] [blame^] | 48 | unsigned MipsTargetAsmInfo:: |
| 49 | SectionFlagsForGlobal(const GlobalValue *GV, const char* Name) const { |
| 50 | unsigned Flags = ELFTargetAsmInfo::SectionFlagsForGlobal(GV, Name); |
| 51 | // Mask out Small Section flag bit, Mips doesnt support 's' section symbol |
| 52 | // for its small sections. |
| 53 | return (Flags & (~SectionFlags::Small)); |
| 54 | } |
| 55 | |
| 56 | SectionKind::Kind MipsTargetAsmInfo:: |
| 57 | SectionKindForGlobal(const GlobalValue *GV) const { |
Bruno Cardoso Lopes | c92a0e9 | 2008-07-22 16:24:21 +0000 | [diff] [blame] | 58 | SectionKind::Kind K = ELFTargetAsmInfo::SectionKindForGlobal(GV); |
Bruno Cardoso Lopes | feb95cc | 2008-07-22 15:34:27 +0000 | [diff] [blame] | 59 | |
Bruno Cardoso Lopes | 92e87f2 | 2008-07-23 16:01:50 +0000 | [diff] [blame] | 60 | if (Subtarget->hasABICall()) |
| 61 | return K; |
| 62 | |
Bruno Cardoso Lopes | c92a0e9 | 2008-07-22 16:24:21 +0000 | [diff] [blame] | 63 | if (K != SectionKind::Data && K != SectionKind::BSS && |
| 64 | K != SectionKind::RODataMergeConst) |
| 65 | return K; |
| 66 | |
| 67 | if (isa<GlobalVariable>(GV)) { |
| 68 | const TargetData *TD = ETM->getTargetData(); |
| 69 | unsigned Size = TD->getABITypeSize(GV->getType()->getElementType()); |
Bruno Cardoso Lopes | 92e87f2 | 2008-07-23 16:01:50 +0000 | [diff] [blame] | 70 | unsigned Threshold = Subtarget->getSSectionThreshold(); |
Bruno Cardoso Lopes | c92a0e9 | 2008-07-22 16:24:21 +0000 | [diff] [blame] | 71 | |
| 72 | if (Size > 0 && Size <= Threshold) { |
| 73 | if (K == SectionKind::BSS) |
| 74 | return SectionKind::SmallBSS; |
| 75 | else |
| 76 | return SectionKind::SmallData; |
| 77 | } |
Bruno Cardoso Lopes | feb95cc | 2008-07-22 15:34:27 +0000 | [diff] [blame] | 78 | } |
| 79 | |
Bruno Cardoso Lopes | c92a0e9 | 2008-07-22 16:24:21 +0000 | [diff] [blame] | 80 | return K; |
Bruno Cardoso Lopes | feb95cc | 2008-07-22 15:34:27 +0000 | [diff] [blame] | 81 | } |
| 82 | |
Bruno Cardoso Lopes | ea7930e | 2008-07-30 17:04:04 +0000 | [diff] [blame^] | 83 | const Section* MipsTargetAsmInfo:: |
| 84 | SelectSectionForGlobal(const GlobalValue *GV) const { |
Bruno Cardoso Lopes | feb95cc | 2008-07-22 15:34:27 +0000 | [diff] [blame] | 85 | SectionKind::Kind K = SectionKindForGlobal(GV); |
| 86 | const GlobalVariable *GVA = dyn_cast<GlobalVariable>(GV); |
| 87 | |
| 88 | if (GVA && (!GVA->isWeakForLinker())) |
| 89 | switch (K) { |
| 90 | case SectionKind::SmallData: |
| 91 | return getSmallDataSection(); |
| 92 | case SectionKind::SmallBSS: |
| 93 | return getSmallBSSSection(); |
| 94 | default: break; |
| 95 | } |
| 96 | |
| 97 | return ELFTargetAsmInfo::SelectSectionForGlobal(GV); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 98 | } |