1 write to Address
Microsoft.Diagnostics.DataContractReader.Abstractions (1)
Contracts\IExecutionManager.cs (1)
13public CodeBlockHandle(TargetPointer address) => Address = address;
20 references to Address
Microsoft.Diagnostics.DataContractReader.Contracts (20)
Contracts\ExecutionManager\ExecutionManagerCore.cs (17)
232if (!_codeInfos.TryGetValue(codeInfoHandle.Address, out CodeBlock? info)) 233throw new InvalidOperationException($"{nameof(CodeBlock)} not found for {codeInfoHandle.Address}"); 240if (!_codeInfos.TryGetValue(codeInfoHandle.Address, out CodeBlock? info)) 241throw new InvalidOperationException($"{nameof(CodeBlock)} not found for {codeInfoHandle.Address}"); 253TargetPointer runtimeFunctionPtr = jitManager?.GetUnwindInfo(range, codeInfoHandle.Address.Value) ?? TargetPointer.Null; 278jitManager?.GetMethodRegionInfo(range, codeInfoHandle.Address.Value, out hotSize, out coldStart, out coldSize); 331if (!_codeInfos.TryGetValue(codeInfoHandle.Address, out CodeBlock? info)) 332throw new InvalidOperationException($"{nameof(CodeBlock)} not found for {codeInfoHandle.Address}"); 360return jitManager?.GetUnwindInfo(range, codeInfoHandle.Address.Value) ?? TargetPointer.Null; 367throw new InvalidOperationException($"{nameof(RangeSection)} not found for {codeInfoHandle.Address}"); 380return jitManager?.GetDebugInfo(range, codeInfoHandle.Address.Value, out hasFlagByte) ?? TargetPointer.Null; 393jitManager?.GetGCInfo(range, codeInfoHandle.Address.Value, out gcInfo, out gcVersion); 399if (!_codeInfos.TryGetValue(codeInfoHandle.Address, out CodeBlock? info)) 400throw new InvalidOperationException($"{nameof(CodeBlock)} not found for {codeInfoHandle.Address}"); 461if (!_codeInfos.TryGetValue(codeInfoHandle.Address, out CodeBlock? info)) 462throw new InvalidOperationException($"{nameof(CodeBlock)} not found for {codeInfoHandle.Address}"); 464RangeSection range = RangeSection.Find(_target, _topRangeSectionMap, _rangeSectionMapLookup, codeInfoHandle.Address.Value);
Contracts\ExecutionManager\ExecutionManagerCore.EEJitManager.cs (1)
206TargetPointer codeStart = FindMethodCode(rangeSection, new TargetCodePointer(codeInfoHandle.Address));
Contracts\ExecutionManager\ExecutionManagerCore.InterpreterJitManager.cs (1)
116TargetPointer codeStart = FindMethodCode(rangeSection, new TargetCodePointer(codeInfoHandle.Address));
Contracts\StackWalk\StackWalk_1.cs (1)
923if (_eman.GetCodeBlockHandle(codePointer) is CodeBlockHandle cbh && cbh.Address != TargetPointer.Null)