From e884dc2c586bc2f6646ffce89fef5100b412326e Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 20 Jul 2005 16:29:20 +0000 Subject: [PATCH] count the number of relocations performed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22480 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/ExecutionEngine/JIT/JITEmitter.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/ExecutionEngine/JIT/JITEmitter.cpp b/lib/ExecutionEngine/JIT/JITEmitter.cpp index 47adee00192..b38e778bfc7 100644 --- a/lib/ExecutionEngine/JIT/JITEmitter.cpp +++ b/lib/ExecutionEngine/JIT/JITEmitter.cpp @@ -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];