+/// getGlobalValueAtAddress - Return the LLVM global value object that starts
+/// at the specified address.
+///
+const GlobalValue *ExecutionEngine::getGlobalValueAtAddress(void *Addr) {
+ // If we haven't computed the reverse mapping yet, do so first.
+ if (GlobalAddressReverseMap.empty()) {
+ for (std::map<const GlobalValue*, void *>::iterator I =
+ GlobalAddressMap.begin(), E = GlobalAddressMap.end(); I != E; ++I)
+ GlobalAddressReverseMap.insert(std::make_pair(I->second, I->first));
+ }
+
+ std::map<void *, const GlobalValue*>::iterator I =
+ GlobalAddressReverseMap.find(Addr);
+ return I != GlobalAddressReverseMap.end() ? I->second : 0;
+}