OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:GCFunctionInfo
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/CodeGen/
GCMetadata.cpp
10
// This file implements the
GCFunctionInfo
class and GCModuleInfo pass.
50
GCFunctionInfo
::
GCFunctionInfo
(const Function &F, GCStrategy &S)
53
GCFunctionInfo
::~
GCFunctionInfo
() {}
90
GCFunctionInfo
&GCModuleInfo::getFunctionInfo(const Function &F) {
91
assert(!F.isDeclaration() && "Can only get
GCFunctionInfo
for a definition!");
99
GCFunctionInfo
*GFI = S->insertFunctionInfo(F);
145
GCFunctionInfo
*FD = &getAnalysis<GCModuleInfo>().getFunctionInfo(F);
148
for (
GCFunctionInfo
::roots_iterator RI = FD->roots_begin()
[
all
...]
/external/llvm/include/llvm/CodeGen/
GCMetadata.h
10
// This file declares the
GCFunctionInfo
and GCModuleInfo classes, which are
15
// The
GCFunctionInfo
class logs the data necessary to build a type accurate
25
// GCModuleInfo simply collects
GCFunctionInfo
instances for each Function as
27
// a stack map for the compilation unit as a whole. Therefore,
GCFunctionInfo
81
///
GCFunctionInfo
- Garbage collection metadata for a single function.
83
class
GCFunctionInfo
{
107
GCFunctionInfo
(const Function &F, GCStrategy &S);
108
~
GCFunctionInfo
();
167
typedef DenseMap<const Function*,
GCFunctionInfo
*> finfo_map_type;
195
GCFunctionInfo
&getFunctionInfo(const Function &F)
[
all
...]
Completed in 3273 milliseconds