Home
last modified time | relevance | path

Searched refs:getGlobalValueAtAddress (Results 1 – 3 of 3) sorted by relevance

/external/llvm/unittests/ExecutionEngine/
DExecutionEngineTest.cpp84 EXPECT_EQ(G1, Engine->getGlobalValueAtAddress(&Mem1)); in TEST_F()
87 EXPECT_EQ(nullptr, Engine->getGlobalValueAtAddress(&Mem1)); in TEST_F()
88 EXPECT_EQ(G1, Engine->getGlobalValueAtAddress(&Mem2)); in TEST_F()
93 EXPECT_EQ(G2, Engine->getGlobalValueAtAddress(&Mem1)); in TEST_F()
94 EXPECT_EQ(G1, Engine->getGlobalValueAtAddress(&Mem2)); in TEST_F()
96 EXPECT_EQ(G2, Engine->getGlobalValueAtAddress(&Mem1)) in TEST_F()
98 EXPECT_EQ(nullptr, Engine->getGlobalValueAtAddress(&Mem2)); in TEST_F()
100 EXPECT_EQ(nullptr, Engine->getGlobalValueAtAddress(&Mem1)); in TEST_F()
101 EXPECT_EQ(G2, Engine->getGlobalValueAtAddress(&Mem2)) in TEST_F()
112 EXPECT_EQ(G1, Engine->getGlobalValueAtAddress(&Mem1)); in TEST_F()
[all …]
/external/llvm/include/llvm/ExecutionEngine/
DExecutionEngine.h373 const GlobalValue *getGlobalValueAtAddress(void *Addr);
/external/llvm/lib/ExecutionEngine/
DExecutionEngine.cpp302 const GlobalValue *ExecutionEngine::getGlobalValueAtAddress(void *Addr) { in getGlobalValueAtAddress() function in ExecutionEngine