Index: src/IceTargetLowering.cpp |
diff --git a/src/IceTargetLowering.cpp b/src/IceTargetLowering.cpp |
index 0034de5f7ca3e2340eb15e52f23530dfafc8ca56..d1e794312a0a7a9477b1caaf8b4d21e97d78ba08 100644 |
--- a/src/IceTargetLowering.cpp |
+++ b/src/IceTargetLowering.cpp |
@@ -22,8 +22,25 @@ |
#include "IceTargetLowering.h" |
#include "IceTargetLoweringX8632.h" |
+#include "llvm/Support/CommandLine.h" |
+ |
namespace Ice { |
+namespace { |
+ |
+namespace cl = llvm::cl; |
+cl::opt<bool> DoNopInsertion("nop-insertion", cl::desc("Randomly insert NOPs"), |
+ cl::init(false)); |
+ |
+cl::opt<int> MaxNopsPerInstruction( |
+ "max-nops-per-instruction", |
+ cl::desc("Max number of nops to insert per instruction"), cl::init(1)); |
+ |
+cl::opt<int> NopProbabilityAsPercentage( |
+ "nop-insertion-percentage", |
+ cl::desc("Nop insertion probability as percentage"), cl::init(10)); |
+} // end of anonymous namespace |
+ |
void LoweringContext::init(CfgNode *N) { |
Node = N; |
Begin = getNode()->getInsts().begin(); |
@@ -90,6 +107,16 @@ void TargetLowering::doAddressOpt() { |
Context.advanceNext(); |
} |
+bool TargetLowering::shouldDoNopInsertion() const { return DoNopInsertion; } |
+ |
+void TargetLowering::doNopInsertion() { |
+ for (int I = 0; I < MaxNopsPerInstruction; ++I) { |
+ randomlyInsertNop(NopProbabilityAsPercentage / 100.0); |
+ } |
+ Context.advanceCur(); |
+ Context.advanceNext(); |
+} |
+ |
// Lowers a single instruction according to the information in |
// Context, by checking the Context.Cur instruction kind and calling |
// the appropriate lowering method. The lowering method should insert |