|
LLVM
8.0.1
|
#include "llvm/ADT/SetVector.h"#include "llvm/ADT/SmallVector.h"#include "llvm/ADT/Statistic.h"#include "llvm/Analysis/LoopInfo.h"#include "llvm/Analysis/LoopPass.h"#include "llvm/IR/BasicBlock.h"#include "llvm/IR/DerivedTypes.h"#include "llvm/IR/IRBuilder.h"#include "llvm/IR/Instruction.h"#include "llvm/IR/Instructions.h"#include "llvm/IR/IntrinsicInst.h"#include "llvm/IR/Intrinsics.h"#include "llvm/IR/Use.h"#include "llvm/IR/User.h"#include "llvm/IR/Value.h"#include "llvm/Pass.h"#include "llvm/Support/Casting.h"#include "llvm/Support/CommandLine.h"#include "llvm/Support/Compiler.h"#include "llvm/Support/Debug.h"#include "llvm/Support/raw_ostream.h"#include "llvm/Transforms/Scalar.h"#include "llvm/Transforms/Utils.h"#include <algorithm>#include <cassert>#include <cstddef>#include <map>#include <memory>#include <set>
Go to the source code of this file.
Namespaces | |
| llvm | |
| This class represents lattice values for constants. | |
Macros | |
| #define | DEBUG_TYPE "hexagon-vlcr" |
Functions | |
| STATISTIC (HexagonNumVectorLoopCarriedReuse, "Number of values that were reused from a previous iteration.") | |
| void | llvm::initializeHexagonVectorLoopCarriedReusePass (PassRegistry &) |
| Pass * | llvm::createHexagonVectorLoopCarriedReusePass () |
| INITIALIZE_PASS_BEGIN (HexagonVectorLoopCarriedReuse, "hexagon-vlcr", "Hexagon-specific predictive commoning for HVX vectors", false, false) INITIALIZE_PASS_END(HexagonVectorLoopCarriedReuse | |
Variables | |
| static cl::opt< int > | HexagonVLCRIterationLim ("hexagon-vlcr-iteration-lim", cl::Hidden, cl::desc("Maximum distance of loop carried dependences that are handled"), cl::init(2), cl::ZeroOrMore) |
| hexagon | vlcr |
| hexagon Hexagon specific predictive commoning for HVX | vectors |
| hexagon Hexagon specific predictive commoning for HVX | false |
| #define DEBUG_TYPE "hexagon-vlcr" |
Definition at line 151 of file HexagonVectorLoopCarriedReuse.cpp.
| INITIALIZE_PASS_BEGIN | ( | HexagonVectorLoopCarriedReuse | , |
| "hexagon-vlcr" | , | ||
| "Hexagon-specific predictive commoning for HVX vectors" | , | ||
| false | , | ||
| false | |||
| ) |
| STATISTIC | ( | HexagonNumVectorLoopCarriedReuse | , |
| "Number of values that were reused from a previous iteration." | |||
| ) |
| hexagon Hexagon specific predictive commoning for HVX false |
Definition at line 307 of file HexagonVectorLoopCarriedReuse.cpp.
|
static |
| hexagon Hexagon specific predictive commoning for HVX vectors |
Definition at line 307 of file HexagonVectorLoopCarriedReuse.cpp.
| hexagon vlcr |
Definition at line 307 of file HexagonVectorLoopCarriedReuse.cpp.
1.8.13