HomeSort by relevance Sort by last modified time
    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"
41 /// directed by the GCStrategy. It also performs automatic root initialization
44 static bool NeedsDefaultLoweringPass(const GCStrategy &C);
45 static bool NeedsCustomLoweringPass(const GCStrategy &C);
47 bool PerformDefaultLowering(Function &F, GCStrategy &Coll);
94 GCStrategy::GCStrategy() :
104 GCStrategy::~GCStrategy() {
    [all...]

Completed in 53 milliseconds