summaryrefslogtreecommitdiff
path: root/tools/verify-uselistorder
diff options
context:
space:
mode:
authorDuncan P. N. Exon Smith <dexonsmith@apple.com>2014-08-01 23:03:36 +0000
committerDuncan P. N. Exon Smith <dexonsmith@apple.com>2014-08-01 23:03:36 +0000
commitb2b0ad4c75ce683da6f92de378c1c3422fc938a9 (patch)
tree4457aa397f556e82eeee035cc7f77cbc97fe1db1 /tools/verify-uselistorder
parent65225b64bbd924271c433c408f294941da73efc6 (diff)
verify-uselistorder: Move shuffleUseLists() out of lib/IR
`shuffleUseLists()` is only used in `verify-uselistorder`, so move it there to avoid bloating other executables. As a drive-by, update some of the header docs. This is part of PR5680. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@214592 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/verify-uselistorder')
-rw-r--r--tools/verify-uselistorder/verify-uselistorder.cpp105
1 files changed, 100 insertions, 5 deletions
diff --git a/tools/verify-uselistorder/verify-uselistorder.cpp b/tools/verify-uselistorder/verify-uselistorder.cpp
index 7b81b4f516c..429daa13b98 100644
--- a/tools/verify-uselistorder/verify-uselistorder.cpp
+++ b/tools/verify-uselistorder/verify-uselistorder.cpp
@@ -11,8 +11,8 @@
// provided IR, this tool shuffles the use-lists and then writes and reads to a
// separate Module whose use-list orders are compared to the original.
//
-// The shuffles are deterministic and somewhat naive. On a given shuffle, some
-// use-lists will not change at all. The algorithm per iteration is as follows:
+// The shuffles are deterministic, but guarantee that use-lists will change.
+// The algorithm per iteration is as follows:
//
// 1. Seed the random number generator. The seed is different for each
// shuffle. Shuffle 0 uses default+0, shuffle 1 uses default+1, and so on.
@@ -21,14 +21,14 @@
//
// 3. Assign a random number to each Use in the Value's use-list in order.
//
-// 4. Sort the use-list using Value::sortUseList(), which is a stable sort.
+// 4. If the numbers are already in order, reassign numbers until they aren't.
//
-// Shuffling a larger number of times provides a better statistical guarantee
-// that each use-list has changed at least once.
+// 5. Sort the use-list using Value::sortUseList(), which is a stable sort.
//
//===----------------------------------------------------------------------===//
#include "llvm/ADT/DenseMap.h"
+#include "llvm/ADT/DenseSet.h"
#include "llvm/AsmParser/Parser.h"
#include "llvm/Bitcode/ReaderWriter.h"
#include "llvm/IR/LLVMContext.h"
@@ -46,6 +46,8 @@
#include "llvm/Support/Signals.h"
#include "llvm/Support/SourceMgr.h"
#include "llvm/Support/SystemUtils.h"
+#include <random>
+#include <vector>
using namespace llvm;
@@ -368,6 +370,99 @@ static void verifyUseListOrder(const Module &M) {
report_fatal_error("assembly use-list order changed");
}
+static void shuffleValueUseLists(Value *V, std::minstd_rand0 &Gen,
+ DenseSet<Value *> &Seen) {
+ if (!Seen.insert(V).second)
+ return;
+
+ if (auto *C = dyn_cast<Constant>(V))
+ if (!isa<GlobalValue>(C))
+ for (Value *Op : C->operands())
+ shuffleValueUseLists(Op, Gen, Seen);
+
+ if (V->use_empty() || std::next(V->use_begin()) == V->use_end())
+ // Nothing to shuffle for 0 or 1 users.
+ return;
+
+ // Generate random numbers between 10 and 99, which will line up nicely in
+ // debug output. We're not worried about collisons here.
+ DEBUG(dbgs() << "V = "; V->dump());
+ std::uniform_int_distribution<short> Dist(10, 99);
+ SmallDenseMap<const Use *, short, 16> Order;
+ auto compareUses =
+ [&Order](const Use &L, const Use &R) { return Order[&L] < Order[&R]; };
+ do {
+ for (const Use &U : V->uses()) {
+ auto I = Dist(Gen);
+ Order[&U] = I;
+ DEBUG(dbgs() << " - order: " << I << ", op = " << U.getOperandNo()
+ << ", U = ";
+ U.getUser()->dump());
+ }
+ } while (std::is_sorted(V->use_begin(), V->use_end(), compareUses));
+
+ DEBUG(dbgs() << " => shuffle\n");
+ V->sortUseList(compareUses);
+
+ DEBUG({
+ for (const Use &U : V->uses()) {
+ dbgs() << " - order: " << Order.lookup(&U)
+ << ", op = " << U.getOperandNo() << ", U = ";
+ U.getUser()->dump();
+ }
+ });
+}
+
+/// Shuffle all use-lists in a module.
+void shuffleUseLists(Module &M, unsigned SeedOffset) {
+ DEBUG(dbgs() << "*** shuffle-use-lists ***\n");
+ std::minstd_rand0 Gen(std::minstd_rand0::default_seed + SeedOffset);
+ DenseSet<Value *> Seen;
+
+ // Shuffle the use-list of each value that would be serialized to an IR file
+ // (bitcode or assembly).
+ auto shuffle = [&](Value *V) { shuffleValueUseLists(V, Gen, Seen); };
+
+ // Globals.
+ for (GlobalVariable &G : M.globals())
+ shuffle(&G);
+ for (GlobalAlias &A : M.aliases())
+ shuffle(&A);
+ for (Function &F : M)
+ shuffle(&F);
+
+ // Constants used by globals.
+ for (GlobalVariable &G : M.globals())
+ if (G.hasInitializer())
+ shuffle(G.getInitializer());
+ for (GlobalAlias &A : M.aliases())
+ shuffle(A.getAliasee());
+ for (Function &F : M)
+ if (F.hasPrefixData())
+ shuffle(F.getPrefixData());
+
+ // Function bodies.
+ for (Function &F : M) {
+ for (Argument &A : F.args())
+ shuffle(&A);
+ for (BasicBlock &BB : F)
+ shuffle(&BB);
+ for (BasicBlock &BB : F)
+ for (Instruction &I : BB)
+ shuffle(&I);
+
+ // Constants used by instructions.
+ for (BasicBlock &BB : F)
+ for (Instruction &I : BB)
+ for (Value *Op : I.operands())
+ if ((isa<Constant>(Op) && !isa<GlobalValue>(*Op)) ||
+ isa<InlineAsm>(Op))
+ shuffle(Op);
+ }
+
+ DEBUG(dbgs() << "\n");
+}
+
int main(int argc, char **argv) {
sys::PrintStackTraceOnErrorSignal();
llvm::PrettyStackTraceProgram X(argc, argv);