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.
48
GCFunctionInfo
::
GCFunctionInfo
(const Function &F, GCStrategy &S)
51
GCFunctionInfo
::~
GCFunctionInfo
() {}
61
GCFunctionInfo
&GCModuleInfo::getFunctionInfo(const Function &F) {
62
assert(!F.isDeclaration() && "Can only get
GCFunctionInfo
for a definition!");
70
Functions.push_back(make_unique<
GCFunctionInfo
>(F, *S));
71
GCFunctionInfo
*GFI = Functions.back().get();
114
GCFunctionInfo
*FD = &getAnalysis<GCModuleInfo>().getFunctionInfo(F)
[
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
73
class
GCFunctionInfo
{
97
GCFunctionInfo
(const Function &F, GCStrategy &S);
98
~
GCFunctionInfo
();
168
typedef std::vector<std::unique_ptr<
GCFunctionInfo
>> FuncInfoVec;
177
/// Non-owning map to bypass linear search when finding the
GCFunctionInfo
179
typedef DenseMap<const Function *,
GCFunctionInfo
*> finfo_map_type
[
all
...]
Completed in 298 milliseconds