OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:LTOModule
(Results
1 - 2
of
2
) sorted by null
/external/llvm/include/llvm/LTO/
LTOModule.h
1
//===-
LTOModule
.h - LLVM Link Time Optimizer ------------------------------===//
10
// This file declares the
LTOModule
class.
39
struct
LTOModule
{
61
LTOModule
(std::unique_ptr<object::IRObjectFile> Obj, TargetMachine *TM);
62
LTOModule
(std::unique_ptr<object::IRObjectFile> Obj, TargetMachine *TM,
66
~
LTOModule
();
86
/// Create an
LTOModule
. N.B. These methods take ownership of the buffer. The
94
static ErrorOr<std::unique_ptr<
LTOModule
>>
96
static ErrorOr<std::unique_ptr<
LTOModule
>>
99
static ErrorOr<std::unique_ptr<
LTOModule
>>
[
all
...]
/external/llvm/lib/LTO/
LTOModule.cpp
1
//===--
LTOModule
.cpp - LLVM Link Time Optimizer --------------------------===//
15
#include "llvm/LTO/
LTOModule
.h"
53
LTOModule
::
LTOModule
(std::unique_ptr<object::IRObjectFile> Obj,
57
LTOModule
::
LTOModule
(std::unique_ptr<object::IRObjectFile> Obj,
62
LTOModule
::~
LTOModule
() {}
66
bool
LTOModule
::isBitcodeFile(const void *Mem, size_t Length) {
72
bool
LTOModule
::isBitcodeFile(const char *Path)
[
all
...]
Completed in 96 milliseconds