[llvm-commits] CVS: llvm/tools/llvmc/CompilerDriver.cpp

2007-05-06 Thread Chris Lattner
Changes in directory llvm/tools/llvmc: CompilerDriver.cpp updated: 1.50 -> 1.51 --- Log message: use the new MemoryBuffer interfaces to simplify error reporting in clients. --- Diffs of the changes: (+1 -2) CompilerDriver.cpp |3 +-- 1 files changed, 1 insertion(+), 2 deletions(-) In

[llvm-commits] CVS: llvm/tools/llvmc/CompilerDriver.cpp Makefile

2007-05-06 Thread Chris Lattner
Changes in directory llvm/tools/llvmc: CompilerDriver.cpp updated: 1.49 -> 1.50 Makefile updated: 1.25 -> 1.26 --- Log message: switch tools to bitcode instead of bytecode --- Diffs of the changes: (+7 -16) CompilerDriver.cpp | 21 ++--- Makefile |2 +- 2 fi

[llvm-commits] CVS: llvm/tools/llvmc/CompilerDriver.cpp Makefile

2007-05-05 Thread Chris Lattner
Changes in directory llvm/tools/llvmc: CompilerDriver.cpp updated: 1.48 -> 1.49 Makefile updated: 1.24 -> 1.25 --- Log message: add bitcode support, optimize reading to not read all function bodies just to get deplibs --- Diffs of the changes: (+17 -5) CompilerDriver.cpp | 20 +++

[llvm-commits] CVS: llvm/tools/llvmc/CompilerDriver.cpp

2007-04-08 Thread Reid Spencer
Changes in directory llvm/tools/llvmc: CompilerDriver.cpp updated: 1.47 -> 1.48 --- Log message: Make TempDir a PathWithStatus so we don't have to cast it to one. --- Diffs of the changes: (+2 -3) CompilerDriver.cpp |5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) Index: ll

[llvm-commits] CVS: llvm/tools/llvmc/CompilerDriver.cpp

2007-04-07 Thread Reid Spencer
Changes in directory llvm/tools/llvmc: CompilerDriver.cpp updated: 1.46 -> 1.47 --- Log message: For PR1291: http://llvm.org/PR1291 : Change uses of sys::Path class to sys::PathWithStatus in those places where the file status information is needed. --- Diffs of the changes: (+2 -1) Compile

[llvm-commits] CVS: llvm/tools/llvmc/CompilerDriver.cpp

2007-03-29 Thread Reid Spencer
Changes in directory llvm/tools/llvmc: CompilerDriver.cpp updated: 1.45 -> 1.46 --- Log message: For PR789: http://llvm.org/PR789 : Make the sys::Path::getFileStatus function more efficient by having it return a pointer to the FileStatus structure rather than copy it. Adjust uses of the functio

[llvm-commits] CVS: llvm/tools/llvmc/CompilerDriver.cpp

2007-02-16 Thread Anton Korobeynikov
Changes in directory llvm/tools/llvmc: CompilerDriver.cpp updated: 1.44 -> 1.45 --- Log message: Add possibility to set memory limit for binaries run via libSystem. This is especially needed for bugpoint. This partly implements PR688: http://llvm.org/PR688 --- Diffs of the changes: (+2 -2

[llvm-commits] CVS: llvm/tools/llvmc/CompilerDriver.cpp

2007-02-07 Thread Chris Lattner
Changes in directory llvm/tools/llvmc: CompilerDriver.cpp updated: 1.43 -> 1.44 --- Log message: move an llvmc-specific function out of the bcreader into llvmc. --- Diffs of the changes: (+17 -0) CompilerDriver.cpp | 17 + 1 files changed, 17 insertions(+) Index: llvm/t

[llvm-commits] CVS: llvm/tools/llvmc/CompilerDriver.cpp

2007-02-07 Thread Chris Lattner
Changes in directory llvm/tools/llvmc: CompilerDriver.cpp updated: 1.42 -> 1.43 --- Log message: push bytecode decompressor out through APIs. Now the bytecode reader api's look like this: ModuleProvider *getBytecodeModuleProvider( const std::string &Filename, ///< Name of file to be read

[llvm-commits] CVS: llvm/tools/llvmc/CompilerDriver.cpp

2006-11-02 Thread Reid Spencer
Changes in directory llvm/tools/llvmc: CompilerDriver.cpp updated: 1.41 -> 1.42 --- 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 variables. Remaining warnings have to do with unused functio

[llvm-commits] CVS: llvm/tools/llvmc/CompilerDriver.cpp

2006-08-25 Thread Reid Spencer
Changes in directory llvm/tools/llvmc: CompilerDriver.cpp updated: 1.40 -> 1.41 --- Log message: For PR797: http://llvm.org/PR797 : Remove exception throwing/handling from lib/Bytecode, and adjust its users to compensate for changes in the interface. --- Diffs of the changes: (+3 -2) Compi

[llvm-commits] CVS: llvm/tools/llvmc/CompilerDriver.cpp

2006-08-22 Thread Reid Spencer
Changes in directory llvm/tools/llvmc: CompilerDriver.cpp updated: 1.39 -> 1.40 --- Log message: Make the sys::Path::GetTemporaryDirectory method not throw exceptions and adjust users of it to compensate. --- Diffs of the changes: (+30 -10) CompilerDriver.cpp | 40 +++

[llvm-commits] CVS: llvm/tools/llvmc/CompilerDriver.cpp CompilerDriver.h llvmc.cpp

2006-08-20 Thread Reid Spencer
Changes in directory llvm/tools/llvmc: CompilerDriver.cpp updated: 1.38 -> 1.39 CompilerDriver.h updated: 1.20 -> 1.21 llvmc.cpp updated: 1.29 -> 1.30 --- Log message: For PR797: http://llvm.org/PR797 : Adjust usage of the ExecuteAndWait function to use the last argument which is the ErrMsg str

[llvm-commits] CVS: llvm/tools/llvmc/CompilerDriver.cpp Configuration.cpp Makefile c

2006-08-16 Thread Reid Spencer
Changes in directory llvm/tools/llvmc: CompilerDriver.cpp updated: 1.37 -> 1.38 Configuration.cpp updated: 1.24 -> 1.25 Makefile updated: 1.20 -> 1.21 c updated: 1.1 -> 1.2 --- Log message: Patches to correct several bugs in llvmc. Patches contributed by Bram Adams. Thanks Bram. --- Diffs of

[llvm-commits] CVS: llvm/tools/llvmc/CompilerDriver.cpp

2006-08-01 Thread Chris Lattner
Changes in directory llvm/tools/llvmc: CompilerDriver.cpp updated: 1.36 -> 1.37 --- Log message: No need to check isWriteable here (which isn't sufficient anyway). Just attempt to do the operation and if it fails, oh well. --- Diffs of the changes: (+2 -1) CompilerDriver.cpp |3 ++- 1

[llvm-commits] CVS: llvm/tools/llvmc/CompilerDriver.cpp CompilerDriver.h ConfigLexer.cpp.cvs ConfigLexer.h Configuration.cpp Configuration.h llvmc.cpp

2006-05-29 Thread Chris Lattner
Changes in directory llvm/tools/llvmc: CompilerDriver.cpp updated: 1.35 -> 1.36 CompilerDriver.h updated: 1.19 -> 1.20 ConfigLexer.cpp.cvs updated: 1.1 -> 1.2 ConfigLexer.h updated: 1.14 -> 1.15 Configuration.cpp updated: 1.23 -> 1.24 Configuration.h updated: 1.7 -> 1.8 llvmc.cpp updated: 1.28 -