Displaying 1 result from an estimated 1 matches for "markercount".
2020 May 06
2
Unexpected behavior found in Stack Coloring pass, need clarification
...runOnMachineFunction(..) method present in the StackColoring.cpp file. The
original source can be found here:
https://llvm.org/doxygen/StackColoring_8cpp_source.html
bool StackColoring::runOnMachineFunction(MachineFunction &Func) {
...
...
remapInstructions(SlotRemap);
+ bool markerCount = removeAllMarkers();
+ DenseMap<int, int>::iterator itr = SlotRemap.begin();
+ const AllocaInst *dInst = MFI->getObjectAllocation(itr->first);
+ LLVM_DEBUG(dbgs() << "Set break point here to inspect dInst\n");
+ return markerCount;
}
I'm using the followi...