mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-24 08:24:33 +00:00
llvm-cov: Move some reader debug output out of the tool.
This debug output is really for testing CoverageMappingReader, not the llvm-cov tool. Move it to where it can be more useful. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218183 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -15,12 +15,15 @@
|
||||
#include "llvm/ProfileData/CoverageMappingReader.h"
|
||||
#include "llvm/ADT/DenseSet.h"
|
||||
#include "llvm/Object/ObjectFile.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Support/LEB128.h"
|
||||
|
||||
using namespace llvm;
|
||||
using namespace coverage;
|
||||
using namespace object;
|
||||
|
||||
#define DEBUG_TYPE "coverage-mapping"
|
||||
|
||||
void CoverageMappingIterator::increment() {
|
||||
// Check if all the records were read or if an error occurred while reading
|
||||
// the next record.
|
||||
@ -198,6 +201,18 @@ std::error_code RawCoverageMappingReader::readMappingRegionsSubArray(
|
||||
ColumnStart = 1;
|
||||
ColumnEnd = std::numeric_limits<unsigned>::max();
|
||||
}
|
||||
|
||||
DEBUG({
|
||||
dbgs() << "Counter in file " << InferredFileID << " " << LineStart << ":"
|
||||
<< ColumnStart << " -> " << (LineStart + NumLines) << ":"
|
||||
<< ColumnEnd << ", ";
|
||||
if (Kind == CounterMappingRegion::ExpansionRegion)
|
||||
dbgs() << "Expands to file " << ExpandedFileID;
|
||||
else
|
||||
CounterMappingContext(Expressions).dump(C, dbgs());
|
||||
dbgs() << "\n";
|
||||
});
|
||||
|
||||
MappingRegions.push_back(CounterMappingRegion(
|
||||
C, InferredFileID, LineStart, ColumnStart, LineStart + NumLines,
|
||||
ColumnEnd, HasCodeBefore, Kind));
|
||||
|
Reference in New Issue
Block a user