Displaying 1 result from an estimated 1 matches for "processmbb".
Did you mean:
processjob
2012 Sep 26
0
[LLVMdev] Error while loading profile information
...mp;PIL;
public:
static char ID;
explicit ARMInstrStats(ProfileInfoLoader &_PIL) :
MachineFunctionPass(ID), PIL(_PIL){
printf("\n%s:%d",__FILE__,__LINE__);
fflush(stdout);
}
virtual const char *getPassName() const {
return "ARM Instr Stats Pass";
}
void processMBB(const MachineBasicBlock &MBB) {
//double execcnt=1;
int blckno=0;
blckno=MBB.getNumber();
ProfileInfo &PI=getAnalysis<ProfileInfo>();
printf("\n%s:%d",__FILE__,__LINE__);
fflush(stdout);
const BasicBlock *BB=MBB.getBasicBlock();
if(BB!=NULL...