Fix an oops in x86 sibcall optimization. If the ByVal callee argument is itself passe...
[oota-llvm.git] / lib / Target / X86 / X86COFFMachineModuleInfo.h
1 //===-- llvm/CodeGen/X86COFFMachineModuleInfo.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 is an MMI implementation for X86 COFF (windows) targets.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef X86COFF_MACHINEMODULEINFO_H
15 #define X86COFF_MACHINEMODULEINFO_H
16
17 #include "llvm/CodeGen/MachineModuleInfo.h"
18 #include "llvm/ADT/StringSet.h"
19 #include "X86MachineFunctionInfo.h"
20
21 namespace llvm {
22   class X86MachineFunctionInfo;
23   class TargetData;
24
25 /// X86COFFMachineModuleInfo - This is a MachineModuleInfoImpl implementation
26 /// for X86 COFF targets.
27 class X86COFFMachineModuleInfo : public MachineModuleInfoImpl {
28   StringSet<> CygMingStubs;
29   DenseMap<const Function*, unsigned> FnArgWords;
30 public:
31   X86COFFMachineModuleInfo(const MachineModuleInfo &);
32   ~X86COFFMachineModuleInfo();
33
34   void DecorateCygMingName(MCSymbol* &Name, MCContext &Ctx,
35                            const GlobalValue *GV, const TargetData &TD);
36   void DecorateCygMingName(SmallVectorImpl<char> &Name, const GlobalValue *GV,
37                            const TargetData &TD);
38
39   void addExternalFunction(const StringRef& Name);
40   typedef StringSet<>::const_iterator stub_iterator;
41   stub_iterator stub_begin() const { return CygMingStubs.begin(); }
42   stub_iterator stub_end() const { return CygMingStubs.end(); }
43 };
44
45
46
47 } // end namespace llvm
48
49 #endif