mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-24 22:24:54 +00:00
Minor cosmetics: indentation, formatting, naming.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76839 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -26,37 +26,37 @@
|
||||
|
||||
namespace llvm {
|
||||
|
||||
class AliasAnalysis;
|
||||
class AnalysisUsage;
|
||||
class ScalarEvolution;
|
||||
class Value;
|
||||
class AliasAnalysis;
|
||||
class AnalysisUsage;
|
||||
class ScalarEvolution;
|
||||
class Value;
|
||||
|
||||
class LoopDependenceAnalysis : public LoopPass {
|
||||
Loop *L;
|
||||
AliasAnalysis *AA;
|
||||
ScalarEvolution *SE;
|
||||
class LoopDependenceAnalysis : public LoopPass {
|
||||
Loop *L;
|
||||
AliasAnalysis *AA;
|
||||
ScalarEvolution *SE;
|
||||
|
||||
public:
|
||||
static char ID; // Class identification, replacement for typeinfo
|
||||
LoopDependenceAnalysis() : LoopPass(&ID) {}
|
||||
public:
|
||||
static char ID; // Class identification, replacement for typeinfo
|
||||
LoopDependenceAnalysis() : LoopPass(&ID) {}
|
||||
|
||||
/// TODO: docs
|
||||
bool isDependencePair(const Value*, const Value*) const;
|
||||
bool depends(Value*, Value*);
|
||||
/// TODO: docs
|
||||
bool isDependencePair(const Value*, const Value*) const;
|
||||
bool depends(Value*, Value*);
|
||||
|
||||
bool runOnLoop(Loop*, LPPassManager&);
|
||||
bool runOnLoop(Loop*, LPPassManager&);
|
||||
|
||||
virtual void getAnalysisUsage(AnalysisUsage&) const;
|
||||
virtual void getAnalysisUsage(AnalysisUsage&) const;
|
||||
|
||||
void print(raw_ostream&, const Module* = 0) const;
|
||||
virtual void print(std::ostream&, const Module* = 0) const;
|
||||
}; // class LoopDependenceAnalysis
|
||||
void print(raw_ostream&, const Module* = 0) const;
|
||||
virtual void print(std::ostream&, const Module* = 0) const;
|
||||
}; // class LoopDependenceAnalysis
|
||||
|
||||
|
||||
// createLoopDependenceAnalysisPass - This creates an instance of the
|
||||
// LoopDependenceAnalysis pass.
|
||||
//
|
||||
LoopPass *createLoopDependenceAnalysisPass();
|
||||
// createLoopDependenceAnalysisPass - This creates an instance of the
|
||||
// LoopDependenceAnalysis pass.
|
||||
//
|
||||
LoopPass *createLoopDependenceAnalysisPass();
|
||||
|
||||
} // namespace llvm
|
||||
|
||||
|
Reference in New Issue
Block a user