aboutsummaryrefslogtreecommitdiffstats
path: root/lib/MC/MCDwarf.cpp
Commit message (Expand)AuthorAgeFilesLines
* Use a reference. Don't make a useless copy of the vector.Bill Wendling2011-06-231-1/+1
* Formatting changes. No functionality change.Bill Wendling2011-06-231-32/+30
* Use the presence of the __compact_unwind section to indicate that a targetBill Wendling2011-06-231-1/+1
* Some skeleton code to emit the compact unwind. If the information is unable toBill Wendling2011-06-231-1/+63
* Directly print to a raw_ostream instead of printing to a buffer first.Benjamin Kramer2011-06-181-4/+1
* No reason not to allow defining the CFA as a reg w/ offset zero.Jim Grosbach2011-05-201-2/+0
* Avoid a gcc warning.Rafael Espindola2011-05-101-1/+2
* On MachO, unlike ELF, there should be no relocation to produce the CIE pointer.Rafael Espindola2011-05-101-8/+17
* The EH symbols are only needed in eh_frame, not debug_frame.Rafael Espindola2011-05-101-2/+2
* In a debug_frame the cfi offset is to the start of the debug_frame section!Rafael Espindola2011-05-101-3/+7
* Add support for producing .deubg_frame sections.Rafael Espindola2011-05-101-45/+59
* Small cleanups.Rafael Espindola2011-05-101-8/+5
* Remove unused argument.Rafael Espindola2011-05-101-12/+4
* Eliminate an unused line to fix a warning.NAKAMURA Takumi2011-05-081-1/+0
* Don't force relaxation of AdvanceLoc instructions on OS X. gdb is happy withRafael Espindola2011-05-081-11/+5
* Switch Darwin to the generic CIE/FDE printer.Rafael Espindola2011-05-061-64/+0
* MCDwarf: Don't save Twine to local variable, this is almost never safe to doDaniel Dunbar2011-05-031-2/+2
* GCC uses a different encoding of pointers in the FDE when usingRafael Espindola2011-05-011-8/+12
* Simplify the handling of pcrel relocations on ELF. Now we do the right thingRafael Espindola2011-05-011-11/+6
* Avoid some uses of .uleb128. This is a small speedup and more importantlyRafael Espindola2011-04-291-17/+22
* Last bit by bit compatibility patch to MCDwarf.cpp: If a FDE with no LSDA isRafael Espindola2011-04-291-5/+20
* Add an alternative implementation of CIE and FDE emission that outputs themRafael Espindola2011-04-291-0/+58
* Add the getExprForFDESymbol method that responsible for computing theRafael Espindola2011-04-281-12/+9
* Add a getExprForPersonalitySymbol method to MCAsmInfo. Use it whenRafael Espindola2011-04-281-1/+14
* Mark the EH symbol global or weak if the corresponding function is.Rafael Espindola2011-04-281-0/+1
* Add a small temporary hack for producing identical eh_frame sections on OS X.Rafael Espindola2011-04-281-5/+12
* Produce the EH_frame# symbols if needed.Rafael Espindola2011-04-281-2/+11
* Forward isFunctionEHFrameSymbolPrivate. If it is false, produce the foo.ehRafael Espindola2011-04-281-0/+7
* Force some values to be absolute and align based on the FDE pointers size. A ...Rafael Espindola2011-04-271-6/+6
* Delete the other unused variable in this function. Sorry I missed thisChandler Carruth2011-04-221-1/+0
* Remove an unused variable from a function. This is a likely cut-paste-o.Chandler Carruth2011-04-221-1/+0
* Compute the size of the FDE encoding instead of hard coding it. UpdateRafael Espindola2011-04-221-15/+20
* Remove unused argument.Rafael Espindola2011-04-211-2/+2
* Don't pass address spaces to EmitULEB128IntValue.Rafael Espindola2011-04-211-3/+3
* Remove LastOffset from the asm parser.Rafael Espindola2011-04-121-2/+6
* Fix the case of a .cfi_rel_offset before any .cfi_def_cfa_offset.Rafael Espindola2011-04-121-71/+103
* Implement .cfi_same_value.Rafael Espindola2011-04-121-0/+6
* Rename TargetFrameInfo into TargetFrameLowering. Also, put couple of FIXMEs a...Anton Korobeynikov2011-01-101-1/+1
* Make a bunch of symbols internal.Benjamin Kramer2010-12-301-18/+17
* Correctly encode pcrel|indirect.Rafael Espindola2010-12-291-2/+1
* Fix bug when trying to output uint16_t or uint32_t.Rafael Espindola2010-12-291-2/+9
* Implement cfi_def_cfa. Also don't convert to dwarf reg numbers twice. LooksRafael Espindola2010-12-291-14/+25
* Don't produce a "DW_CFA_advance_loc 0".Rafael Espindola2010-12-281-1/+2
* Implement .cfi_remember_state and .cfi_restore_state.Rafael Espindola2010-12-281-42/+68
* Fix warning about size potentially being used uninitializedDuncan Sands2010-12-281-1/+0
* Relax address updates in the eh_frame section.Rafael Espindola2010-12-281-6/+28
* Start adding basic support for emitting the call frame instructions.Rafael Espindola2010-12-281-1/+5
* Add support for .cfi_lsda.Rafael Espindola2010-12-271-45/+114
* Add support for the same encodings of the personality function that gnu asRafael Espindola2010-12-271-6/+45
* Fix .cfi_personality on 32 bit systems.Rafael Espindola2010-12-261-1/+1