Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-05-11 | Tidy up. Trailing whitespace. | Jim Grosbach | 1 | -6/+6 | |
llvm-svn: 156602 | |||||
2011-03-04 | Be nice to Xcore and the XMOS assembler and avoid quoting section names | Joerg Sonnenberger | 1 | -12/+18 | |
that contain only letters, digits and the characters "_" and ".". llvm-svn: 127028 | |||||
2011-03-03 | Bug#9033: For the ELF assembler output, always quote the section name. | Joerg Sonnenberger | 1 | -2/+16 | |
llvm-svn: 126963 | |||||
2011-02-14 | Switch llvm to using comdats. For now always use groups with a single | Rafael Espindola | 1 | -0/+4 | |
section. llvm-svn: 125526 | |||||
2011-02-14 | Move broken HasCommonSymbols to ELFWriter.cpp. | Rafael Espindola | 1 | -11/+0 | |
llvm-svn: 125490 | |||||
2011-01-23 | Remove more duplicated code. | Rafael Espindola | 1 | -15/+15 | |
llvm-svn: 124056 | |||||
2011-01-23 | Remove duplicated code. | Rafael Espindola | 1 | -7/+9 | |
llvm-svn: 124054 | |||||
2010-12-26 | Add support for @note. Patch by Jörg Sonnenberger. | Rafael Espindola | 1 | -0/+2 | |
llvm-svn: 122568 | |||||
2010-11-17 | make isVirtualSection a virtual method on MCSection. Chris' suggestion. | Rafael Espindola | 1 | -0/+4 | |
llvm-svn: 119547 | |||||
2010-11-09 | Fixed version of 118639 with an extra assert to catch similar problems | Rafael Espindola | 1 | -32/+23 | |
earlier. Implicit bool -> int conversions are evil! llvm-svn: 118651 | |||||
2010-11-09 | Revert previous patch. Missed a case. | Rafael Espindola | 1 | -22/+32 | |
llvm-svn: 118645 | |||||
2010-11-09 | Remove IsExplicit. It was always false. | Rafael Espindola | 1 | -32/+22 | |
llvm-svn: 118639 | |||||
2010-10-04 | Add hook in MCSection to decide when to use "optimized nops", for each | Jan Wen Voung | 1 | -0/+4 | |
section kind. Previously, optimized nops were only used for MachO. Also added tests for ELF and COFF. llvm-svn: 115523 | |||||
2010-09-30 | Move logic of determining ELF entsize from the .s printer to initialization | Jan Wen Voung | 1 | -12/+11 | |
time. That way, the EntrySize field is initialized for other code paths, namely, the .ll -> .o code path. llvm-svn: 115141 | |||||
2010-04-08 | move elf section uniquing to MCContext. Along the way | Chris Lattner | 1 | -57/+57 | |
merge XCore's section into MCSectionELF llvm-svn: 100812 | |||||
2010-01-22 | Simplify some uses of str(n)cmp with StringRef. | Benjamin Kramer | 1 | -7/+5 | |
llvm-svn: 94189 | |||||
2010-01-13 | tidy | Chris Lattner | 1 | -4/+3 | |
llvm-svn: 93352 | |||||
2009-11-06 | Pass StringRef by value. | Daniel Dunbar | 1 | -1/+1 | |
llvm-svn: 86251 | |||||
2009-08-22 | rename TAI -> MAI, being careful not to make MAILJMP instructions :) | Chris Lattner | 1 | -7/+7 | |
llvm-svn: 79777 | |||||
2009-08-22 | Rename TargetAsmInfo (and its subclasses) to MCAsmInfo. | Chris Lattner | 1 | -3/+3 | |
llvm-svn: 79763 | |||||
2009-08-15 | add support for target-specific ELF section flags, add a new MCSectionXCore | Chris Lattner | 1 | -4/+6 | |
class which represents the XCore cp/dp section flags. No functionality change yet. llvm-svn: 79077 | |||||
2009-08-14 | *try* to use a better name to describe how common symbols are marked on the ↵ | Bruno Cardoso Lopes | 1 | -2/+4 | |
elf object file. llvm-svn: 79029 | |||||
2009-08-13 | Fix MCSectionELF::ShouldOmitSectionDirective's matching of .data and | Dan Gohman | 1 | -3/+3 | |
friends so that it doesn't match sections like .data.rel.local, which should not be emitted as section directives. llvm-svn: 78963 | |||||
2009-08-13 | Remove HasCrazyBSS and add a flag in TAI to indicate that '.section' | Bruno Cardoso Lopes | 1 | -9/+10 | |
must be emitted for PowerPC-Linux '.bss' section llvm-svn: 78958 | |||||
2009-08-13 | Add a method to return if the ELF section contains only common symbols! | Bruno Cardoso Lopes | 1 | -0/+10 | |
llvm-svn: 78937 | |||||
2009-08-13 | Change MCSectionELF to represent a section semantically instead of | Bruno Cardoso Lopes | 1 | -0/+123 | |
syntactically as a string, very similiar to what Chris did with MachO. The parsing support and validation is not introduced yet. llvm-svn: 78890 |