mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-23 15:29:51 +00:00
74 lines
1.8 KiB
C
74 lines
1.8 KiB
C
|
//===-- DependenceAnalyzer.h - Dependence Analyzer--------------*- C++ -*-===//
|
||
|
//
|
||
|
// The LLVM Compiler Infrastructure
|
||
|
//
|
||
|
// This file was developed by the LLVM research group and is distributed under
|
||
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
//
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
#ifndef LLVM_DEPENDENCEANALYZER_H
|
||
|
#define LLVM_DEPENDENCEANALYZER_H
|
||
|
|
||
|
#include "llvm/Instructions.h"
|
||
|
#include "llvm/Function.h"
|
||
|
#include "llvm/Pass.h"
|
||
|
#include "llvm/Analysis/AliasAnalysis.h"
|
||
|
#include "llvm/Target/TargetData.h"
|
||
|
#include <vector>
|
||
|
|
||
|
namespace llvm {
|
||
|
|
||
|
//class to represent a dependence
|
||
|
struct Dependence {
|
||
|
|
||
|
enum DataDepType {
|
||
|
TrueDep, AntiDep, OutputDep, NonDateDep,
|
||
|
};
|
||
|
|
||
|
Dependence(int diff, DataDepType dep) : iteDiff(diff), depType(dep) {}
|
||
|
unsigned getIteDiff() { return iteDiff; }
|
||
|
unsigned getDepType() { return depType; }
|
||
|
|
||
|
private:
|
||
|
|
||
|
unsigned iteDiff;
|
||
|
unsigned depType;
|
||
|
};
|
||
|
|
||
|
|
||
|
struct DependenceResult {
|
||
|
std::vector<Dependence> dependences;
|
||
|
DependenceResult(const std::vector<Dependence> &d) : dependences(d) {}
|
||
|
};
|
||
|
|
||
|
|
||
|
class DependenceAnalyzer : public FunctionPass {
|
||
|
AliasAnalysis *AA;
|
||
|
TargetData *TD;
|
||
|
|
||
|
public:
|
||
|
DependenceAnalyzer() { AA = 0; TD = 0; }
|
||
|
virtual bool runOnFunction(Function &F);
|
||
|
virtual const char* getPassName() const { return "DependenceAnalyzer"; }
|
||
|
|
||
|
// getAnalysisUsage
|
||
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
||
|
AU.addRequired<AliasAnalysis>();
|
||
|
AU.addRequired<TargetData>();
|
||
|
}
|
||
|
|
||
|
//get dependence info
|
||
|
DependenceResult getDependenceInfo(Instruction *inst1, Instruction *inst2);
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
#endif
|