aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/MachOWriter.cpp
Commit message (Expand)AuthorAgeFilesLines
* eliminate the "Value" printing methods that print to a std::ostream.Chris Lattner2009-08-231-2/+2
* rename TAI -> MAI, being careful not to make MAILJMP instructions :)Chris Lattner2009-08-221-9/+9
* Rename TargetAsmInfo (and its subclasses) to MCAsmInfo.Chris Lattner2009-08-221-3/+3
* Rename LessPrivateGlobalPrefix -> LinkerPrivateGlobalPrefix to match theChris Lattner2009-07-211-1/+2
* Simplify the code in DarwinTargetAsmInfo::emitUsedDirectiveFor so that humans...Bill Wendling2009-07-201-1/+0
* Add plumbing for the `linker_private' linkage type. This type is meant forBill Wendling2009-07-201-0/+3
* Reapply my previous asmprinter changes now with more testing and two Chris Lattner2009-07-141-3/+3
* llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Torok Edwin2009-07-141-5/+5
* Revert r7561{9,8,7,6}, which depend on r75610. Daniel Dunbar2009-07-141-3/+3
* Rename getValueName -> getMangledNameChris Lattner2009-07-141-3/+3
* As Chris pointed out, this doesn't actually need an LLVMContext to operate.Owen Anderson2009-07-131-1/+1
* Begin the painful process of tearing apart the rat'ss nest that is Constants....Owen Anderson2009-07-131-1/+1
* assert(0) -> LLVM_UNREACHABLE.Torok Edwin2009-07-111-3/+3
* Convert more assert(0)+abort() -> LLVM_UNREACHABLE,Torok Edwin2009-07-111-5/+7
* Cleanup MachO writer and code emitter. Fix 80 cols problems, remove extra spa...Bruno Cardoso Lopes2009-07-061-51/+129
* Add the Object Code Emitter class. Original patch by Aaron Gray, I did someBruno Cardoso Lopes2009-07-061-85/+68
* Move structures and classes into header files, providing two new headers andBruno Cardoso Lopes2009-06-031-387/+122
* Use uint8_t and int32_t in {JIT,Machine}CodeEmitersBruno Cardoso Lopes2009-05-301-1/+1
* Rename PaddedSize to AllocSize, in the hope that thisDuncan Sands2009-05-091-6/+6
* It makes no sense to have a ODR version of commonDuncan Sands2009-03-111-2/+1
* Introduce new linkage types linkonce_odr, weak_odr, common_odrDuncan Sands2009-03-071-3/+6
* Add support to the JIT for true non-lazy operation. When a call to a functionNate Begeman2009-02-181-0/+5
* Add the private linkage.Rafael Espindola2009-01-151-1/+4
* Rename getABITypeSize to getTypePaddedSize, asDuncan Sands2009-01-121-6/+6
* Fix some release-assert warningsChris Lattner2008-12-191-4/+4
* Fix MachineCodeEmitter to use uintptr_t instead of intptr_t. This avoids some...Evan Cheng2008-12-101-7/+7
* Rename startFunctionStub to startGVStub since it's also used for GV non-lazy ...Evan Cheng2008-11-081-3/+3
* Rename APFloat::convertToAPInt to bitcastToAPInt toDale Johannesen2008-10-091-2/+2
* Tidy up several unbeseeming casts from pointer to intptr_t.Dan Gohman2008-09-041-1/+1
* Use raw_ostream throughout the AsmPrinter.Owen Anderson2008-08-211-2/+3
* Use isSingleValueType instead of isFirstClassType toDan Gohman2008-05-231-1/+1
* Add CommonLinkage; currently tentative definitionsDale Johannesen2008-05-141-1/+3
* Correlate stubs with functions in JIT: when emitting a stub, the JIT tells th...Nicolas Geoffray2008-04-161-2/+3
* Use PassManagerBase instead of FunctionPassManager for functionsDan Gohman2008-03-111-2/+2
* Unbreak build with gcc 4.3: provide missed includes and silence most annoying...Anton Korobeynikov2008-02-201-0/+1
* Enable exception handling int JITNicolas Geoffray2008-02-131-0/+14
* Use getPreferredAlignmentLog or getPreferredAlignmentDuncan Sands2008-01-291-4/+2
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-291-2/+2
* Eliminate the remaining uses of getTypeSize. ThisDuncan Sands2007-11-051-6/+8
* Revise previous patch per review comments.Dale Johannesen2007-09-121-4/+4
* Add APInt interfaces to APFloat (allows directlyDale Johannesen2007-09-111-4/+4
* Next round of APFloat changes.Dale Johannesen2007-09-061-2/+4
* Drop 'const'Devang Patel2007-05-031-1/+1
* Use 'static const char' instead of 'static const int'.Devang Patel2007-05-021-1/+1
* Do not use typeinfo to identify pass in pass manager.Devang Patel2007-05-011-1/+3
* Remove unneeded header file.Reid Spencer2007-03-041-1/+0
* http://llvm.org/bugs/show_bug.cgi?id=1237Nate Begeman2007-03-031-5/+10
* Fix a typo, thanks Bill!Nate Begeman2007-02-281-1/+1
* More Mach-O writer improvements.Nate Begeman2007-02-281-29/+56
* For PR1195:Reid Spencer2007-02-151-1/+1