Displaying 1 result from an estimated 1 matches for "_pil".
Did you mean:
_pid
2012 Sep 26
0
[LLVMdev] Error while loading profile information
...tream>
using namespace llvm;
using namespace std;
namespace llvm{
struct McProfInf oMsProfI[1000];
}
namespace {
class ARMInstrStats : public MachineFunctionPass {
private:
int cnt;
ProfileInfoLoader &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...