mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 22:24:07 +00:00
Revert r196358: "llvm-cov: Added support for function checksums."
This currently breaks clang/test/CodeGen/code-coverage.c. The root cause is that the newly introduced access to Funcs[j] is out of bounds. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@196365 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -314,18 +314,12 @@ namespace {
|
||||
this->os = os;
|
||||
|
||||
Function *F = SP.getFunction();
|
||||
DEBUG(dbgs() << "Function: " << getFunctionName(SP) << "\n");
|
||||
DEBUG(dbgs() << "Function: " << F->getName() << "\n");
|
||||
uint32_t i = 0;
|
||||
for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
|
||||
Blocks[BB] = new GCOVBlock(i++, os);
|
||||
}
|
||||
ReturnBlock = new GCOVBlock(i++, os);
|
||||
|
||||
std::string FunctionNameAndLine;
|
||||
raw_string_ostream FNLOS(FunctionNameAndLine);
|
||||
FNLOS << getFunctionName(SP) << SP.getLineNumber();
|
||||
FNLOS.flush();
|
||||
FuncChecksum = hash_value(FunctionNameAndLine);
|
||||
}
|
||||
|
||||
~GCOVFunction() {
|
||||
@ -353,10 +347,6 @@ namespace {
|
||||
return EdgeDestinations;
|
||||
}
|
||||
|
||||
uint32_t getFuncChecksum() {
|
||||
return FuncChecksum;
|
||||
}
|
||||
|
||||
void setCfgChecksum(uint32_t Checksum) {
|
||||
CfgChecksum = Checksum;
|
||||
}
|
||||
@ -369,7 +359,7 @@ namespace {
|
||||
++BlockLen;
|
||||
write(BlockLen);
|
||||
write(Ident);
|
||||
write(FuncChecksum);
|
||||
write(0); // lineno checksum
|
||||
if (UseCfgChecksum)
|
||||
write(CfgChecksum);
|
||||
writeGCOVString(getFunctionName(SP));
|
||||
@ -411,7 +401,6 @@ namespace {
|
||||
private:
|
||||
DISubprogram SP;
|
||||
uint32_t Ident;
|
||||
uint32_t FuncChecksum;
|
||||
bool UseCfgChecksum;
|
||||
uint32_t CfgChecksum;
|
||||
DenseMap<BasicBlock *, GCOVBlock *> Blocks;
|
||||
@ -742,7 +731,6 @@ Constant *GCOVProfiler::getEmitFunctionFunc() {
|
||||
Type *Args[] = {
|
||||
Type::getInt32Ty(*Ctx), // uint32_t ident
|
||||
Type::getInt8PtrTy(*Ctx), // const char *function_name
|
||||
Type::getInt32Ty(*Ctx), // uint32_t func_checksum
|
||||
Type::getInt8Ty(*Ctx), // uint8_t use_extra_checksum
|
||||
Type::getInt32Ty(*Ctx), // uint32_t cfg_checksum
|
||||
};
|
||||
@ -825,12 +813,11 @@ Function *GCOVProfiler::insertCounterWriteout(
|
||||
Builder.getInt32(CfgChecksum));
|
||||
for (unsigned j = 0, e = CountersBySP.size(); j != e; ++j) {
|
||||
DISubprogram SP(CountersBySP[j].second);
|
||||
Builder.CreateCall5(
|
||||
Builder.CreateCall4(
|
||||
EmitFunction, Builder.getInt32(j),
|
||||
Options.FunctionNamesInData ?
|
||||
Builder.CreateGlobalStringPtr(getFunctionName(SP)) :
|
||||
Constant::getNullValue(Builder.getInt8PtrTy()),
|
||||
Builder.getInt32(Funcs[j]->getFuncChecksum()),
|
||||
Builder.getInt8(Options.UseCfgChecksum),
|
||||
Builder.getInt32(CfgChecksum));
|
||||
|
||||
|
Reference in New Issue
Block a user