[Openmp-commits] [PATCH] D32326: [OpenMP] libomptarget: Set ref count for global objects to positive infinity
George Rokos via Phabricator via Openmp-commits
openmp-commits at lists.llvm.org
Thu Apr 20 16:36:57 PDT 2017
grokos created this revision.
grokos added a project: OpenMP.
Herald added a subscriber: rengolin.
According to the standard, the reference counter of global objects should be positive infinity. Right now it is set to 1.
Repository:
rL LLVM
https://reviews.llvm.org/D32326
Files:
libomptarget/src/omptarget.cpp
Index: libomptarget/src/omptarget.cpp
===================================================================
--- libomptarget/src/omptarget.cpp
+++ libomptarget/src/omptarget.cpp
@@ -60,6 +60,10 @@
HostDataToTargetTy(uintptr_t BP, uintptr_t B, uintptr_t E, uintptr_t TB)
: HstPtrBase(BP), HstPtrBegin(B), HstPtrEnd(E),
TgtPtrBegin(TB), RefCount(1) {}
+ HostDataToTargetTy(uintptr_t BP, uintptr_t B, uintptr_t E, uintptr_t TB,
+ long RF)
+ : HstPtrBase(BP), HstPtrBegin(B), HstPtrEnd(E),
+ TgtPtrBegin(TB), RefCount(RF) {}
};
typedef std::list<HostDataToTargetTy> HostDataToTargetListTy;
@@ -902,7 +906,7 @@
}
// Return the target pointer begin (where the data will be moved).
-// Lock-free version called from within assertions.
+// Lock-free version called when loading global symbols from the fat binary.
void *DeviceTy::getTgtPtrBegin(void *HstPtrBegin, int64_t Size) {
uintptr_t hp = (uintptr_t)HstPtrBegin;
LookupResult lr = lookupMapping(HstPtrBegin, Size);
@@ -1303,6 +1307,7 @@
}
// process global data that needs to be mapped.
+ Device.DataMapMtx.lock();
__tgt_target_table *HostTable = &TransTable->HostTable;
for (__tgt_offload_entry *CurrDeviceEntry = TargetTable->EntriesBegin,
*CurrHostEntry = HostTable->EntriesBegin,
@@ -1318,15 +1323,18 @@
// therefore we must allow for multiple weak symbols to be loaded from
// the fat binary. Treat these mappings as any other "regular" mapping.
// Add entry to map.
+ if (!Device.getTgtPtrBegin(CurrHostEntry->addr, CurrHostEntry->size))
+ continue;
DP("Add mapping from host " DPxMOD " to device " DPxMOD " with size %zu"
"\n", DPxPTR(CurrHostEntry->addr), DPxPTR(CurrDeviceEntry->addr),
CurrDeviceEntry->size);
- bool IsNew; //unused
- Device.getOrAllocTgtPtr(CurrHostEntry->addr /*HstPtrBegin*/,
- CurrHostEntry->addr /*HstPtrBase*/, CurrHostEntry->size /*Size*/,
- IsNew, false /*IsImplicit*/, true /*UpdateRefCount*/);
+ Device.HostDataToTargetMap.push_front(HostDataToTargetTy(
+ (uintptr_t)CurrHostEntry->addr, (uintptr_t)CurrHostEntry->addr,
+ (uintptr_t)CurrHostEntry->addr + CurrHostEntry->size,
+ (uintptr_t)CurrDeviceEntry->addr, INF_REF_CNT));
}
}
+ Device.DataMapMtx.unlock();
}
TrlTblMtx.unlock();
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D32326.96053.patch
Type: text/x-patch
Size: 2449 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20170420/316c8357/attachment.bin>
More information about the Openmp-commits
mailing list