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
Commit message (
Expand
)
Author
Age
Files
Lines
*
Use named temporaries for directional labels.
Rafael Espindola
2015-06-17
1
-0
/
+3
*
Recommit r239721: Replace string GNU Triples with llvm::Triple in InitMCObjec...
Daniel Sanders
2015-06-16
1
-1
/
+1
*
[llvm-mc] The object form of the GNU triple should be the same as the string ...
Daniel Sanders
2015-06-16
1
-1
/
+3
*
Revert r239721 - Replace string GNU Triples with llvm::Triple in InitMCObject...
Daniel Sanders
2015-06-15
1
-4
/
+2
*
Replace string GNU Triples with llvm::Triple in InitMCObjectFileInfo. NFC.
Daniel Sanders
2015-06-15
1
-2
/
+4
*
Teaching llvm-mc how to understand the defsym command line option. This allo...
Colin LeMahieu
2015-06-07
1
-0
/
+26
*
Add targets to cmake for specific target components.
Pete Cooper
2015-04-20
1
-1
/
+5
*
Use raw_pwrite_stream in the object writer/streamer.
Rafael Espindola
2015-04-14
1
-3
/
+11
*
Simplify use of formatted_raw_ostream.
Rafael Espindola
2015-04-09
1
-6
/
+6
*
Replace the MCSubtargetInfo parameter with a Triple when creating
Eric Christopher
2015-03-31
1
-2
/
+2
*
Don't declare all text sections at the start of the .s
Rafael Espindola
2015-03-20
1
-1
/
+2
*
Pass in a "const Triple &T" instead of a raw StringRef.
Rafael Espindola
2015-03-16
1
-1
/
+2
*
Remove the use of the subtarget in MCCodeEmitter creation and
Eric Christopher
2015-03-10
1
-2
/
+2
*
llvm-mc: Use Target::createNullStreamer to fix crashes on target-specific asm...
Peter Collingbourne
2015-02-19
1
-1
/
+1
*
Remove unused includes and out of date comment. NFC.
Rafael Espindola
2014-12-17
1
-1
/
+0
*
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
*
Remove the now unused StringRefMemoryObject.h.
Rafael Espindola
2014-11-12
1
-1
/
+0
*
Pass an ArrayRef to MCDisassembler::getInstruction.
Rafael Espindola
2014-11-12
1
-3
/
+2
*
[llvm-mc] Fixing case where if a file ended with non-newline whitespace or a ...
Colin LeMahieu
2014-11-11
1
-15
/
+9
*
Use StringRefMemoryObject in llvm-mc. NFC.
Rafael Espindola
2014-11-07
1
-29
/
+15
*
Simplify handling of --noexecstack by using getNonexecutableStackSection.
Rafael Espindola
2014-10-15
2
-4
/
+5
*
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
*
Canonicalize header guards into a common format.
Benjamin Kramer
2014-08-13
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
2
-6
/
+6
*
Create MCTargetOptions.
Evgeniy Stepanov
2014-04-23
1
-2
/
+5
*
[MC] Require an MCContext when constructing an MCDisassembler.
Lang Hames
2014-04-15
1
-1
/
+21
*
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
*
[C++11] Add 'override' keyword to virtual methods that override their base cl...
Craig Topper
2014-03-08
1
-3
/
+3
*
Replace OwningPtr<T> with std::unique_ptr<T>.
Ahmed Charles
2014-03-06
2
-15
/
+13
*
[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
[next]