OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ModuleID
(Results
1 - 10
of
10
) sorted by null
/external/clang/include/clang/Lex/
ExternalPreprocessorSource.h
43
virtual Module *getModule(unsigned
ModuleID
) = 0;
/external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITObjectCacheTest.cpp
29
const std::string
ModuleID
= M->getModuleIdentifier();
30
if (ObjMap.find(
ModuleID
) != ObjMap.end())
33
ObjMap[
ModuleID
] = copyBuffer(Obj);
56
const std::string
ModuleID
= M->getModuleIdentifier();
57
StringMap<const MemoryBuffer *>::iterator it = ObjMap.find(
ModuleID
);
/external/llvm/include/llvm/IR/
Module.h
172
std::string
ModuleID
; ///< Human readable identifier for the module
186
explicit Module(StringRef
ModuleID
, LLVMContext& C);
196
const std::string &getModuleIdentifier() const { return
ModuleID
; }
202
StringRef getName() const { return
ModuleID
; }
227
///
ModuleID
and the provided pass salt. The returned RNG should not
241
void setModuleIdentifier(StringRef ID) {
ModuleID
= ID; }
/external/llvm/tools/lli/
lli.cpp
260
const std::string
ModuleID
= M->getModuleIdentifier();
262
if (!getCacheFilename(
ModuleID
, CacheName))
275
const std::string
ModuleID
= M->getModuleIdentifier();
277
if (!getCacheFilename(
ModuleID
, CacheName))
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy.cpp
684
// Get the
ModuleID
685
const std::string
ModuleID
= M->getModuleIdentifier();
688
if (0 ==
ModuleID
.compare(0, 3, "IR:")) {
689
std::string IRFileName =
ModuleID
.substr(3);
706
// Get the
ModuleID
707
const std::string
ModuleID
= M->getModuleIdentifier();
710
if (0 ==
ModuleID
.compare(0, 3, "IR:")) {
711
std::string IRFileName =
ModuleID
.substr(3);
910
// Get the
ModuleID
so we can identify IR input files
911
const std::string
ModuleID
= M->getModuleIdentifier()
[
all
...]
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp
703
// Get the
ModuleID
704
const std::string
ModuleID
= M->getModuleIdentifier();
707
if (0 ==
ModuleID
.compare(0, 3, "IR:")) {
708
std::string IRFileName =
ModuleID
.substr(3);
725
// Get the
ModuleID
726
const std::string
ModuleID
= M->getModuleIdentifier();
729
if (0 ==
ModuleID
.compare(0, 3, "IR:")) {
730
std::string IRFileName =
ModuleID
.substr(3);
951
// Get the
ModuleID
so we can identify IR input files
952
const std::string
ModuleID
= M->getModuleIdentifier()
[
all
...]
/external/llvm/lib/IR/
Module.cpp
50
: Context(C), Materializer(),
ModuleID
(MID), DL("") {
Core.cpp
149
LLVMModuleRef LLVMModuleCreateWithName(const char *
ModuleID
) {
150
return wrap(new Module(
ModuleID
, getGlobalContext()));
153
LLVMModuleRef LLVMModuleCreateWithNameInContext(const char *
ModuleID
,
155
return wrap(new Module(
ModuleID
, *unwrap(C)));
[
all
...]
/external/llvm/include/llvm-c/
Core.h
458
LLVMModuleRef LLVMModuleCreateWithName(const char *
ModuleID
);
466
LLVMModuleRef LLVMModuleCreateWithNameInContext(const char *
ModuleID
,
[
all
...]
/external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c
146
CAMLprim LLVMModuleRef llvm_create_module(LLVMContextRef C, value
ModuleID
) {
147
return LLVMModuleCreateWithNameInContext(String_val(
ModuleID
), C);
[
all
...]
Completed in 717 milliseconds