blob: 3f4da25310d70a21ce5857f42dad5786b21cc73d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
//===------------- EscapeAnalysis.h - Pointer escape analysis -------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file defines the interface for the pointer escape analysis.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_ANALYSIS_ESCAPEANALYSIS_H
#define LLVM_ANALYSIS_ESCAPEANALYSIS_H
#include "llvm/Pass.h"
#include <set>
namespace llvm {
class Instruction;
class Value;
/// EscapeAnalysis - This class determines whether an allocation (a MallocInst
/// or an AllocaInst) can escape from the current function. It performs some
/// precomputation, with the rest of the work happening on-demand.
class EscapeAnalysis : public FunctionPass {
private:
std::set<Instruction*> EscapePoints;
public:
static char ID; // Class identification, replacement for typeinfo
EscapeAnalysis() : FunctionPass(intptr_t(&ID)) {}
bool runOnFunction(Function &F);
void releaseMemory() {
EscapePoints.clear();
}
void getAnalysisUsage(AnalysisUsage &AU) const;
//===---------------------------------------------------------------------
// Client API
/// escapes - returns true if the value, which must have a pointer type,
/// can escape.
bool escapes(Value* A);
};
} // end llvm namespace
#endif
|