2018-08-27 11:43:16 +02:00
|
|
|
//===-- InstructionPrecedenceTracking.h -------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Implements a class that is able to define some instructions as "special"
|
|
|
|
// (e.g. as having implicit control flow, or writing memory, or having another
|
|
|
|
// interesting property) and then efficiently answers queries of the types:
|
|
|
|
// 1. Are there any special instructions in the block of interest?
|
|
|
|
// 2. Return first of the special instructions in the given block;
|
|
|
|
// 3. Check if the given instruction is preceeded by the first special
|
|
|
|
// instruction in the same block.
|
|
|
|
// The class provides caching that allows to answer these queries quickly. The
|
|
|
|
// user must make sure that the cached data is invalidated properly whenever
|
|
|
|
// a content of some tracked block is changed.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_TRANSFORMS_UTILS_INSTRUCTIONPRECEDENCETRACKING_H
|
|
|
|
#define LLVM_TRANSFORMS_UTILS_INSTRUCTIONPRECEDENCETRACKING_H
|
|
|
|
|
|
|
|
#include "llvm/IR/Dominators.h"
|
|
|
|
#include "llvm/Transforms/Utils/OrderedInstructions.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class InstructionPrecedenceTracking {
|
|
|
|
// Maps a block to the topmost special instruction in it.
|
|
|
|
DenseMap<const BasicBlock *, const Instruction *>
|
|
|
|
FirstImplicitControlFlowInsts;
|
|
|
|
// Allows to answer queries about precedence of instructions within one block.
|
|
|
|
OrderedInstructions OI;
|
|
|
|
// Blocks for which we have the up-to-date cached information.
|
|
|
|
SmallPtrSet<const BasicBlock *, 8> KnownBlocks;
|
|
|
|
|
|
|
|
// Fills information about the given block's special instructions.
|
|
|
|
void fill(const BasicBlock *BB);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
InstructionPrecedenceTracking(DominatorTree *DT)
|
|
|
|
: OI(OrderedInstructions(DT)) {}
|
|
|
|
|
|
|
|
/// Returns the topmost special instruction from the block \p BB. Returns
|
|
|
|
/// nullptr if there is no special instructions in the block.
|
|
|
|
const Instruction *getFirstSpecialInstruction(const BasicBlock *BB);
|
|
|
|
|
|
|
|
/// Returns true iff at least one instruction from the basic block \p BB is
|
|
|
|
/// special.
|
|
|
|
bool hasSpecialInstructions(const BasicBlock *BB);
|
|
|
|
|
|
|
|
/// Returns true iff the first special instruction of \p Insn's block exists
|
|
|
|
/// and dominates \p Insn.
|
|
|
|
bool isPreceededBySpecialInstruction(const Instruction *Insn);
|
|
|
|
|
|
|
|
/// A predicate that defines whether or not the instruction \p Insn is
|
|
|
|
/// considered special and needs to be tracked. Implementing this method in
|
|
|
|
/// children classes allows to implement tracking of implicit control flow,
|
|
|
|
/// memory writing instructions or any other kinds of instructions we might
|
|
|
|
/// be interested in.
|
|
|
|
virtual bool isSpecialInstruction(const Instruction *Insn) const = 0;
|
|
|
|
|
2018-08-27 12:09:28 +02:00
|
|
|
virtual ~InstructionPrecedenceTracking() = default;
|
|
|
|
|
2018-08-27 11:43:16 +02:00
|
|
|
public:
|
|
|
|
/// Clears cached information about this particular block.
|
|
|
|
void invalidateBlock(const BasicBlock *BB);
|
|
|
|
|
|
|
|
/// Invalidates all information from this tracking.
|
|
|
|
void clear();
|
|
|
|
};
|
|
|
|
|
|
|
|
/// This class allows to keep track on instructions with implicit control flow.
|
|
|
|
/// These are instructions that may not pass execution to their successors. For
|
|
|
|
/// example, throwing calls and guards do not always do this. If we need to know
|
|
|
|
/// for sure that some instruction is guaranteed to execute if the given block
|
|
|
|
/// is reached, then we need to make sure that there is no implicit control flow
|
|
|
|
/// instruction (ICFI) preceeding it. For example, this check is required if we
|
|
|
|
/// perform PRE moving non-speculable instruction to other place.
|
|
|
|
class ImplicitControlFlowTracking : public InstructionPrecedenceTracking {
|
|
|
|
public:
|
|
|
|
ImplicitControlFlowTracking(DominatorTree *DT)
|
|
|
|
: InstructionPrecedenceTracking(DT) {}
|
|
|
|
|
|
|
|
/// Returns the topmost instruction with implicit control flow from the given
|
|
|
|
/// basic block. Returns nullptr if there is no such instructions in the block.
|
|
|
|
const Instruction *getFirstICFI(const BasicBlock *BB) {
|
|
|
|
return getFirstSpecialInstruction(BB);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns true if at least one instruction from the given basic block has
|
|
|
|
/// implicit control flow.
|
|
|
|
bool hasICF(const BasicBlock *BB) {
|
|
|
|
return hasSpecialInstructions(BB);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns true if the first ICFI of Insn's block exists and dominates Insn.
|
|
|
|
bool isDominatedByICFIFromSameBlock(const Instruction *Insn) {
|
|
|
|
return isPreceededBySpecialInstruction(Insn);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool isSpecialInstruction(const Instruction *Insn) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // llvm
|
|
|
|
|
|
|
|
#endif // LLVM_TRANSFORMS_UTILS_INSTRUCTIONPRECEDENCETRACKING_H
|