Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFadi Hanna <fadim@microsoft.com>2017-08-07 21:28:17 +0300
committerFadi Hanna <fadim@microsoft.com>2017-08-07 21:28:17 +0300
commit95c4bdb748edbbfa1d27f7de007925a36a7936c8 (patch)
tree49fede6a9e38acf44bf4ea8091fbfe67dbebd3df /src/Native/Runtime/MiscHelpers.cpp
parentd1c4689abe76bda148cda44973d7178123265184 (diff)
This changeset includes a couple of workitems that are related to each other:
1) Enable field access for USG cases (Rooting reflectable fields in the graph, filling TODOs in the FieldAccessMap and StaticsInfoHashtable structures) 2) Implementation of TLS fields reflection support for ProjectX (CoreRT is still TODO) 3) Refactoring/simplification of TLS access (deleting the ThreadStaticFieldOffsets struct from the native runtime, and simplifying TLS access code) 4) Adding more tests to the PX DynamicGenerics unit test. [tfs-changeset: 1669403]
Diffstat (limited to 'src/Native/Runtime/MiscHelpers.cpp')
-rw-r--r--src/Native/Runtime/MiscHelpers.cpp63
1 files changed, 42 insertions, 21 deletions
diff --git a/src/Native/Runtime/MiscHelpers.cpp b/src/Native/Runtime/MiscHelpers.cpp
index 8bb976de4..0765eb3bb 100644
--- a/src/Native/Runtime/MiscHelpers.cpp
+++ b/src/Native/Runtime/MiscHelpers.cpp
@@ -349,7 +349,7 @@ COOP_PINVOKE_HELPER(EEType *, RhpGetArrayBaseType, (EEType * pEEType))
// Obtain the address of a thread static field for the current thread given the enclosing type and a field cookie
// obtained from a fixed up binder blob field record.
-COOP_PINVOKE_HELPER(UInt8 *, RhGetThreadStaticFieldAddress, (EEType * pEEType, ThreadStaticFieldOffsets* pFieldCookie))
+COOP_PINVOKE_HELPER(UInt8 *, RhGetThreadStaticFieldAddress, (EEType * pEEType, UInt32 startingOffsetInTlsBlock, UInt32 fieldOffset))
{
RuntimeInstance * pRuntimeInstance = GetRuntimeInstance();
@@ -361,36 +361,57 @@ COOP_PINVOKE_HELPER(UInt8 *, RhGetThreadStaticFieldAddress, (EEType * pEEType, T
if (pEEType->IsDynamicType())
{
+ // Specific TLS storage is allocated for each dynamic type. There is no starting offset since it's not a
+ // TLS storage block shared by multiple types.
+ ASSERT(startingOffsetInTlsBlock == 0);
+
// Special case for thread static fields on dynamic types: the TLS storage is managed by the runtime
// for each dynamically created type with thread statics. The TLS storage size allocated for each type
// is the size of all the thread statics on that type. We use the field offset to get the thread static
// data for that field on the current thread.
UInt8* pTlsStorage = ThreadStore::GetCurrentThread()->GetThreadLocalStorageForDynamicType(pEEType->get_DynamicThreadStaticOffset());
ASSERT(pTlsStorage != NULL);
- return (pFieldCookie != NULL ? pTlsStorage + pFieldCookie->FieldOffset : pTlsStorage);
+ return pTlsStorage + fieldOffset;
}
else
{
- // In all other cases the field cookie contains an offset from the base of all Redhawk thread statics
- // to the field. The TLS index and offset adjustment (in cases where the module was linked with native
- // code using .tls) is that from the exe module.
-
- // In the separate compilation case, the generic unification logic should assure
- // that the pEEType parameter passed in is indeed the "winner" of generic unification,
- // not one of the "losers".
- // TODO: come up with an assert to check this.
- Module * pModule = pRuntimeInstance->FindModuleByReadOnlyDataAddress(pEEType);
- if (pModule == NULL)
- pModule = pRuntimeInstance->FindModuleByDataAddress(pEEType);
- ASSERT(pModule != NULL);
- ModuleHeader * pExeModuleHeader = pModule->GetModuleHeader();
-
- uiTlsIndex = *pExeModuleHeader->PointerToTlsIndex;
- uiFieldOffset = pExeModuleHeader->TlsStartOffset + pFieldCookie->StartingOffsetInTlsBlock + pFieldCookie->FieldOffset;
- }
+#if EETYPE_TYPE_MANAGER && !CORERT /* TODO: CORERT */
+ if (pEEType->HasTypeManager())
+ {
+ TypeManager* pTypeManager = pEEType->GetTypeManagerPtr()->AsTypeManager();
+ ASSERT(pTypeManager != NULL);
+
+ UInt32* pTlsIndex = pTypeManager->GetPointerToTlsIndex();
+ if (pTlsIndex == NULL)
+ return NULL;
+
+ uiTlsIndex = *pTlsIndex;
+ uiFieldOffset = startingOffsetInTlsBlock + fieldOffset;
+ }
+ else
+#endif
+ {
+ // The startingOffsetInTlsBlock is an offset from the base of all Redhawk thread statics
+ // to the field. The TLS index and offset adjustment (in cases where the module was linked with native
+ // code using .tls) is that from the exe module.
+
+ // In the separate compilation case, the generic unification logic should assure
+ // that the pEEType parameter passed in is indeed the "winner" of generic unification,
+ // not one of the "losers".
+ // TODO: come up with an assert to check this.
+ Module * pModule = pRuntimeInstance->FindModuleByReadOnlyDataAddress(pEEType);
+ if (pModule == NULL)
+ pModule = pRuntimeInstance->FindModuleByDataAddress(pEEType);
+ ASSERT(pModule != NULL);
+ ModuleHeader * pExeModuleHeader = pModule->GetModuleHeader();
+
+ uiTlsIndex = *pExeModuleHeader->PointerToTlsIndex;
+ uiFieldOffset = pExeModuleHeader->TlsStartOffset + startingOffsetInTlsBlock + fieldOffset;
+ }
- // Now look at the current thread and retrieve the address of the field.
- return ThreadStore::GetCurrentThread()->GetThreadLocalStorage(uiTlsIndex, uiFieldOffset);
+ // Now look at the current thread and retrieve the address of the field.
+ return ThreadStore::GetCurrentThread()->GetThreadLocalStorage(uiTlsIndex, uiFieldOffset);
+ }
}
#if _TARGET_ARM_