mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-31 07:43:37 +00:00
[FaultMaps] Add statistic to count the # of implicit null checks.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@241521 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4214e961d7
commit
0b1bc70dbf
@ -26,6 +26,7 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "llvm/ADT/SmallVector.h"
|
||||
#include "llvm/ADT/Statistic.h"
|
||||
#include "llvm/CodeGen/Passes.h"
|
||||
#include "llvm/CodeGen/MachineFunction.h"
|
||||
#include "llvm/CodeGen/MachineOperand.h"
|
||||
@ -47,6 +48,11 @@ static cl::opt<unsigned> PageSize("imp-null-check-page-size",
|
||||
"bytes"),
|
||||
cl::init(4096));
|
||||
|
||||
#define DEBUG_TYPE "implicit-null-checks"
|
||||
|
||||
STATISTIC(NumImplicitNullChecks,
|
||||
"Number of explicit null checks made implicit");
|
||||
|
||||
namespace {
|
||||
|
||||
class ImplicitNullChecks : public MachineFunctionPass {
|
||||
@ -257,6 +263,8 @@ void ImplicitNullChecks::rewriteNullChecks(
|
||||
// Emit the HandlerLabel as an EH_LABEL.
|
||||
BuildMI(*NC.NullSucc, NC.NullSucc->begin(), DL,
|
||||
TII->get(TargetOpcode::EH_LABEL)).addSym(HandlerLabel);
|
||||
|
||||
NumImplicitNullChecks++;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user