summaryrefslogtreecommitdiff
path: root/include/llvm/Support/StableBasicBlockNumbering.h
blob: 5e0f87e489504fc87fb4c759ff50ec72dfcdf219 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
//===- StableBasicBlockNumbering.h - Provide BB identifiers -----*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This class provides a *stable* numbering of basic blocks that does not depend
// on their address in memory (which is nondeterministic).  When requested, this
// class simply provides a unique ID for each basic block in the function
// specified and the inverse mapping.
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_SUPPORT_STABLEBASICBLOCKNUMBERING_H
#define LLVM_SUPPORT_STABLEBASICBLOCKNUMBERING_H

#include "llvm/Function.h"
#include "llvm/ADT/UniqueVector.h"

namespace llvm {
  class StableBasicBlockNumbering {
    // BBNumbering - Holds the numbering.
    UniqueVector<BasicBlock*> BBNumbering;
  public:
    StableBasicBlockNumbering(Function *F = 0) {
      if (F) compute(*F);
    }

    /// compute - If we have not computed a numbering for the function yet, do
    /// so.
    void compute(Function &F) {
      if (BBNumbering.empty()) {
        for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I)
          BBNumbering.insert(I);
      }
    }

    /// getNumber - Return the ID number for the specified BasicBlock.
    ///
    unsigned getNumber(BasicBlock *BB) const {
      unsigned Idx = BBNumbering.idFor(BB);
      assert(Idx && "Invalid basic block or numbering not computed!");
      return Idx-1;
    }

    /// getBlock - Return the BasicBlock corresponding to a particular ID.
    ///
    BasicBlock *getBlock(unsigned N) const {
      assert(N < BBNumbering.size() &&
             "Block ID out of range or numbering not computed!");
      return BBNumbering[N+1];
    }
  };
}

#endif