summaryrefslogtreecommitdiff
path: root/include/llvm/Transforms/LinkAllPasses.h
blob: 9d27437ea8a55559c45739f9c07ff966888d7bee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
//===- llvm/Transforms/LinkAllPasses.h - Reference All Passes ---*- C++ -*-===//
// 
//                     The LLVM Compiler Infrastructure
//
// This file was developed by Jeff Cohen and is distributed under the
// University of Illinois Open Source License. See LICENSE.TXT for details.
// 
//===----------------------------------------------------------------------===//
//
// This header file is required for building with Microsoft's VC++, as it has
// no way of linking all registered passes into executables other than by
// explicit use.
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_TRANSFORMS_LINKALLPASSES_H
#define LLVM_TRANSFORMS_LINKALLPASSES_H

#ifdef _MSC_VER

#include "llvm/Transforms/Instrumentation.h"
#include "llvm/Transforms/IPO.h"
#include "llvm/Transforms/Scalar.h"
#include "llvm/Transforms/Utils/UnifyFunctionExitNodes.h"

// Trying not to include <windows.h>, though maybe we should...  Problem is,
// it pollutes the global namespace in some really nasty ways.
extern "C" __declspec(dllimport) void* __stdcall GetCurrentProcess();

namespace {
    struct ForceLinking {
        ForceLinking() {
            // We must reference the passes in such a way that VC++ will not
            // delete it all as dead code, even with whole program optimization,
            // yet is effectively a NO-OP.  As the compiler isn't smart enough
            // to know that GetCurrentProcess() never returns
            // INVALID_HANDLE_VALUE, this will do the job.
            if (GetCurrentProcess() != (void *) -1)
                return;

            std::vector<llvm::BasicBlock*> bbv;

            // The commented out calls below refer to non-existent creation
            // functions.  They will be uncommented as the functions are added.

            (void) llvm::createAggressiveDCEPass();
            (void) llvm::createArgumentPromotionPass();
            (void) llvm::createBreakCriticalEdgesPass();
            (void) llvm::createCFGSimplificationPass();
            (void) llvm::createCombineBranchesPass();
            (void) llvm::createConstantMergePass();
            (void) llvm::createConstantPropagationPass();
            (void) llvm::createCorrelatedExpressionEliminationPass();
            (void) llvm::createDeadArgEliminationPass();
            (void) llvm::createDeadCodeEliminationPass();
            (void) llvm::createDeadInstEliminationPass();
            (void) llvm::createDeadStoreEliminationPass();
            (void) llvm::createDeadTypeEliminationPass();
            (void) llvm::createEmitFunctionTablePass();
            (void) llvm::createFunctionInliningPass();
            (void) llvm::createFunctionResolvingPass();
            (void) llvm::createGCSEPass();
            (void) llvm::createGlobalDCEPass();
            (void) llvm::createGlobalOptimizerPass();
            (void) llvm::createIPConstantPropagationPass();
            (void) llvm::createIPSCCPPass();
            (void) llvm::createIndVarSimplifyPass();
            (void) llvm::createInstructionCombiningPass();
            (void) llvm::createInternalizePass();
            (void) llvm::createLICMPass();
            (void) llvm::createLoopInstrumentationPass();
            (void) llvm::createLoopSimplifyPass();
            (void) llvm::createLoopStrengthReducePass();
            (void) llvm::createLoopUnrollPass();
            (void) llvm::createLoopUnswitchPass();
            (void) llvm::createLowerAllocationsPass();
            (void) llvm::createLowerGCPass();
            (void) llvm::createLowerInvokePass();
            (void) llvm::createLowerPackedPass();
            (void) llvm::createLowerSetJmpPass();
            (void) llvm::createLowerSwitchPass();
            (void) llvm::createPromoteMemoryToRegister();
            (void) llvm::createPruneEHPass();
            (void) llvm::createRaiseAllocationsPass();
            (void) llvm::createRaisePointerReferencesPass();
            (void) llvm::createReassociatePass();
            (void) llvm::createSCCPPass();
            (void) llvm::createScalarReplAggregatesPass();
            (void) llvm::createSingleLoopExtractorPass();
            (void) llvm::createTailCallEliminationPass();
            (void) llvm::createTailDuplicationPass();
            (void) llvm::createTraceValuesPassForBasicBlocks();
            (void) llvm::createTraceValuesPassForFunction();
        }
    } X;
};

#endif // _MSC_VER

#endif