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
/
tools
/
llvm-readobj
/
COFFDumper.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Use consume instead of manually using drop_front
David Majnemer
2016-05-28
1
-2
/
+2
*
[pdb] Finish conversion to zero copy pdb access.
Zachary Turner
2016-05-28
1
-5
/
+40
*
Remove unused global variable.
Zachary Turner
2016-05-24
1
-11
/
+0
*
Remove unused variable breaking -Werror builds.
Zachary Turner
2016-05-24
1
-2
/
+1
*
Make a symbol visitor and use it to dump CV symbols.
Zachary Turner
2016-05-23
1
-732
/
+51
*
[codeview] Refactor symbol records to use same pattern as types.
Zachary Turner
2016-05-23
1
-274
/
+325
*
Delete default in fully covered switch.
Rafael Espindola
2016-05-18
1
-1
/
+0
*
[codeview] Some cleanup of Symbol Records.
Zachary Turner
2016-05-17
1
-62
/
+63
*
[codeview] Add type stream merging prototype
Reid Kleckner
2016-05-14
1
-0
/
+43
*
Make CodeView record serialization more generic.
Zachary Turner
2016-05-12
1
-12
/
+13
*
[codeview] Move dumper into lib/DebugInfo/CodeView
Reid Kleckner
2016-05-05
1
-811
/
+8
*
[codeview] Add a type visitor to help abstract away type stream handling
Reid Kleckner
2016-05-04
1
-485
/
+448
*
Move CodeViewTypeStream to DebugInfo/CodeView
Zachary Turner
2016-05-03
1
-137
/
+14
*
[codeview] Maintain the type enum-to-classname mapping in the .def file
Reid Kleckner
2016-05-03
1
-23
/
+5
*
Move llvm-readobj/StreamWriter to Support.
Zachary Turner
2016-05-03
1
-7
/
+7
*
NFC: An iterator for stepping through CodeView type stream in llvm-readobj
Adrian McCarthy
2016-05-02
1
-39
/
+125
*
[codeview] Isolate type dumping from object file state
Reid Kleckner
2016-05-02
1
-18
/
+38
*
[codeview] Don't dump type stream bytes unless asked to
Reid Kleckner
2016-05-02
1
-1
/
+2
*
Thread Expected<...> up from libObject’s getName() for symbols to allow llv...
Kevin Enderby
2016-04-20
1
-5
/
+5
*
[codeview] Dump char16_t and char32_t simple types
Reid Kleckner
2016-04-15
1
-0
/
+2
*
Revert "Fix Clang-tidy modernize-deprecated-headers warnings in remaining fil...
Duncan P. N. Exon Smith
2016-04-05
1
-87
/
+51
*
Fix Clang-tidy modernize-deprecated-headers warnings in remaining files; othe...
Eugene Zelenko
2016-04-05
1
-51
/
+87
*
[codeview] Dump def range lengths in hex
Reid Kleckner
2016-02-11
1
-3
/
+3
*
[codeview] Dump a missing field and change its signedness
Reid Kleckner
2016-02-05
1
-0
/
+2
*
Correctly handle {Always,Never}StepIntoLine
David Majnemer
2016-02-04
1
-8
/
+9
*
Add support for S_DEFRANGE and S_DEFRANGE_SUBFIELD
David Majnemer
2016-02-04
1
-2
/
+27
*
Make the dumper's output for variable ranges easier to read
David Majnemer
2016-02-04
1
-24
/
+14
*
Print the OffsetStart field's relocation
David Majnemer
2016-02-03
1
-8
/
+15
*
[llvm-readobj] Add support for dumping S_DEFRANGE symbols
David Majnemer
2016-02-03
1
-1
/
+84
*
[codeview] Wire up the .cv_inline_linetable directive
Reid Kleckner
2016-02-02
1
-1
/
+1
*
[CodeView] Fix dumping the is_stmt bit from the line table
Reid Kleckner
2016-01-29
1
-1
/
+1
*
Reland "[CodeView] Use assembler directives for line tables"
Reid Kleckner
2016-01-29
1
-6
/
+5
*
Revert "[CodeView] Use assembler directives for line tables"
Reid Kleckner
2016-01-29
1
-5
/
+6
*
[CodeView] Use assembler directives for line tables
Reid Kleckner
2016-01-28
1
-6
/
+5
*
[readobj] Print CodeOffset first, it's easier to read
Reid Kleckner
2016-01-20
1
-5
/
+5
*
Use new function name. NFC.
Rafael Espindola
2016-01-18
1
-3
/
+2
*
[codeview] Handle multiple frame descriptions in readobj
Reid Kleckner
2016-01-15
1
-35
/
+29
*
[codeview] Dump the file checksum substream
Reid Kleckner
2016-01-15
1
-0
/
+38
*
[codeview] Translate file table offsets to filenames and print them
Reid Kleckner
2016-01-15
1
-48
/
+63
*
[codeview] Dump function callees and add more labels to inlinee info
Reid Kleckner
2016-01-14
1
-8
/
+26
*
Update to use new name alignTo().
Rui Ueyama
2016-01-14
1
-1
/
+1
*
[codeview] Dump CodeView inlinee lines subsection
Reid Kleckner
2016-01-14
1
-0
/
+36
*
Use std::map::insert instead of emplace for libstdc++ 4.7
Reid Kleckner
2016-01-14
1
-1
/
+1
*
Print function names when they are referenced via TypeIndex
Reid Kleckner
2016-01-14
1
-1
/
+1
*
[readobj] Add functionality to dump relocations inside of binary blobs
Reid Kleckner
2016-01-14
1
-6
/
+38
*
[codeview] Print relocations against code and data offset fields
Reid Kleckner
2016-01-14
1
-76
/
+62
*
[CodeView] Add support for dumping binary annotations
David Majnemer
2016-01-14
1
-1
/
+100
*
[codeview] Share more enums across the writer and the dumper
Reid Kleckner
2016-01-13
1
-12
/
+17
*
[readobj] Expand CodeView dumping functionality
Reid Kleckner
2016-01-13
1
-140
/
+1568
*
[CodeView] Improve the line table dumper
David Majnemer
2016-01-13
1
-14
/
+28
[next]