"git@repo.hca.bsc.es:rferrer/llvm-epi.git" did not exist on "f793fe14022b727502a9aaba4fd3aabcde737155"
- Nov 29, 2010
-
-
Michael J. Spencer authored
llvm-svn: 120298
-
- Nov 03, 2010
-
-
Mikhail Glushenkov authored
Makes it more clear that it is just a path manipulation function. llvm-svn: 118174
-
Dan Gohman authored
llvm-svn: 118130
-
- Nov 02, 2010
-
-
Mikhail Glushenkov authored
llvm-svn: 118088
-
Dan Gohman authored
llvm-svn: 118057
-
Mikhail Glushenkov authored
This makes the behaviour of FindExecutable more consistent across platforms, but I'm not very happy with the name... llvm-svn: 118049
-
- Oct 28, 2010
-
-
Mikhail Glushenkov authored
llvm-svn: 117583
-
- Sep 03, 2010
-
-
Dan Gohman authored
I wasn't able to convince myself that all GetMainExecutable implementations always return absolute paths; this prevents unexpected behavior in case they ever don't. llvm-svn: 112888
-
- Sep 02, 2010
-
-
NAKAMURA Takumi authored
bugpoint uses it. llvm-svn: 112803
-
- Sep 11, 2009
-
-
Dan Gohman authored
working. To support this, add an is_displayed() function to raw_ostream, and generalize Process::StandardOutIsDisplayed and friends in order to support it. Also, call RemoveFileOnSignal before creating a file instead of after, so that the file isn't left behind if the program is interrupted between when the file is created and RemoveFileOnSignal is called. While here, add a -S to llvm-extract and port it to IRReader so that it supports assembly input. llvm-svn: 81568
-
- Aug 24, 2009
-
-
Chris Lattner authored
forcing them down into various .cpp files. This change also: 1. Renames TimeValue::toString() and Path::toString() to ::str() for similarity with the STL. 2. Removes all stream insertion support for sys::Path, forcing clients to call .str(). 3. Removes a use of Config/alloca.h from bugpoint, using smallvector instead. 4. Weans llvm-db off <iostream> sys::Path really needs to be gutted, but I don't have the desire to do it at this point. llvm-svn: 79869
-
- Aug 23, 2009
-
-
Chris Lattner authored
change the raw_ostream one to take the raw_ostream byref instead of byptr. Prune #includes, eliminate a use of Streams.h llvm-svn: 79863
-
- Aug 05, 2009
-
-
Dan Gohman authored
just argv[0]. And remove the code for searching the current working directory and for searching PATH; the point of FindExecutable is not to find whatever version of the executable can be found by searching around, but to find an executable that accompanies the current executable. Update the tools to use sys::Program::FindProgramByName when they want PATH searching. llvm-svn: 78240
-
- Jul 15, 2009
-
-
Dan Gohman authored
llvm-svn: 75796
-
- Jul 12, 2009
-
-
Daniel Dunbar authored
- Patch by Viktor Kutuzov! - Minor tweak by me to add llvm_unreachable calls on FIXMEd error paths. llvm-svn: 75424
-
- Jul 01, 2009
-
-
Daniel Dunbar authored
llvm-svn: 74645
-
Daniel Dunbar authored
- Patch by Viktor Kutuzov, with tweaks by me. llvm-svn: 74608
-
- Dec 29, 2007
-
-
Chris Lattner authored
llvm-svn: 45418
-
- Jul 05, 2007
-
-
Gabor Greif authored
Almost all occurrences of "bytecode" in the sources have been eliminated. llvm-svn: 37913
-
- Dec 08, 2006
-
-
Bill Wendling authored
llvm-svn: 32340
-
- Dec 07, 2006
-
-
Bill Wendling authored
llvm-svn: 32321
-
Bill Wendling authored
now cerr, cout, and NullStream resp. llvm-svn: 32298
-
- Nov 26, 2006
-
-
Bill Wendling authored
llvm-svn: 31927
-
- Jul 08, 2005
-
-
Reid Spencer authored
Get rid of the difference between file paths and directory paths. The Path class now simply stores a path that can refer to either a file or a directory. This required various changes in the implementation and interface of the class with the corresponding impact to its users. Doxygen comments were also updated to reflect these changes. Interface changes are: appendDirectory -> appendComponent appendFile -> appendComponent elideDirectory -> eraseComponent elideFile -> eraseComponent elideSuffix -> eraseSuffix renameFile -> rename setDirectory -> set setFile -> set Changes pass Dejagnu and llvm-test/SingleSource tests. llvm-svn: 22349
-
- Jul 07, 2005
-
-
Reid Spencer authored
Change interface to Path class: readable -> canRead writable -> canWrite executable -> canExecute More (incremental) changes coming to close 495. llvm-svn: 22345
-
- May 11, 2005
-
-
Misha Brukman authored
llvm-svn: 21845
-
- Apr 22, 2005
-
-
Misha Brukman authored
* Combine multiple ``std::cerr <<'' statements into one for simplicity llvm-svn: 21458
-
Misha Brukman authored
llvm-svn: 21422
-
- Jan 02, 2005
-
-
Reid Spencer authored
llvm-svn: 19240
-
Reid Spencer authored
a terminal/console. llvm-svn: 19237
-
- Dec 19, 2004
-
-
Reid Spencer authored
* Remove unneeded header files. * Move RedirectFD static function to lib/System/Unix/Program.cpp * Delete RunProgramWithTimeout, now implemented by sys::Program::ExecuteAndWait. RunProgramWithTimeout is now a convenience func. llvm-svn: 19040
-
- Dec 14, 2004
-
-
Reid Spencer authored
* Remove the ExecWait function. This is now in sys::Program::ExecuteAndWait llvm-svn: 18927
-
Reid Spencer authored
* Remove isExecutable as its now implemented by sys::Path::executable * Make FindExecutable a thin veneer over sys::Program::FindProgramByName. llvm-svn: 18918
-
- Dec 13, 2004
-
-
Reid Spencer authored
Remove AllocateRWXMemory as it is not used any more in LLVM. The function has been replaced with sys::Memory::AllocateRWX several months ago. llvm-svn: 18912
-
- Sep 02, 2004
-
-
Reid Spencer authored
Move include/Config and include/Support into include/llvm/Config, include/llvm/ADT and include/llvm/Support. From here on out, all LLVM public header files must be under include/llvm/. llvm-svn: 16137
-
- Jul 25, 2004
-
-
Chris Lattner authored
llvm-svn: 15195
-
- Jul 24, 2004
-
-
Chris Lattner authored
llvm-svn: 15161
-
Chris Lattner authored
llvm-svn: 15158
-
- Jun 18, 2004
-
-
Misha Brukman authored
* Order #includes alphabetically llvm-svn: 14234
-
Misha Brukman authored
llvm-svn: 14233
-