HomeSort by relevance Sort by last modified time
    Searched refs:RegisterRegAlloc (Results 1 - 8 of 8) sorted by null

  /external/llvm/include/llvm/CodeGen/
RegAllocRegistry.h 11 // pass registry (RegisterRegAlloc).
24 /// RegisterRegAlloc class - Track the registration of register allocators.
27 class RegisterRegAlloc : public MachinePassRegistryNode {
35 RegisterRegAlloc(const char *N, const char *D, FunctionPassCtor C)
40 ~RegisterRegAlloc() { Registry.Remove(this); }
45 RegisterRegAlloc *getNext() const {
46 return (RegisterRegAlloc *)MachinePassRegistryNode::getNext();
48 static RegisterRegAlloc *getList() {
49 return (RegisterRegAlloc *)Registry.getList();
  /external/llvm/lib/CodeGen/
Passes.cpp 620 /// RegisterRegAlloc's global Registry tracks allocator registration.
621 MachinePassRegistry RegisterRegAlloc::Registry;
626 static RegisterRegAlloc
632 static cl::opt<RegisterRegAlloc::FunctionPassCtor, false,
633 RegisterPassParser<RegisterRegAlloc> >
664 RegisterRegAlloc::FunctionPassCtor Ctor = RegisterRegAlloc::getDefault();
669 RegisterRegAlloc::setDefault(RegAlloc);
RegAllocBasic.cpp 45 static RegisterRegAlloc basicRegAlloc("basic", "basic register allocator",
RegAllocPBQP.cpp 63 static RegisterRegAlloc
RegAllocFast.cpp 46 static RegisterRegAlloc
    [all...]
RegAllocGreedy.cpp 95 static RegisterRegAlloc greedyRegAlloc("greedy", "greedy register allocator",
    [all...]
  /frameworks/compile/libbcc/lib/Core/
Compiler.cpp 137 llvm::RegisterRegAlloc::setDefault(llvm::createFastRegisterAllocator);
139 llvm::RegisterRegAlloc::setDefault(llvm::createGreedyRegisterAllocator);
  /frameworks/compile/slang/
slang_backend.cpp 179 llvm::RegisterRegAlloc::setDefault((mCodeGenOpts.OptimizationLevel == 0) ?

Completed in 3641 milliseconds