OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DependenceAnalysis
(Results
1 - 4
of
4
) sorted by null
/external/llvm/lib/Analysis/
DependenceAnalysis.cpp
1
//===--
DependenceAnalysis
.cpp - DA Implementation --------------*- C++ -*-===//
10
//
DependenceAnalysis
is an LLVM pass that analyses dependences between memory
54
#include "llvm/Analysis/
DependenceAnalysis
.h"
115
INITIALIZE_PASS_BEGIN(
DependenceAnalysis
, "da",
120
INITIALIZE_PASS_END(
DependenceAnalysis
, "da",
123
char
DependenceAnalysis
::ID = 0;
127
return new
DependenceAnalysis
();
131
bool
DependenceAnalysis
::runOnFunction(Function &F) {
140
void
DependenceAnalysis
::releaseMemory() {
144
void
DependenceAnalysis
::getAnalysisUsage(AnalysisUsage &AU) const
[
all
...]
Android.mk
21
DependenceAnalysis
.cpp \
/external/llvm/include/llvm/Analysis/
DependenceAnalysis.h
1
//===-- llvm/Analysis/
DependenceAnalysis
.h -------------------- -*- C++ -*-===//
10
//
DependenceAnalysis
is an LLVM pass that analyses dependences between memory
28
//
DependenceAnalysis
attacks the first condition; DependenceGraph will attack
206
friend class
DependenceAnalysis
;
274
friend class
DependenceAnalysis
;
278
///
DependenceAnalysis
- This class is the main dependence-analysis driver.
280
class
DependenceAnalysis
: public FunctionPass {
281
void operator=(const
DependenceAnalysis
&) LLVM_DELETED_FUNCTION;
282
DependenceAnalysis
(const
DependenceAnalysis
&) LLVM_DELETED_FUNCTION
[
all
...]
/external/llvm/lib/Transforms/Utils/
LoopSimplify.cpp
47
#include "llvm/Analysis/
DependenceAnalysis
.h"
765
AU.addPreserved<
DependenceAnalysis
>();
[
all
...]
Completed in 105 milliseconds