OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getGlobalValueAtAddress
(Results
1 - 3
of
3
) sorted by null
/external/llvm/unittests/ExecutionEngine/
ExecutionEngineTest.cpp
76
EXPECT_EQ(G1, Engine->
getGlobalValueAtAddress
(&Mem1));
79
EXPECT_EQ(NULL, Engine->
getGlobalValueAtAddress
(&Mem1));
80
EXPECT_EQ(G1, Engine->
getGlobalValueAtAddress
(&Mem2));
85
EXPECT_EQ(G2, Engine->
getGlobalValueAtAddress
(&Mem1));
86
EXPECT_EQ(G1, Engine->
getGlobalValueAtAddress
(&Mem2));
88
EXPECT_EQ(G2, Engine->
getGlobalValueAtAddress
(&Mem1))
90
EXPECT_EQ(NULL, Engine->
getGlobalValueAtAddress
(&Mem2));
92
EXPECT_EQ(NULL, Engine->
getGlobalValueAtAddress
(&Mem1));
93
EXPECT_EQ(G2, Engine->
getGlobalValueAtAddress
(&Mem2))
104
EXPECT_EQ(G1, Engine->
getGlobalValueAtAddress
(&Mem1))
[
all
...]
/external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h
73
/// at the address. This map is not computed unless
getGlobalValueAtAddress
327
///
getGlobalValueAtAddress
- Return the LLVM global value object that starts
330
const GlobalValue *
getGlobalValueAtAddress
(void *Addr);
/external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp
229
const GlobalValue *ExecutionEngine::
getGlobalValueAtAddress
(void *Addr) {
[
all
...]
Completed in 587 milliseconds