1 //===-LTOModule.h - LLVM Link Time Optimizer ------------------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file declares the LTOModule class.
12 //===----------------------------------------------------------------------===//
17 #include "llvm/Module.h"
18 #include "llvm/ADT/OwningPtr.h"
19 #include "llvm/Target/TargetMachine.h"
20 #include "llvm/ADT/StringMap.h"
22 #include "llvm-c/lto.h"
28 // forward references to llvm classes
39 // C++ class which implements the opaque lto_module_t
44 static bool isBitcodeFile(const void* mem
, size_t length
);
45 static bool isBitcodeFile(const char* path
);
47 static bool isBitcodeFileForTarget(const void* mem
,
48 size_t length
, const char* triplePrefix
);
50 static bool isBitcodeFileForTarget(const char* path
,
51 const char* triplePrefix
);
53 static LTOModule
* makeLTOModule(const char* path
,
55 static LTOModule
* makeLTOModule(const void* mem
, size_t length
,
58 const char* getTargetTriple();
59 uint32_t getSymbolCount();
60 lto_symbol_attributes
getSymbolAttributes(uint32_t index
);
61 const char* getSymbolName(uint32_t index
);
63 llvm::Module
* getLLVVMModule() { return _module
.get(); }
66 LTOModule(llvm::Module
* m
, llvm::TargetMachine
* t
);
68 void lazyParseSymbols();
69 void addDefinedSymbol(llvm::GlobalValue
* def
,
70 llvm::Mangler
& mangler
,
72 void addPotentialUndefinedSymbol(llvm::GlobalValue
* decl
,
73 llvm::Mangler
&mangler
);
74 void findExternalRefs(llvm::Value
* value
,
75 llvm::Mangler
& mangler
);
76 void addDefinedFunctionSymbol(llvm::Function
* f
,
77 llvm::Mangler
&mangler
);
78 void addDefinedDataSymbol(llvm::GlobalValue
* v
,
79 llvm::Mangler
&mangler
);
80 void addAsmGlobalSymbol(const char *);
81 void addObjCClass(llvm::GlobalVariable
* clgv
);
82 void addObjCCategory(llvm::GlobalVariable
* clgv
);
83 void addObjCClassRef(llvm::GlobalVariable
* clgv
);
84 bool objcClassNameFromExpression(llvm::Constant
* c
,
87 static bool isTargetMatch(llvm::MemoryBuffer
* memBuffer
,
88 const char* triplePrefix
);
90 static LTOModule
* makeLTOModule(llvm::MemoryBuffer
* buffer
,
92 static llvm::MemoryBuffer
* makeBuffer(const void* mem
, size_t length
);
94 typedef llvm::StringMap
<uint8_t> StringSet
;
96 struct NameAndAttributes
{
98 lto_symbol_attributes attributes
;
101 llvm::OwningPtr
<llvm::Module
> _module
;
102 llvm::OwningPtr
<llvm::TargetMachine
> _target
;
104 std::vector
<NameAndAttributes
> _symbols
;
105 // _defines and _undefines only needed to disambiguate tentative definitions
107 llvm::StringMap
<NameAndAttributes
> _undefines
;
110 extern std::string
getFeatureString(const char *TargetTriple
);
112 #endif // LTO_MODULE_H