OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:GCStrategy
(Results
1 - 2
of
2
) sorted by null
/external/llvm/include/llvm/CodeGen/
GCStrategy.h
1
//===-- llvm/CodeGen/
GCStrategy
.h - Garbage collection ----------*- C++ -*-===//
10
//
GCStrategy
coordinates code generation algorithms and implements some itself
16
// When requested, the
GCStrategy
will be populated with data about each
21
//
GCStrategy
can request that the collector insert such points:
46
class
GCStrategy
;
50
typedef Registry<
GCStrategy
> GCRegistry;
52
///
GCStrategy
describes a garbage collector algorithm's code generation
55
class
GCStrategy
{
78
GCStrategy
();
80
virtual ~
GCStrategy
();
[
all
...]
/external/llvm/lib/CodeGen/
GCStrategy.cpp
1
//===--
GCStrategy
.cpp - Garbage collection infrastructure -----------------===//
18
#include "llvm/CodeGen/
GCStrategy
.h"
42
/// directed by the
GCStrategy
. It also performs automatic root initialization
45
static bool NeedsDefaultLoweringPass(const
GCStrategy
&C);
46
static bool NeedsCustomLoweringPass(const
GCStrategy
&C);
48
bool PerformDefaultLowering(Function &F,
GCStrategy
&Coll);
95
GCStrategy
::
GCStrategy
() :
105
GCStrategy
::~
GCStrategy
() {
[
all
...]
Completed in 30 milliseconds