"git@repo.hca.bsc.es:rferrer/llvm-epi-0.8.git" did not exist on "b65dbfff527537c10406632e14ecd94b8896a042"
- Dec 03, 2012
-
-
Chandler Carruth authored
Sooooo many of these had incorrect or strange main module includes. I have manually inspected all of these, and fixed the main module include to be the nearest plausible thing I could find. If you own or care about any of these source files, I encourage you to take some time and check that these edits were sensible. I can't have broken anything (I strictly added headers, and reordered them, never removed), but they may not be the headers you'd really like to identify as containing the API being implemented. Many forward declarations and missing includes were added to a header files to allow them to parse cleanly when included first. The main module rule does in fact have its merits. =] llvm-svn: 169131
-
- Nov 05, 2011
-
-
Benjamin Kramer authored
llvm-svn: 143799
-
- Oct 16, 2011
-
-
Benjamin Kramer authored
While at it, merge some format strings. llvm-svn: 142140
-
- Nov 29, 2010
-
-
Michael J. Spencer authored
llvm-svn: 120298
-
- Aug 07, 2010
-
-
Benjamin Kramer authored
llvm-svn: 110518
-
Benjamin Kramer authored
llvm-svn: 110516
-
- Jun 18, 2010
-
-
Dan Gohman authored
switch from this: if (TimePassesIsEnabled) { NamedRegionTimer T(Name, GroupName); do_something(); } else { do_something(); // duplicate the code, this time without a timer! } to this: { NamedRegionTimer T(Name, GroupName, TimePassesIsEnabled); do_something(); } llvm-svn: 106285
-
- May 19, 2010
-
-
Dan Gohman authored
llvm-svn: 104095
-
- Apr 15, 2010
-
-
Dan Gohman authored
llvm-svn: 101376
-
- Mar 30, 2010
-
-
Chris Lattner authored
llvm-svn: 99877
-
Chris Lattner authored
implement TimerGroup::printAll, which prints and resets all active timers. llvm-svn: 99876
-
Chris Lattner authored
TimerGroup copy ctor and assignment operator. llvm-svn: 99875
-
Chris Lattner authored
have it always return a new stream to simplify clients. llvm-svn: 99874
-
Chris Lattner authored
llvm-svn: 99873
-
Chris Lattner authored
instead of just a count of them, and refactor the guts of report printing out of removeTimer into its own method. Refactor addTimerToPrint away. llvm-svn: 99872
-
Chris Lattner authored
timers by pointer instead of by-value. llvm-svn: 99871
-
Chris Lattner authored
llvm-svn: 99870
-
Chris Lattner authored
llvm-svn: 99862
-
- Mar 29, 2010
-
-
Chris Lattner authored
llvm-svn: 99842
-
Chris Lattner authored
isn't used by anyone and is better exposed as a non-per-timer thing. Also, stop including System/Mutex.h in Timer.h llvm-svn: 99841
-
Chris Lattner authored
eliminate the per-timer lock (timers should be externally locked if needed), the info-output-stream can never be dbgs(), so drop the check. Make some stuff private. llvm-svn: 99839
-
Chris Lattner authored
llvm-svn: 99834
-
Chris Lattner authored
llvm-svn: 99831
-
- Jan 05, 2010
-
-
David Greene authored
llvm-svn: 92645
-
- Nov 17, 2009
-
-
Owen Anderson authored
llvm-svn: 89056
-
- Nov 07, 2009
-
-
Mikhail Glushenkov authored
llvm-svn: 86347
-
- Aug 23, 2009
-
-
Chris Lattner authored
llvm-svn: 79842
-
- Jul 07, 2009
-
-
Owen Anderson authored
llvm-svn: 74931
-
- Jun 23, 2009
-
-
Owen Anderson authored
Make timers threadsafe again. This isn't quite as nice as I'd hoped (it uses locking rather than atomic arithmetic), but should work on all the platforms we care about. I might revisit this if a totally awesome way to do it occurs to me. llvm-svn: 74002
-
Owen Anderson authored
we care about are capable of supporting it. llvm-svn: 73993
-
Lang Hames authored
llvm-svn: 73988
-
Owen Anderson authored
llvm-svn: 73978
-
Owen Anderson authored
Use 64-bit integer counters for tracking time, rather than doubles. This will be more atomic op friendly. llvm-svn: 73974
-
Owen Anderson authored
llvm-svn: 73963
-
Owen Anderson authored
llvm-svn: 73957
-
Owen Anderson authored
llvm-svn: 73923
-
- Jul 14, 2008
-
-
Dan Gohman authored
the BB member to the current basic block after emitting instructions. llvm-svn: 53567
-
- Jul 12, 2008
-
-
Evan Cheng authored
llvm-svn: 53502
-
- Jul 11, 2008
-
-
Dan Gohman authored
use a timer group for the timers in SelectionDAGISel. Also, Split scheduling out from emitting, to give each their own timer. llvm-svn: 53476
-
Dan Gohman authored
llvm-svn: 53474
-