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
/
CodeGen
/
AsmPrinter
/
AsmPrinter.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
At the beginning of doFinalization set the MachineFunction to
Eric Christopher
2015-03-20
1
-0
/
+5
*
Centralize the handling of unique ids for temporary labels.
Rafael Espindola
2015-03-17
1
-7
/
+7
*
Remove the error prone GetTempSymbol API.
Rafael Espindola
2015-03-17
1
-12
/
+0
*
Make EmitFunctionHeader a private helper.
Rafael Espindola
2015-03-17
1
-0
/
+2
*
Convert the easy cases of GetTempSymbol to createTempSymbol.
Rafael Espindola
2015-03-17
1
-1
/
+1
*
Don't duplicate comment from the .h. NFC.
Rafael Espindola
2015-03-17
1
-4
/
+0
*
Move the EH symbol to the asm printer and use it for the SJLJ case too.
Rafael Espindola
2015-03-17
1
-1
/
+8
*
[AsmPrinter] Use the per-function subtarget to emit inline asm instructions that
Akira Hatanaka
2015-03-16
1
-1
/
+5
*
[NVPTXAsmPrinter] do not print .align on function headers
Jingyue Wu
2015-03-12
1
-1
/
+2
*
[AsmPrinter][TLOF] Reintroduce AArch64 test
Bruno Cardoso Lopes
2015-03-10
1
-11
/
+12
*
DataLayout is mandatory, update the API to reflect it with references.
Mehdi Amini
2015-03-10
1
-5
/
+4
*
Print jump tables before exception tables.
Rafael Espindola
2015-03-09
1
-7
/
+12
*
[AsmPrinter][TLOF] 32-bit MachO support for replacing GOT equivalents
Bruno Cardoso Lopes
2015-03-06
1
-4
/
+5
*
[AsmPrinter][TLOF] ARM64 MachO support for replacing GOT equivalents
Bruno Cardoso Lopes
2015-03-06
1
-1
/
+6
*
Use the correct func begin symbol in all places in ppc.
Rafael Espindola
2015-03-05
1
-7
/
+9
*
Use the generic Lfunc_begin label on ppc.
Rafael Espindola
2015-03-05
1
-1
/
+5
*
Use the existing begin and end symbol for debug info.
Rafael Espindola
2015-03-05
1
-2
/
+3
*
Use the vanilla func_end symbol for .size.
Rafael Espindola
2015-03-04
1
-7
/
+4
*
Drop the "eh_" from eh_func_begin and eh_func_end.
Rafael Espindola
2015-03-04
1
-2
/
+2
*
Remove the Forward Control Flow Integrity pass and its dependencies.
Eric Christopher
2015-02-27
1
-53
/
+0
*
Centralize handling of the eh_begin and eh_end labels.
Rafael Espindola
2015-02-27
1
-0
/
+24
*
[AsmPrinter] Access pointers to globals via pcrel GOT entries
Bruno Cardoso Lopes
2015-02-23
1
-15
/
+209
*
Remove more uses of TargetMachine::getSubtargetImpl from the
Eric Christopher
2015-02-20
1
-9
/
+8
*
AsmPrinter::doFinalization is at the module level and so doesn't
Eric Christopher
2015-02-20
1
-2
/
+7
*
Remove the MCInstrInfo cached variable as it was only used in a
Eric Christopher
2015-02-20
1
-12
/
+6
*
Update and remove a few calls to TargetMachine::getSubtargetImpl
Eric Christopher
2015-02-19
1
-9
/
+12
*
Twines should be passed by const ref.
Rafael Espindola
2015-02-17
1
-2
/
+2
*
Add r228939 back with a fix.
Rafael Espindola
2015-02-17
1
-11
/
+4
*
Revert "On ELF, put PIC jump tables in a non executable section."
Matthias Braun
2015-02-14
1
-4
/
+13
*
On ELF, put PIC jump tables in a non executable section.
Rafael Espindola
2015-02-12
1
-13
/
+4
*
Put each jump table in an independent section if the function is too.
Rafael Espindola
2015-02-12
1
-4
/
+3
*
Debug info: Use DW_OP_bit_piece instead of DW_OP_piece in the
Adrian Prantl
2015-02-09
1
-3
/
+3
*
Only access TLOF via the TargetMachine, not TargetLowering.
Eric Christopher
2015-02-03
1
-1
/
+1
*
Move DataLayout back to the TargetMachine from TargetSubtargetInfo
Eric Christopher
2015-01-26
1
-32
/
+34
*
Classify functions by EH personality type rather than using the triple
Reid Kleckner
2015-01-23
1
-2
/
+1
*
std::unique_ptrify the MCStreamer argument to createAsmPrinter
David Blaikie
2015-01-18
1
-4
/
+4
*
Add the llvm.frameallocate and llvm.recoverframeallocation intrinsics
Reid Kleckner
2015-01-13
1
-0
/
+14
*
Introduce an example statepoint GC strategy
Philip Reames
2015-01-07
1
-0
/
+5
*
x86_64: Fix calls to __morestack under the large code model.
Peter Collingbourne
2014-12-30
1
-0
/
+17
*
Band-aid fix for PR22032: don't emit DWARF debug info if AddressSanitizer is ...
Timur Iskhodzhanov
2014-12-26
1
-3
/
+16
*
CodeGen: Error on redefinitions instead of asserting
David Majnemer
2014-12-24
1
-5
/
+11
*
CodeGen: Allow aliases to be overridden by variables
David Majnemer
2014-12-24
1
-0
/
+2
*
MC: Label definitions are permitted after .set directives
David Majnemer
2014-12-24
1
-0
/
+2
*
Add the ExceptionHandling::MSVC enumeration
Reid Kleckner
2014-12-19
1
-2
/
+2
*
Move lowerConstant to AsmPrinter
Matt Arsenault
2014-12-16
1
-25
/
+20
*
Fixing -Wsign-compare warnings; NFC.
Aaron Ballman
2014-12-16
1
-1
/
+2
*
Silence more static analyzer warnings.
Michael Ilseman
2014-12-15
1
-2
/
+4
*
GCStrategy should not own GCFunctionInfo
Philip Reames
2014-12-11
1
-2
/
+2
*
Remove the Module pointer from GCStrategy and GCMetadataPrinter
Philip Reames
2014-12-09
1
-2
/
+2
*
Prologue support
Peter Collingbourne
2014-12-03
1
-3
/
+7
[prev]
[next]