OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:linkModules
(Results
1 - 7
of
7
) sorted by null
/external/llvm/include/llvm/Linker/
Linker.h
58
static bool
linkModules
(Module &Dest, std::unique_ptr<Module> Src,
/external/llvm/unittests/Linker/
LinkModulesTest.cpp
102
Linker::
linkModules
(*LinkedModule, std::move(M));
176
Linker::
linkModules
(*EmptyM, std::move(InternalM));
183
Linker::
linkModules
(*InternalM, std::move(EmptyM));
199
Linker::
linkModules
(*M1, std::move(M2));
308
Linker::
linkModules
(*Dst, std::move(Src));
/external/llvm/tools/bugpoint/
BugDriver.cpp
135
if (Linker::
linkModules
(*Program, std::move(M)))
Miscompilation.cpp
224
if (Linker::
linkModules
(*M1, std::move(M2)))
390
if (Linker::
linkModules
(*ToNotOptimize,
418
if (Linker::
linkModules
(*ToNotOptimize, std::move(ToOptimizeLoopExtracted)))
586
if (Linker::
linkModules
(*ProgClone, std::move(Extracted)))
[
all
...]
/frameworks/compile/libbcc/lib/Core/
Source.cpp
160
if (llvm::Linker::
linkModules
(*mModule, std::unique_ptr<llvm::Module>(&pSource.getModule())) != 0) {
/external/llvm/lib/Linker/
LinkModules.cpp
1
//===- lib/Linker/
LinkModules
.cpp - Module Linker Implementation ----------===//
25
/// This is an implementation class for the
LinkModules
function, which is the
775
//
LinkModules
entrypoint.
783
bool Linker::
linkModules
(Module &Dest, std::unique_ptr<Module> Src,
836
return Linker::
linkModules
(*D, std::move(M));
/external/clang/lib/CodeGen/
CodeGenAction.cpp
60
LinkModules
;
73
const SmallVectorImpl<std::pair<unsigned, llvm::Module *>> &
LinkModules
,
82
for (auto &I :
LinkModules
)
83
this->
LinkModules
.push_back(
88
for (auto &I :
LinkModules
)
184
for (auto &I :
LinkModules
) {
187
if (Linker::
linkModules
(*M, std::move(I.second), LinkFlags))
646
if (!
LinkModules
.empty())
690
if (
LinkModules
.empty())
698
LinkModules
.clear()
[
all
...]
Completed in 170 milliseconds