index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
llvm
/
lib
/
MC
/
WinCOFFObjectWriter.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Revert "[COFF] Make the autogenerated .weak.<name>.default symbols static"
Martin Storsjö
2019-12-28
1
-13
/
+9
*
[COFF] Make the autogenerated .weak.<name>.default symbols static
Martin Storsjö
2019-12-28
1
-9
/
+13
*
Unify the two CRC implementations
Hans Wennborg
2019-10-09
1
-2
/
+2
*
[llvm] Migrate llvm::make_unique to std::make_unique
Jonas Devlieghere
2019-08-15
1
-3
/
+3
*
MC: correct the emission of weak aliases in COFF
Saleem Abdulrasool
2019-06-26
1
-1
/
+1
*
Update the file headers across all of the LLVM projects in the monorepo
Chandler Carruth
2019-01-19
1
-4
/
+3
*
llvm::sort(C.begin(), C.end(), ...) -> llvm::sort(C, ...)
Fangrui Song
2018-09-27
1
-4
/
+3
*
Initialize the address-significance table fragment's layout order.
Peter Collingbourne
2018-08-23
1
-0
/
+1
*
MC: Don't align COFF section contents.
Peter Collingbourne
2018-08-23
1
-9
/
+1
*
MC: Teach the COFF object writer to write address-significance tables.
Peter Collingbourne
2018-08-22
1
-0
/
+35
*
MC: Remove dead code from WinCOFFObjectWriter.cpp. NFCI.
Peter Collingbourne
2018-08-18
1
-20
/
+0
*
[MC] Improve COFF associative section lookup
Reid Kleckner
2018-08-16
1
-11
/
+17
*
MC: Remove stream and output functions from MCObjectWriter. NFCI.
Peter Collingbourne
2018-05-21
1
-2
/
+1
*
MC: Have the object writers return the number of bytes written. NFCI.
Peter Collingbourne
2018-05-21
1
-3
/
+7
*
MC: Change object writers to use endian::Writer. NFCI.
Peter Collingbourne
2018-05-21
1
-77
/
+79
*
MC: Change MCAssembler::writeSectionData and writeFragmentPadding to take a r...
Peter Collingbourne
2018-05-21
1
-9
/
+1
*
[MC] Change std::sort to llvm::sort in response to r327219
Mandeep Singh Grang
2018-04-13
1
-4
/
+4
*
[MC] Always emit relocations for same-section function references
Reid Kleckner
2018-03-14
1
-5
/
+7
*
[MC] Thread unique_ptr<MCObjectWriter> through the create.*ObjectWriter
Lang Hames
2017-10-10
1
-2
/
+2
*
[MC] Plumb unique_ptr<MCWinCOFFObjectTargetWriter> through
Lang Hames
2017-10-10
1
-8
/
+8
*
Simplify interface now that we don't need to pass IsPCRel. NFC.
Rafael Espindola
2017-07-11
1
-5
/
+6
*
COFF: Produce an error on invalid pcrel relocs.
Rafael Espindola
2017-06-23
1
-2
/
+2
*
COFF: handle "undef - ." expressions.
Rafael Espindola
2017-06-23
1
-11
/
+0
*
Change creation of relative relocations on COFF.
Rafael Espindola
2017-06-22
1
-1
/
+1
*
Simplify WinCOFFObjectWriter::recordRelocation.
Rafael Espindola
2017-06-22
1
-14
/
+5
*
Move Object format code to lib/BinaryFormat.
Zachary Turner
2017-06-07
1
-1
/
+1
*
Sort the remaining #include lines in include/... and lib/....
Chandler Carruth
2017-06-06
1
-3
/
+3
*
[MC] Fix some Clang-tidy modernize-use-using warnings; other minor fixes (NFC).
Eugene Zelenko
2017-04-26
1
-7
/
+8
*
MC: Remove unused virtual function MCObjectWriter::isWeak. NFC.
Peter Collingbourne
2017-04-08
1
-19
/
+0
*
MC/COFF: Do not emit forward associative section referenceds.
Rui Ueyama
2017-02-17
1
-26
/
+53
*
Split WinCOFFObjectWriter::writeSection.
Rui Ueyama
2017-02-16
1
-28
/
+39
*
Split WinCOFFObjectWriter::writeObject function.
Rui Ueyama
2017-02-16
1
-160
/
+183
*
Remove useless local variable.
Rui Ueyama
2017-02-16
1
-9
/
+4
*
Rename variables to match the LLVM style.
Rui Ueyama
2017-02-16
1
-94
/
+97
*
Revert r295138: Instead of a series of string operations, use snprintf().
Rui Ueyama
2017-02-15
1
-2
/
+4
*
Instead of a series of string operations, use snprintf().
Rui Ueyama
2017-02-15
1
-4
/
+2
*
Return early. NFC.
Rui Ueyama
2017-02-15
1
-16
/
+17
*
Use LLVM-style naming scheme.
Rui Ueyama
2017-02-15
1
-22
/
+22
*
Use LLVM-style naming scheme.
Rui Ueyama
2017-02-15
1
-18
/
+18
*
Remove useless local variable.
Rui Ueyama
2017-02-15
1
-3
/
+1
*
Split WinCOFFObjectWriter::defineSection. NFC.
Rui Ueyama
2017-02-15
1
-47
/
+38
*
Simplify WinCOFFObjectWriter by removing a template member function.
Rui Ueyama
2017-02-14
1
-15
/
+5
*
Do not lookup a DenseMap twice using the same key.
Rui Ueyama
2017-02-14
1
-7
/
+4
*
Use endian::write32le instead of endian::write.
Rui Ueyama
2017-02-14
1
-7
/
+3
*
Use zero-initialization instead of memset.
Rui Ueyama
2017-02-14
1
-18
/
+5
*
[MC] Fix some Clang-tidy modernize and Include What You Use warnings; other m...
Eugene Zelenko
2017-02-07
1
-25
/
+34
*
Fix comment typos. NFC.
Simon Pilgrim
2016-11-20
1
-1
/
+1
*
Remove unused #includes of TimeValue.h. NFC.
Pavel Labath
2016-10-24
1
-1
/
+0
*
Misc improvements to StringTableBuilder.
Rafael Espindola
2016-10-04
1
-1
/
+1
*
Apply clang-tidy's modernize-loop-convert to lib/MC.
Benjamin Kramer
2016-06-26
1
-25
/
+24
[next]