aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/Instrumentation/GCOVProfiling.cpp
AgeCommit message (Expand)Author
2013-03-28Minor simplification.Bill Wendling
2013-03-26Use the full path when outputting the `.gcda' file.Bill Wendling
2013-03-20Call the new llvm_gcov_init function to register the environment.Bill Wendling
2013-03-19Register the GCOV writeout functions so that they're emitted serially.Bill Wendling
2013-03-19Emit the linkage name instead of the function name, when available. This meansNick Lewycky
2013-03-18Register the flush function for each compile unit.Bill Wendling
2013-03-14Remove accidentally committed debug line.Nick Lewycky
2013-03-14Refactor GCOV's six constructor arguments into a struct with a getter thatNick Lewycky
2013-03-13No functionality change. Rename emitGCNO() to the more sensibleNick Lewycky
2013-03-09Use the correct index variable. This is the meat of what was supposed to be inNick Lewycky
2013-03-09Fix bug introduced in r176616 when making function identifier numbers stable.Nick Lewycky
2013-03-09Don't emit the extra checksum into the .gcda file if the user hasn't asked forNick Lewycky
2013-03-07Switch from a version 4.2/4.4 switch to a four-byte version string to be putNick Lewycky
2013-02-27In GCC 4.7, function names are now forbidden from .gcda files. Support this byNick Lewycky
2013-02-27Doh, fix behaviour change introduced in r176168 which is tested in clang,Nick Lewycky
2013-02-27IRBuilder has grown all sorts of useful utility functions. Make use of them toNick Lewycky
2013-01-02Move all of the header files which are involved in modelling the LLVM IRChandler Carruth
2012-12-19Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...Bill Wendling
2012-12-18Initialize NoRedZone and remove unused default values.Rafael Espindola
2012-12-10Don't use a red zone for code coverage if the user specified `-mno-red-zone'.Bill Wendling
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth
2012-11-17Plug a memory leak in the GCOV profiling emitter, which never released the ed...Benjamin Kramer
2012-10-24Back out r166591, not sure why this made it through since I cancelled the com...Micah Villmow
2012-10-24Delete a directory that wasn't supposed to be checked in yet.Micah Villmow
2012-10-10Have 'addFnAttr' take the attribute enum value. Then have it build the attrib...Bill Wendling
2012-10-09Use the enum value of the attributes when adding them to the attributes builder.Bill Wendling
2012-10-09Convert to using the Attributes::Builder interface.Bill Wendling
2012-09-17s/__llvm_gcov_flush/__gcov_flush/gBill Wendling
2012-09-14Remove comment.Bill Wendling
2012-09-13Use Nick's suggestion of storing a large NULL into the GV instead of memset, ...Bill Wendling
2012-09-13Introduce the __llvm_gcov_flush function.Bill Wendling
2012-08-30Pass by pointer and not std::string.Bill Wendling
2012-08-30Revert r162855 in favor of changing clang to emit the absolute coverage file ...Bill Wendling
2012-08-29Use the full path to output the .gcda file.Bill Wendling
2012-08-29Use ArrayRef instead of SmallVector when passing vector into function.Bill Wendling
2012-06-30Don't reinsert the 'atexit' function if it already exists.Bill Wendling
2012-06-29Move llvm/Support/IRBuilder.h -> llvm/IRBuilder.hChandler Carruth
2012-06-28Move lib/Analysis/DebugInfo.cpp to lib/VMCore/DebugInfo.cpp andBill Wendling
2012-06-23Extend the IL for selecting TLS models (PR9788)Hans Wennborg
2012-06-01Register the gcov "writeout" at init time. Don't list this as a d'tor. Instead,Bill Wendling
2012-05-28Implement the indirect counter increment code in a better way. Instead ofBill Wendling
2012-05-25The llvm_gcda_increment_indirect_counter function writes to the arguments thatBill Wendling
2011-12-06Expose a switch for the new gcov format.Nick Lewycky
2011-11-27Place the "cfg checksum" around a test. This was recently added in April 2011 toNick Lewycky
2011-09-20If simple ownership works then friendship is not required.Devang Patel
2011-09-20Update GCOVLines to provide interfaces to write line table and calculate comp...Devang Patel
2011-09-20Update comment.Devang Patel
2011-09-20Use StringRef instead of std::string.Devang Patel
2011-09-20Eliminate unnecessary copy of FileName from GCOVLines. Devang Patel
2011-09-20There is no need to write a local utility routine to find subprogram info if ...Devang Patel