aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/AsmPrinter
AgeCommit message (Expand)Author
2010-05-26There is no need to force an line number entry (using previous location) for ...Devang Patel
2010-05-26Identify instructions, that needs a label to mark debug info entity, in advan...Devang Patel
2010-05-26Remove dead code.Devang Patel
2010-05-26Do not construct location list backword!Devang Patel
2010-05-25First cut at supporting .debug_loc section. Devang Patel
2010-05-25Move the verbose asm output up a bit so it can be used in the special casesEric Christopher
2010-05-25Add support for initialized global data for darwin tls. Update commentsEric Christopher
2010-05-24Do not emit line number entries for unknown debug values.Devang Patel
2010-05-24Encode the Caml frametable by following what the comment says: the number of ...Nicolas Geoffray
2010-05-22Add full bss data support for darwin tls variables.Eric Christopher
2010-05-22Collect variable information during endFunction() instead of beginFunction().Devang Patel
2010-05-21SimplifyDevang Patel
2010-05-21Simplify.Devang Patel
2010-05-20Refactor.Devang Patel
2010-05-20Split DbgVariable. Eventually, variable info will be communicated through fra...Devang Patel
2010-05-20Partial code for emitting thread local bss data.Eric Christopher
2010-05-19Revert r104165.Devang Patel
2010-05-19There is no need to maintain InsnsBeginScopeSet separately. Devang Patel
2010-05-14Do not forget to mark prcessed arguments.Devang Patel
2010-05-14Rename "HasCalls" in MachineFrameInfo to "AdjustsStack" to better describe whatBill Wendling
2010-05-14Add support to preserve type info for the variables that are removed by the o...Devang Patel
2010-05-14Inline Asm: Ensure buffer is newline terminated to match how the text is prin...Daniel Dunbar
2010-05-12Remove unused variable. Tweak a comment while there.Duncan Sands
2010-05-12updated support for the COFF .linkonceNathan Jeffords
2010-05-10Enable multiple Compile Units in one module.Devang Patel
2010-05-07Instead of just verifying compile unit, verify entire type, variable, namespa...Devang Patel
2010-05-07Remove DIGlobal.Devang Patel
2010-05-07Verify entire type descriptor not just tag.Devang Patel
2010-05-07Wrap const MDNode * inside DIDescriptor.Devang Patel
2010-05-07Avoid DIDescriptor::getNode(). Use overloaded operators instead.Devang Patel
2010-05-07Disable the new unknown-location code for now. It causes a majorDan Gohman
2010-05-06Update LabelsBeforeInsn also, when creating unknown-position labels.Dan Gohman
2010-05-06Fix PR7054 - Assertion `Symbol->isUndefined() && "Cannot define a symbol twic...Chris Lattner
2010-05-05Emit debug info for MachineInstrs with unknown debug locations, insteadDan Gohman
2010-05-04Set DW_AT_APPLE_omit_frame_ptr in endFunction() where MachineFunction is avai...Devang Patel
2010-05-01Don't count debug info as instructions. This wasDale Johannesen
2010-04-30Attach AT_APPLE_optimized attribute to optimized function's debug info.Devang Patel
2010-04-29Print variable scope name in DEBUG_VALUE comment. Useful in some cases. e.g.Devang Patel
2010-04-28Rework global alignment computation again. Now we do round upChris Lattner
2010-04-28Emit debug info for byval parameters.Devang Patel
2010-04-28further simplify EmitAlignment by eliminating the Chris Lattner
2010-04-28remove a dead argument to EmitAlignment.Chris Lattner
2010-04-28remove some default arguments to EmitAlignment.Chris Lattner
2010-04-28Refactor. Devang Patel
2010-04-27Use isReg(), isImm() and isFPImm().Devang Patel
2010-04-27Check operand type first.Devang Patel
2010-04-27Ignore DBG_VALUE instructions that points to undef values.Devang Patel
2010-04-27Identify when a lexical scope is split in to multiple instruction ranges. Emi...Devang Patel
2010-04-27Do not count kill, implicit_def instructions as printed instructions.Evan Cheng
2010-04-27round zero-byte .zerofill directives up to 1 byte. ThisChris Lattner