[llvm-commits] CVS: llvm/lib/Transforms/Instrumentation/RSProfiling.cpp

2007-05-02 Thread Lauro Ramos Venancio
Changes in directory llvm/lib/Transforms/Instrumentation: RSProfiling.cpp updated: 1.24 -> 1.25 --- Log message: Fix build error. --- Diffs of the changes: (+4 -3) RSProfiling.cpp |7 --- 1 files changed, 4 insertions(+), 3 deletions(-) Index: llvm/lib/Transforms/Instrumentation/

[llvm-commits] CVS: llvm/lib/Transforms/Instrumentation/RSProfiling.cpp

2007-04-17 Thread Chris Lattner
Changes in directory llvm/lib/Transforms/Instrumentation: RSProfiling.cpp updated: 1.22 -> 1.23 --- Log message: remove use of BasicBlock::getNext --- Diffs of the changes: (+4 -3) RSProfiling.cpp |7 --- 1 files changed, 4 insertions(+), 3 deletions(-) Index: llvm/lib/Transforms

[llvm-commits] CVS: llvm/lib/Transforms/Instrumentation/RSProfiling.cpp

2007-04-17 Thread Chris Lattner
Changes in directory llvm/lib/Transforms/Instrumentation: RSProfiling.cpp updated: 1.21 -> 1.22 --- Log message: eliminate use of Instruction::getNext() --- Diffs of the changes: (+15 -13) RSProfiling.cpp | 28 +++- 1 files changed, 15 insertions(+), 13 deletions(

[llvm-commits] CVS: llvm/lib/Transforms/Instrumentation/RSProfiling.cpp

2007-04-16 Thread Anton Korobeynikov
Changes in directory llvm/lib/Transforms/Instrumentation: RSProfiling.cpp updated: 1.20 -> 1.21 --- Log message: Removed tabs everywhere except autogenerated & external files. Add make target for tabs checking. --- Diffs of the changes: (+19 -18) RSProfiling.cpp | 37 +++

[llvm-commits] CVS: llvm/lib/Transforms/Instrumentation/RSProfiling.cpp

2007-01-11 Thread Reid Spencer
Changes in directory llvm/lib/Transforms/Instrumentation: RSProfiling.cpp updated: 1.16 -> 1.17 --- Log message: Implement review feedback for the ConstantBool->ConstantInt merge. Chris recommended that getBoolValue be replaced with getZExtValue and that get(bool) be replaced by get(const Type*

[llvm-commits] CVS: llvm/lib/Transforms/Instrumentation/RSProfiling.cpp

2007-01-11 Thread Zhou Sheng
Changes in directory llvm/lib/Transforms/Instrumentation: RSProfiling.cpp updated: 1.15 -> 1.16 --- Log message: For PR1043: http://llvm.org/PR1043 : Merge ConstantIntegral and ConstantBool into ConstantInt. Remove ConstantIntegral and ConstantBool from LLVM. --- Diffs of the changes: (+2 -2

[llvm-commits] CVS: llvm/lib/Transforms/Instrumentation/RSProfiling.cpp

2006-12-22 Thread Reid Spencer
Changes in directory llvm/lib/Transforms/Instrumentation: RSProfiling.cpp updated: 1.12 -> 1.13 --- Log message: For PR950: http://llvm.org/PR950 : This patch removes the SetCC instructions and replaces them with the ICmp and FCmp instructions. The SetCondInst instruction has been removed and

[llvm-commits] CVS: llvm/lib/Transforms/Instrumentation/RSProfiling.cpp

2006-12-19 Thread Chris Lattner
Changes in directory llvm/lib/Transforms/Instrumentation: RSProfiling.cpp updated: 1.11 -> 1.12 --- Log message: remove dead statistic --- Diffs of the changes: (+0 -4) RSProfiling.cpp |4 1 files changed, 4 deletions(-) Index: llvm/lib/Transforms/Instrumentation/RSProfiling.cpp

[llvm-commits] CVS: llvm/lib/Transforms/Instrumentation/RSProfiling.cpp

2006-12-06 Thread Chris Lattner
Changes in directory llvm/lib/Transforms/Instrumentation: RSProfiling.cpp updated: 1.10 -> 1.11 --- Log message: Detemplatize the Statistic class. The only type it is instantiated with is 'unsigned'. --- Diffs of the changes: (+1 -1) RSProfiling.cpp |2 +- 1 files changed, 1 insertio

[llvm-commits] CVS: llvm/lib/Transforms/Instrumentation/RSProfiling.cpp TraceBasicBlocks.cpp

2006-11-02 Thread Reid Spencer
Changes in directory llvm/lib/Transforms/Instrumentation: RSProfiling.cpp updated: 1.8 -> 1.9 TraceBasicBlocks.cpp updated: 1.16 -> 1.17 --- Log message: For PR786: http://llvm.org/PR786 : Turn on -Wunused and -Wno-unused-parameter. Clean up most of the resulting fall out by removing unused var

[llvm-commits] CVS: llvm/lib/Transforms/Instrumentation/RSProfiling.cpp RSProfiling.h

2006-05-24 Thread Chris Lattner
Changes in directory llvm/lib/Transforms/Instrumentation: RSProfiling.cpp updated: 1.4 -> 1.5 RSProfiling.h updated: 1.2 -> 1.3 --- Log message: Patches to make the LLVM sources more -pedantic clean. Patch provided by Anton Korobeynikov! This is a step towards closing PR786: http://llvm.cs.u

[llvm-commits] CVS: llvm/lib/Transforms/Instrumentation/RSProfiling.cpp

2005-11-28 Thread Andrew Lenharth
Changes in directory llvm/lib/Transforms/Instrumentation: RSProfiling.cpp updated: 1.3 -> 1.4 --- Log message: a few more comments on the interfaces and functions --- Diffs of the changes: (+20 -3) RSProfiling.cpp | 23 --- 1 files changed, 20 insertions(+), 3 deletion

[llvm-commits] CVS: llvm/lib/Transforms/Instrumentation/RSProfiling.cpp

2005-11-27 Thread Jeff Cohen
Changes in directory llvm/lib/Transforms/Instrumentation: RSProfiling.cpp updated: 1.1 -> 1.2 --- Log message: Fix VC++ warning. --- Diffs of the changes: (+1 -0) RSProfiling.cpp |1 + 1 files changed, 1 insertion(+) Index: llvm/lib/Transforms/Instrumentation/RSProfiling.cpp diff -u l

[llvm-commits] CVS: llvm/lib/Transforms/Instrumentation/RSProfiling.cpp RSProfiling.h

2005-11-27 Thread Andrew Lenharth
Changes in directory llvm/lib/Transforms/Instrumentation: RSProfiling.cpp added (r1.1) RSProfiling.h added (r1.1) --- Log message: Random sampling (aka Arnold and Ryder) profiling. This is still preliminary, but it works on spec on x86 and alpha. The idea is to allow profiling passes to rem