count the number of relocations performed.

llvm-svn: 22480
This commit is contained in:
Chris Lattner 2005-07-20 16:29:20 +00:00
parent 14568496c0
commit 05732c86d4
1 changed files with 3 additions and 0 deletions

View File

@ -30,6 +30,7 @@ using namespace llvm;
namespace {
Statistic<> NumBytes("jit", "Number of bytes of machine code compiled");
Statistic<> NumRelos("jit", "Number of relocations applied");
JIT *TheJIT = 0;
}
@ -391,6 +392,8 @@ void JITEmitter::finishFunction(MachineFunction &F) {
NumBytes += CurByte-CurBlock;
if (!Relocations.empty()) {
NumRelos += Relocations.size();
// Resolve the relocations to concrete pointers.
for (unsigned i = 0, e = Relocations.size(); i != e; ++i) {
MachineRelocation &MR = Relocations[i];