OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getPointerToGlobalIfAvailable
(Results
1 - 7
of
7
) sorted by null
/external/llvm/unittests/ExecutionEngine/
ExecutionEngineTest.cpp
49
EXPECT_EQ(&Mem1, Engine->
getPointerToGlobalIfAvailable
(G1));
52
EXPECT_EQ(&Mem2, Engine->
getPointerToGlobalIfAvailable
(G1));
54
EXPECT_EQ(NULL, Engine->
getPointerToGlobalIfAvailable
(G1));
56
EXPECT_EQ(&Mem2, Engine->
getPointerToGlobalIfAvailable
(G1));
60
EXPECT_EQ(NULL, Engine->
getPointerToGlobalIfAvailable
(G2))
65
EXPECT_EQ(&Mem1, Engine->
getPointerToGlobalIfAvailable
(G2));
66
EXPECT_EQ(&Mem2, Engine->
getPointerToGlobalIfAvailable
(G1))
/external/llvm/lib/ExecutionEngine/JIT/
JIT.cpp
658
if (void *Addr =
getPointerToGlobalIfAvailable
(F))
672
if (void *Addr =
getPointerToGlobalIfAvailable
(F))
684
void *Addr =
getPointerToGlobalIfAvailable
(F);
750
void *Ptr =
getPointerToGlobalIfAvailable
(GV);
782
void *OldAddr =
getPointerToGlobalIfAvailable
(F);
794
void *Addr =
getPointerToGlobalIfAvailable
(F);
JITEmitter.cpp
641
void *Result = JR->TheJIT->
getPointerToGlobalIfAvailable
(F);
710
void *ResultPtr = TheJIT->
getPointerToGlobalIfAvailable
(F);
816
(uint8_t *)TheJIT->
getPointerToGlobalIfAvailable
(F.getFunction());
[
all
...]
/external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h
307
///
getPointerToGlobalIfAvailable
- This returns the address of the specified
310
void *
getPointerToGlobalIfAvailable
(const GlobalValue *GV);
/external/llvm/lib/ExecutionEngine/Interpreter/
ExternalFunctions.cpp
269
RawFn = (RawFunc)(intptr_t)
getPointerToGlobalIfAvailable
(F);
/external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp
222
void *ExecutionEngine::
getPointerToGlobalIfAvailable
(const GlobalValue *GV) {
[
all
...]
/external/llvm/unittests/ExecutionEngine/JIT/
JITTest.cpp
246
int32_t *GPtr = (int32_t*)JIT->
getPointerToGlobalIfAvailable
(G);
Completed in 587 milliseconds