Use macro rather than manually setting thumb bit in debugger.cpp
[platform/upstream/coreclr.git] / Documentation / project-docs / profiling-api-status.md
index c689eae..599e8c1 100644 (file)
@@ -1,80 +1,27 @@
 # Status of CoreCLR Profiler APIs
 
-The notes below will help you determine what profiling APIs are safe to use. The .NET Core project started with the codebase from the desktop CoreCLR/Silverlight so all the profiler APIs present there are also present in the code here. However that doesn't automatically imply that they are all working or being actively tested right now. Our goal is to eventually have everything tested and working across all the supported OSes. As we make progress we'll document it here. If you want to use APIs that we haven't tested yet you are welcome to do so, but you need to do your own testing to determine whether they work. If you do test APIs we haven't gotten to yet, we hope you'll add a note below in the Community Tested API section so that everyone can benefit.
+The .NET Core project started with the codebase from the desktop CoreCLR/Silverlight so all the profiler APIs present there are also present in the code here. This is the status of our testing and porting efforts for these APIs.
 
-# Microsoft Tested APIs:
+## Platform test coverage
 
-### Windows
+- Windows on x86/x64/arm32
+- Linux on x86/x64/arm32
+- OSX 
 
-* ICorProfilerCallback:
- * `Initialize`
- * `ModuleLoadFinished`
- * `ModuleUnloadStarted`
- * `ModuleUnloadFinished`
- * `ModuleAttachedToAssembly`
- * `JITCompilationStarted`
+## Known issues
 
-* ICorProfilerInfo:
- * `GetModuleInfo`
- * `GetModuleMetaData`*
- * `GetModuleInfo`
- * `GetModuleInfo2`
- * `GetFunctionInfo`
- * `SetILFunctionBody`*
- * `SetILInstrumentedCodeMap`*
- * `GetILFunctionBodyAllocator`*
- * `GetRuntimeInformation`
- * `SetEventMask`
+### DoStackSnapshot
 
-* The flags tested for SetEventMask are:
- * `COR_PRF_MONITOR_MODULE_LOADS`
- * `COR_PRF_MONITOR_JIT_COMPILATION`
- * `COR_PRF_DISABLE_INLINING`
+The implementation of this API was making some questionable assumptions about Windows OS API behavior in order to walk callstacks asynchronously. When operating in this async mode we aren't yet confident we can produce reasonable implementations for other platforms. Our understanding is that most users of this API are attempting to do sample based profiling. If so we think it may be easier to offer a runtime provided event stream of sample callstacks to accomplish the same scenario without needing the API, but we also haven't heard any demand for it. Feedback welcome!
 
-\* Instrumentation APIs have not been tested on assemblies compiled with Ready2Run technology. Ready2Run is currently used
-   for all Framework assemblies. 
-   
-### Linux
-### OS X
+### Profiler does not disable Concurrent GC
 
-# Community Tested APIs (please include GitHub handle)
+See github issue [#13153](https://github.com/dotnet/coreclr/issues/13153) for more details.
 
-### Windows
-  * IProfilerCallback
-    * ModuleLoadStarted (noahfalk on behalf of one of our vendors)
-    * JITCompilationStarted (noahfalk on behalf of one of our vendors)
-  * IMetaDataEmit
-    * various DefineXXX methods (noahfalk on behalf of one of our vendors)
-  * IMetadataDataDispenserEx
-    * OpenScopeOnMemory (noahfalk on behalf of one of our vendors)
-  * IMetaDataTables (noahfalk on behalf of one of our vendors)
-  * IMetaDataAssemblyEmit
-    * DefineAssemblyRef (noahfalk on behalf of one of our vendors)
-    
-### Linux
-### OS X
+### ReJIT on ARM
 
-# APIs definitely known not to work yet
-### Windows
-### Linux
+ReJIT feature is only available on x86/x64 for now. 
 
-* ICorProfilerInfo:
- * `SetEnterLeaveFunctionHooks`
+### Any issues we missed?
 
-* ICorProfilerInfo2:
- * `SetEnterLeaveFunctionHooks2`
-
-* SetEventMask Flags that currently result in undefined behavior :
- * `COR_PRF_USE_PROFILE_IMAGES`
- * `COR_PRF_REQUIRE_PROFILE_IMAGE`
-
-### OS X
-* ICorProfilerInfo:
- * `SetEnterLeaveFunctionHooks`
-
-* ICorProfilerInfo2:
- * `SetEnterLeaveFunctionHooks2`
-
-* SetEventMask Flags that currently result in undefined behavior :
- * `COR_PRF_USE_PROFILE_IMAGES`
- * `COR_PRF_REQUIRE_PROFILE_IMAGE`
+Please let us know and we will get it addressed. Thanks!
\ No newline at end of file