[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCTargetMachine.cpp PPCTargetMachine.h

2007-05-22 Thread Dale Johannesen
Changes in directory llvm/lib/Target/PowerPC: PPCTargetMachine.cpp updated: 1.118 -> 1.119 PPCTargetMachine.h updated: 1.30 -> 1.31 --- Log message: name change requested by review of previous patch --- Diffs of the changes: (+2 -2) PPCTargetMachine.cpp |2 +- PPCTargetMachine.h |

[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCTargetMachine.cpp PPCTargetMachine.h

2007-05-22 Thread Dale Johannesen
Changes in directory llvm/lib/Target/PowerPC: PPCTargetMachine.cpp updated: 1.117 -> 1.118 PPCTargetMachine.h updated: 1.29 -> 1.30 --- Log message: Make tail merging the default, except on powerPC. There was no prior art for a target-dependent default with a command-line override; this way sh

[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCTargetMachine.cpp PPCTargetMachine.h

2007-01-23 Thread Bill Wendling
Changes in directory llvm/lib/Target/PowerPC: PPCTargetMachine.cpp updated: 1.114 -> 1.115 PPCTargetMachine.h updated: 1.27 -> 1.28 --- Log message: Add a field for and construction of the PPCMachOWriterInfo object. --- Diffs of the changes: (+7 -2) PPCTargetMachine.cpp |2 +- PPCTarge

[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCTargetMachine.cpp

2007-01-06 Thread Chris Lattner
Changes in directory llvm/lib/Target/PowerPC: PPCTargetMachine.cpp updated: 1.111 -> 1.112 --- Log message: Disable the macho writer until it is 100% functional. Enabling it when broken invites bug reports. --- Diffs of the changes: (+3 -0) PPCTargetMachine.cpp |3 +++ 1 files changed

[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCTargetMachine.cpp

2006-09-07 Thread Nate Begeman
Changes in directory llvm/lib/Target/PowerPC: PPCTargetMachine.cpp updated: 1.105 -> 1.106 --- Log message: We actually do support object file writing, so don't return true (error) --- Diffs of the changes: (+1 -3) PPCTargetMachine.cpp |4 +--- 1 files changed, 1 insertion(+), 3 deleti

[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCTargetMachine.cpp PPCTargetMachine.h

2006-09-07 Thread Jim Laskey
Changes in directory llvm/lib/Target/PowerPC: PPCTargetMachine.cpp updated: 1.104 -> 1.105 PPCTargetMachine.h updated: 1.24 -> 1.25 --- Log message: 1. Remove condition on delete. 2. Protect and outline createTargetAsmInfo. 3. Misc. kruft. --- Diffs of the changes: (+9 -5) PPCTargetMachi

[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCTargetMachine.cpp

2006-09-03 Thread Chris Lattner
Changes in directory llvm/lib/Target/PowerPC: PPCTargetMachine.cpp updated: 1.101 -> 1.102 --- Log message: Simplify target construction. --- Diffs of the changes: (+1 -1) PPCTargetMachine.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/Target/PowerPC/PPCTar

[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCTargetMachine.cpp

2006-07-12 Thread Chris Lattner
Changes in directory llvm/lib/Target/PowerPC: PPCTargetMachine.cpp updated: 1.96 -> 1.97 --- Log message: An overaggressive #ifdef allows a function to fall off the bottom of the function instead of returning a value. This sometimes allowed the ppc32 jit to be used in 64-bit mode. --- Diff

[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCTargetMachine.cpp

2006-07-06 Thread Chris Lattner
Changes in directory llvm/lib/Target/PowerPC: PPCTargetMachine.cpp updated: 1.95 -> 1.96 --- Log message: Undisable ppc64 jit --- Diffs of the changes: (+1 -1) PPCTargetMachine.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/Target/PowerPC/PPCTargetMachine.c

[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCTargetMachine.cpp

2006-06-16 Thread Chris Lattner
Changes in directory llvm/lib/Target/PowerPC: PPCTargetMachine.cpp updated: 1.92 -> 1.93 --- Log message: Don't pass target name into TargetData anymore, it is never used or needed. Remove explicit casts to std::string now that there is no overload resolution issues in the TargetData ctors. -

[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCTargetMachine.cpp

2006-05-20 Thread Owen Anderson
Changes in directory llvm/lib/Target/PowerPC: PPCTargetMachine.cpp updated: 1.90 -> 1.91 --- Log message: Make TargetData strings less redundant. --- Diffs of the changes: (+1 -1) PPCTargetMachine.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/Target/PowerP

[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCTargetMachine.cpp

2006-05-19 Thread Owen Anderson
Changes in directory llvm/lib/Target/PowerPC: PPCTargetMachine.cpp updated: 1.89 -> 1.90 --- Log message: Make all of the TargetMachine subclasses use the new string TargetData methods. This is part of the on-going work on PR 761: http://llvm.cs.uiuc.edu/PR761 . --- Diffs of the changes: (+

[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCTargetMachine.cpp

2006-04-21 Thread Nate Begeman
Changes in directory llvm/lib/Target/PowerPC: PPCTargetMachine.cpp updated: 1.87 -> 1.88 --- Log message: Fix the comment --- Diffs of the changes: (+1 -1) PPCTargetMachine.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/Target/PowerPC/PPCTargetMachine.cpp d

[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCTargetMachine.cpp

2006-04-08 Thread Nate Begeman
Changes in directory llvm/lib/Target/PowerPC: PPCTargetMachine.cpp updated: 1.85 -> 1.86 --- Log message: Disable switch lowering for targets based on the selection dag isel, letting the code generator handle them directly. --- Diffs of the changes: (+0 -6) PPCTargetMachine.cpp |6

[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCTargetMachine.cpp PPCTargetMachine.h

2006-03-22 Thread Chris Lattner
Changes in directory llvm/lib/Target/PowerPC: PPCTargetMachine.cpp updated: 1.84 -> 1.85 PPCTargetMachine.h updated: 1.17 -> 1.18 --- Log message: Eliminate IntrinsicLowering from TargetMachine. Make the CBE and V9 backends create their own, since they're the only ones that use it. --- Diffs

[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCTargetMachine.cpp

2006-03-16 Thread Evan Cheng
Changes in directory llvm/lib/Target/PowerPC: PPCTargetMachine.cpp updated: 1.83 -> 1.84 --- Log message: Added a way for TargetLowering to specify what values can be used as the scale component of the target addressing mode. --- Diffs of the changes: (+2 -2) PPCTargetMachine.cpp |4 ++

[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCTargetMachine.cpp

2006-03-13 Thread Evan Cheng
Changes in directory llvm/lib/Target/PowerPC: PPCTargetMachine.cpp updated: 1.82 -> 1.83 --- Log message: PPC LSR pass should use target lowering hooks. --- Diffs of the changes: (+2 -2) PPCTargetMachine.cpp |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/lib/Tar

[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCTargetMachine.cpp

2006-02-23 Thread Evan Cheng
Changes in directory llvm/lib/Target/PowerPC: PPCTargetMachine.cpp updated: 1.80 -> 1.81 --- Log message: PPC JIT relocation model should be DynamicNoPIC. --- Diffs of the changes: (+2 -2) PPCTargetMachine.cpp |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/lib/

[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCTargetMachine.cpp PPCTargetMachine.h

2005-11-07 Thread Chris Lattner
Changes in directory llvm/lib/Target/PowerPC: PPCTargetMachine.cpp updated: 1.76 -> 1.77 PPCTargetMachine.h updated: 1.15 -> 1.16 --- Log message: Add a new option to indicate we want the code generator to emit code quickly, not spending tons of time microoptimizing it. This is useful for an -