[llvm-commits] CVS: llvm/lib/CodeGen/MachOWriter.cpp

2007-03-03 Thread Reid Spencer
Changes in directory llvm/lib/CodeGen: MachOWriter.cpp updated: 1.31 -> 1.32 --- Log message: Remove unneeded header file. --- Diffs of the changes: (+0 -1) MachOWriter.cpp |1 - 1 files changed, 1 deletion(-) Index: llvm/lib/CodeGen/MachOWriter.cpp diff -u llvm/lib/CodeGen/MachOWrit

[llvm-commits] CVS: llvm/lib/CodeGen/MachOWriter.cpp

2007-03-02 Thread Nate Begeman
Changes in directory llvm/lib/CodeGen: MachOWriter.cpp updated: 1.30 -> 1.31 --- Log message: http://llvm.org/bugs/show_bug.cgi?id=1237 --- Diffs of the changes: (+10 -5) MachOWriter.cpp | 15 ++- 1 files changed, 10 insertions(+), 5 deletions(-) Index: llvm/lib/CodeGen/Mac

[llvm-commits] CVS: llvm/lib/CodeGen/MachOWriter.cpp

2007-02-28 Thread Nate Begeman
Changes in directory llvm/lib/CodeGen: MachOWriter.cpp updated: 1.29 -> 1.30 --- Log message: Fix a typo, thanks Bill! --- Diffs of the changes: (+1 -1) MachOWriter.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/CodeGen/MachOWriter.cpp diff -u llvm/lib/Code

[llvm-commits] CVS: llvm/lib/CodeGen/MachOWriter.cpp MachOWriter.h

2007-02-27 Thread Nate Begeman
Changes in directory llvm/lib/CodeGen: MachOWriter.cpp updated: 1.28 -> 1.29 MachOWriter.h updated: 1.1 -> 1.2 --- Log message: More Mach-O writer improvements. --- Diffs of the changes: (+61 -32) MachOWriter.cpp | 85 MachOWriter.

[llvm-commits] CVS: llvm/lib/CodeGen/MachOWriter.cpp

2007-02-06 Thread Nate Begeman
Changes in directory llvm/lib/CodeGen: MachOWriter.cpp updated: 1.22 -> 1.23 --- Log message: Fix a fixme by correctly calculating preferred alignments for functions, based on the alignment of the symbol and the target data's preferred align for that type. Also, rename some arguments for consi

[llvm-commits] CVS: llvm/lib/CodeGen/MachOWriter.cpp

2007-02-02 Thread Bill Wendling
Changes in directory llvm/lib/CodeGen: MachOWriter.cpp updated: 1.21 -> 1.22 --- Log message: Pass in non-Mach-O-specific parameters to the GetTargetRelocation method. --- Diffs of the changes: (+7 -2) MachOWriter.cpp |9 +++-- 1 files changed, 7 insertions(+), 2 deletions(-) Ind

[llvm-commits] CVS: llvm/lib/CodeGen/MachOWriter.cpp

2007-01-29 Thread Nate Begeman
Changes in directory llvm/lib/CodeGen: MachOWriter.cpp updated: 1.20 -> 1.21 --- Log message: Properly support cstrings --- Diffs of the changes: (+8 -3) MachOWriter.cpp | 11 --- 1 files changed, 8 insertions(+), 3 deletions(-) Index: llvm/lib/CodeGen/MachOWriter.cpp diff -u l

[llvm-commits] CVS: llvm/lib/CodeGen/MachOWriter.cpp

2007-01-26 Thread Nate Begeman
Changes in directory llvm/lib/CodeGen: MachOWriter.cpp updated: 1.19 -> 1.20 --- Log message: Handle multiple functions, properly mangle symbols, and fix support for scattered relocations. --- Diffs of the changes: (+41 -16) MachOWriter.cpp | 57 --

[llvm-commits] CVS: llvm/lib/CodeGen/MachOWriter.cpp

2007-01-23 Thread Bill Wendling
Changes in directory llvm/lib/CodeGen: MachOWriter.cpp updated: 1.18 -> 1.19 --- Log message: Make ivars private and use getters. Have the MachOWriter return "Mach-O Writer" for the pass name. --- Diffs of the changes: (+2 -2) MachOWriter.cpp |4 ++-- 1 files changed, 2 insertions(+),

[llvm-commits] CVS: llvm/lib/CodeGen/MachOWriter.cpp

2007-01-23 Thread Bill Wendling
Changes in directory llvm/lib/CodeGen: MachOWriter.cpp updated: 1.17 -> 1.18 --- Log message: Use the TargetMachOWriterInfo class to get this information. --- Diffs of the changes: (+2 -2) MachOWriter.cpp |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/lib/CodeG

[llvm-commits] CVS: llvm/lib/CodeGen/MachOWriter.cpp

2006-09-10 Thread Nate Begeman
Changes in directory llvm/lib/CodeGen: MachOWriter.cpp updated: 1.5 -> 1.6 --- Log message: Behold, more work on relocations. Things are looking pretty good now. --- Diffs of the changes: (+106 -38) MachOWriter.cpp | 144 +--- 1 files c

[llvm-commits] CVS: llvm/lib/CodeGen/MachOWriter.cpp

2006-09-08 Thread Nate Begeman
Changes in directory llvm/lib/CodeGen: MachOWriter.cpp updated: 1.4 -> 1.5 --- Log message: First pass at supporting relocations. Relocations are written correctly to the file now, however the relocated address is currently wrong. Fixing that will require some deep pondering. --- Diffs of t

[llvm-commits] CVS: llvm/lib/CodeGen/MachOWriter.cpp

2006-09-02 Thread Chris Lattner
Changes in directory llvm/lib/CodeGen: MachOWriter.cpp updated: 1.3 -> 1.4 --- Log message: improve compat with certain versions of GCC (on cygwin?) --- Diffs of the changes: (+1 -1) MachOWriter.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/CodeGen/MachOWr

[llvm-commits] CVS: llvm/lib/CodeGen/MachOWriter.cpp

2006-08-26 Thread Nate Begeman
Changes in directory llvm/lib/CodeGen: MachOWriter.cpp updated: 1.2 -> 1.3 --- Log message: Properly size the string table, and emit symbol table and string table entries in the correct order, fixing several fixmes. --- Diffs of the changes: (+82 -60) MachOWriter.cpp | 142 +++

[llvm-commits] CVS: llvm/lib/CodeGen/MachOWriter.cpp

2006-08-24 Thread Nate Begeman
Changes in directory llvm/lib/CodeGen: MachOWriter.cpp updated: 1.1 -> 1.2 --- Log message: Get closer to handling globals correctly. We now generally get them in the right section. --- Diffs of the changes: (+70 -5) MachOWriter.cpp | 75 +

[llvm-commits] CVS: llvm/lib/CodeGen/MachOWriter.cpp

2006-08-23 Thread Nate Begeman
Changes in directory llvm/lib/CodeGen: MachOWriter.cpp added (r1.1) --- Log message: Initial checkin of the Mach-O emitter. There's plenty of fixmes, but it does emit linkable .o files in very simple cases. --- Diffs of the changes: (+428 -0) MachOWriter.cpp | 428 +++