mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-20 16:17:38 +00:00
bug 122:
- Replace ConstantPointerRef usage with GlobalValue usage git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14953 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -55,14 +55,12 @@ bool FunctionProfiler::run(Module &M) {
|
||||
new GlobalVariable(ATy, false, GlobalValue::InternalLinkage,
|
||||
Constant::getNullValue(ATy), "FuncProfCounters", &M);
|
||||
|
||||
ConstantPointerRef *CounterCPR = ConstantPointerRef::get(Counters);
|
||||
|
||||
// Instrument all of the functions...
|
||||
unsigned i = 0;
|
||||
for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
|
||||
if (!I->isExternal())
|
||||
// Insert counter at the start of the function
|
||||
IncrementCounterInBlock(I->begin(), i++, CounterCPR);
|
||||
IncrementCounterInBlock(I->begin(), i++, Counters);
|
||||
|
||||
// Add the initialization call to main.
|
||||
InsertProfilingInitCall(Main, "llvm_start_func_profiling", Counters);
|
||||
@@ -96,14 +94,12 @@ bool BlockProfiler::run(Module &M) {
|
||||
new GlobalVariable(ATy, false, GlobalValue::InternalLinkage,
|
||||
Constant::getNullValue(ATy), "BlockProfCounters", &M);
|
||||
|
||||
ConstantPointerRef *CounterCPR = ConstantPointerRef::get(Counters);
|
||||
|
||||
// Instrument all of the blocks...
|
||||
unsigned i = 0;
|
||||
for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
|
||||
for (Function::iterator BB = I->begin(), E = I->end(); BB != E; ++BB)
|
||||
// Insert counter at the start of the block
|
||||
IncrementCounterInBlock(BB, i++, CounterCPR);
|
||||
IncrementCounterInBlock(BB, i++, Counters);
|
||||
|
||||
// Add the initialization call to main.
|
||||
InsertProfilingInitCall(Main, "llvm_start_block_profiling", Counters);
|
||||
|
||||
Reference in New Issue
Block a user