LLVM API Documentation

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
LinkAllCodegenComponents.h
Go to the documentation of this file.
1 //===- llvm/Codegen/LinkAllCodegenComponents.h ------------------*- C++ -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This header file pulls in all codegen related passes for tools like lli and
11 // llc that need this functionality.
12 //
13 //===----------------------------------------------------------------------===//
14 
15 #ifndef LLVM_CODEGEN_LINKALLCODEGENCOMPONENTS_H
16 #define LLVM_CODEGEN_LINKALLCODEGENCOMPONENTS_H
17 
18 #include "llvm/CodeGen/GCs.h"
19 #include "llvm/CodeGen/Passes.h"
22 #include <cstdlib>
23 
24 namespace {
25  struct ForceCodegenLinking {
26  ForceCodegenLinking() {
27  // We must reference the passes in such a way that compilers will not
28  // delete it all as dead code, even with whole program optimization,
29  // yet is effectively a NO-OP. As the compiler isn't smart enough
30  // to know that getenv() never returns -1, this will do the job.
31  if (std::getenv("bar") != (char*) -1)
32  return;
33 
38 
42 
49 
50  }
51  } ForceCodegenLinking; // Force link by creating a global definition.
52 }
53 
54 #endif
void linkOcamlGC()
Creates an ocaml-compatible garbage collector.
Definition: OcamlGC.cpp:32
void linkErlangGC()
Creates an erlang-compatible garbage collector.
Definition: ErlangGC.cpp:43
ScheduleDAGSDNodes * createHybridListDAGScheduler(SelectionDAGISel *IS, CodeGenOpt::Level)
ScheduleDAGSDNodes * createSourceListDAGScheduler(SelectionDAGISel *IS, CodeGenOpt::Level OptLevel)
ScheduleDAGSDNodes * createVLIWDAGScheduler(SelectionDAGISel *IS, CodeGenOpt::Level OptLevel)
createVLIWDAGScheduler - This creates a top-down list scheduler.
ScheduleDAGSDNodes * createDefaultScheduler(SelectionDAGISel *IS, CodeGenOpt::Level OptLevel)
ScheduleDAGSDNodes * createBURRListDAGScheduler(SelectionDAGISel *IS, CodeGenOpt::Level OptLevel)
FunctionPass * createDefaultPBQPRegisterAllocator()
void linkShadowStackGC()
FunctionPass * createBasicRegisterAllocator()
FunctionPass * createGreedyRegisterAllocator()
FunctionPass * createFastRegisterAllocator()
ScheduleDAGSDNodes * createFastDAGScheduler(SelectionDAGISel *IS, CodeGenOpt::Level OptLevel)
char *getenv(const char *name);