aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
AgeCommit message (Expand)Author
2009-07-11assert(0) -> LLVM_UNREACHABLE.Torok Edwin
2009-07-11Convert more assert(0)+abort() -> LLVM_UNREACHABLE,Torok Edwin
2009-07-01Remove unused AsmPrinter OptLevel argument, and propogate.Daniel Dunbar
2009-06-25Privatize some more debug-related static data.Owen Anderson
2009-06-24Move local statics to per-instance variables.Owen Anderson
2009-06-24sink management of DwarfWriter & MachineModuleInfo into the AsmPrinter base c...Chris Lattner
2009-06-24sink dwarf finalization out of each target into AsmPrinter::doFinalizationChris Lattner
2009-06-24eliminate the ExtWeakSymbols set from AsmPrinter. This eliminatesChris Lattner
2009-06-19Move up dwarf writer initialization in common AsmPrinter class.Devang Patel
2009-06-18move mangler quote handling from asm printers to TargetAsmInfo.Chris Lattner
2009-06-18On Darwin, ams printer should output a second label before a jump table so th...Evan Cheng
2009-06-14Fix old-style type names in comments.Dan Gohman
2009-05-21Temporarily revert r72191. It was causing an assert during llvm-gccBill Wendling
2009-05-20Introduce DebugScope which gets embedded into the machine instructions' Debug...Argyrios Kyrtzidis
2009-05-09Rename PaddedSize to AllocSize, in the hope that thisDuncan Sands
2009-05-07Move the tablegen-produced DebugLoc handling into a AsmWriter::processDebugLo...Argyrios Kyrtzidis
2009-04-29Instead of passing in an unsigned value for the optimization level, use an enum,Bill Wendling
2009-04-29Second attempt:Bill Wendling
2009-04-28Initialized arrays can be in any address space.Sanjiv Gupta
2009-04-28r70270 isn't ready yet. Back this out. Sorry for the noise.Bill Wendling
2009-04-28Massive check in. This changes the "-fast" flag to "-O#" in llc. If you want toBill Wendling
2009-04-15Construct and emit DW_TAG_inlined_subroutine DIEs for inlined subroutine scop...Devang Patel
2009-04-13Add a new "available_externally" linkage type. This is intendedChris Lattner
2009-04-10Pass in the std::string parameter instead of returning it by value.Bill Wendling
2009-04-10Constify getter methods.Bill Wendling
2009-04-09StringMap<DIE*>::iterator::first() returns a pointer to the first character ofBill Wendling
2009-04-08change printStringChar to emit characters as unsigned char instead of char,Chris Lattner
2009-03-25CodeGen still defaults to non-verbose asm, but llc now overrides it and defau...Evan Cheng
2009-03-24Do not emit comments unless -asm-verbose.Evan Cheng
2009-03-23Fix internal representation of fp80 to be theDale Johannesen
2009-03-20For inline asm output operand that matches an input. Encode the input operand...Evan Cheng
2009-03-13Fix some significant problems with constant pools that resulted in unnecessar...Evan Cheng
2009-03-10wire up support for emitting "special" values from inline asmChris Lattner
2009-03-09just remove the use_empty() check entirely, the only reason itChris Lattner
2009-03-09Make the code generator rip of dead constant expr uses before decidingChris Lattner
2009-02-24Overhaul my earlier submission due to feedback. It's a large patch, but most ofBill Wendling
2009-02-21Drop bunch of half-working stuff in the ext_weak linkage support.Anton Korobeynikov
2009-02-05if we have a large GEP offset on a 32-bit or other target, makeChris Lattner
2009-01-30Enable emitting of constant values in non-default address space as well. The ...Sanjiv Gupta
2009-01-28Rename getAnalysisToUpdate to getAnalysisIfAvailable.Duncan Sands
2009-01-22do not sign extend characters input to isprint. This improvesChris Lattner
2009-01-22Few targets like the tiny little PIC16 have only 16-bit pointers.Sanjiv Gupta
2009-01-15Add the private linkage.Rafael Espindola
2009-01-13Use DwarfWriter to record dbg variables.Devang Patel
2009-01-12Rename getABITypeSize to getTypePaddedSize, asDuncan Sands
2008-12-22Refactor a bunch of code out of AsmPrinter::EmitGlobalConstant into separateDan Gohman
2008-12-19Fix bug 3202.Rafael Espindola
2008-12-03Fix bug 3140.Rafael Espindola
2008-11-22Make a convenient helper for printing offsets.Anton Korobeynikov
2008-11-10eliminate a couple more uses of utohexstr.Chris Lattner