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-mc
/
llvm-mc.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Pass output stream to AsLexInput instead of the whole tool_output_file.
Craig Topper
2014-12-12
1
-46
/
+46
*
Use unique_ptr to remove an explicit delete. Change return type to pass the u...
Craig Topper
2014-12-12
1
-5
/
+4
*
Simplify handling of --noexecstack by using getNonexecutableStackSection.
Rafael Espindola
2014-10-15
1
-3
/
+4
*
Modernize raw_fd_ostream's constructor a bit.
Rafael Espindola
2014-08-25
1
-4
/
+4
*
Explicitly pass ownership of the MemoryBuffer to AddNewSourceBuffer using std...
David Blaikie
2014-08-21
1
-2
/
+2
*
Update the MemoryBuffer API to use ErrorOr.
Rafael Espindola
2014-07-06
1
-5
/
+5
*
This only needs a StringRef.
Rafael Espindola
2014-07-06
1
-1
/
+1
*
SourceMgr: make valid buffer IDs start from one
Alp Toker
2014-07-06
1
-1
/
+1
*
Simplify code a bit, no functionality change.
Rafael Espindola
2014-06-28
1
-3
/
+3
*
Move -dwarf-version to an MC level command line option so it's
Eric Christopher
2014-06-19
1
-7
/
+7
*
80-column fixups.
Eric Christopher
2014-06-19
1
-5
/
+10
*
Remove 'using std::error_code' from tools.
Rafael Espindola
2014-06-13
1
-2
/
+2
*
Don't use 'using std::error_code' in include/llvm.
Rafael Espindola
2014-06-12
1
-0
/
+1
*
llvm-mc: Add option for prefering hex format disassembly.
Jim Grosbach
2014-06-11
1
-9
/
+9
*
Move MCOptions that aren't shared between programs into their specific
Eric Christopher
2014-05-21
1
-0
/
+3
*
This command line option is only used in one place. Move it there and
Eric Christopher
2014-05-21
1
-0
/
+3
*
Unify command line handling of MCTargetOptions and remove extra
Eric Christopher
2014-05-15
1
-9
/
+0
*
Remove the UseCFI option from createAsmStreamer.
Rafael Espindola
2014-05-07
1
-3
/
+2
*
Record the DWARF version in MCContext
Oliver Stannard
2014-05-01
1
-0
/
+9
*
[C++] Use 'nullptr'. Tools edition.
Craig Topper
2014-04-25
1
-5
/
+5
*
Create MCTargetOptions.
Evgeniy Stepanov
2014-04-23
1
-2
/
+5
*
Add missing include (for r205050)
David Blaikie
2014-03-28
1
-0
/
+1
*
llvm-mc: error when -compress-debug-sections is requested and zlib is not linked
David Blaikie
2014-03-28
1
-1
/
+6
*
DebugInfo: Support for compressed debug info sections
David Blaikie
2014-03-27
1
-0
/
+6
*
Remove llvm-mc's disable-cfi option.
Rafael Espindola
2014-03-20
1
-7
/
+4
*
Replace OwningPtr<T> with std::unique_ptr<T>.
Ahmed Charles
2014-03-06
1
-13
/
+12
*
[C++11] Replace OwningPtr::take() with OwningPtr::release().
Ahmed Charles
2014-03-05
1
-1
/
+1
*
Replace the F_Binary flag with a F_Text one.
Rafael Espindola
2014-02-24
1
-1
/
+1
*
Remove support for not using .loc directives.
Rafael Espindola
2014-02-05
1
-5
/
+3
*
Pass a MCSubtargetInfo down to the TargetStreamer creation.
Rafael Espindola
2014-01-26
1
-1
/
+1
*
Whitespace.
NAKAMURA Takumi
2014-01-22
1
-1
/
+1
*
Add an instruction deprecation feature to TableGen.
Joey Gouly
2013-09-12
1
-3
/
+3
*
Generate compact unwind encoding from CFI directives.
Bill Wendling
2013-09-09
1
-2
/
+2
*
Add a wrapper for open.
Rafael Espindola
2013-07-16
1
-2
/
+2
*
Use pointers to the MCAsmInfo and MCRegInfo.
Bill Wendling
2013-06-18
1
-1
/
+1
*
Remove the MachineMove class.
Rafael Espindola
2013-05-13
1
-3
/
+3
*
Remove some redundant includes in llvm-mc.cpp.
Rafael Espindola
2013-05-06
1
-3
/
+0
*
Try to get rid of a -wunitialized warning: explicitly initialize the pointer
Eli Bendersky
2013-02-26
1
-1
/
+3
*
Remove unneeded include and empty line
Eli Bendersky
2013-01-16
1
-2
/
+0
*
We want the dwarf AT_producer for assembly source files to match clang's
Kevin Enderby
2013-01-16
1
-0
/
+11
*
Remove MCTargetAsmLexer and its derived classes now that edis,
Roman Divacky
2012-12-20
1
-3
/
+0
*
Remove edis - the enhanced disassembler. Fixes PR14654.
Roman Divacky
2012-12-19
1
-6
/
+0
*
Add support for passing -main-file-name all the way through to
Eric Christopher
2012-12-18
1
-0
/
+6
*
Prepare LLVM to fix PR14625, exposing a hook in MCContext to manage the
Chandler Carruth
2012-12-17
1
-1
/
+7
*
Added a option to the disassembler to print immediates as hex.
Kevin Enderby
2012-12-05
1
-4
/
+16
*
Sort the #include lines for tools/...
Chandler Carruth
2012-12-04
1
-8
/
+8
*
Add a -disable-cfi option to llvm-mc. This is useful for debugging as
Rafael Espindola
2012-11-23
1
-1
/
+5
*
Add support for annotated disassembly output for X86 and arm.
Kevin Enderby
2012-10-22
1
-2
/
+9
*
When creating MCAsmBackend pass the CPU string as well. In X86AsmBackend
Roman Divacky
2012-09-18
1
-2
/
+2
*
Allow MCCodeEmitter access to the target MCRegisterInfo.
Jim Grosbach
2012-05-15
1
-2
/
+2
[next]