1 write to Address
Microsoft.Diagnostics.DataContractReader.Abstractions (1)
Contracts\IExecutionManager.cs (1)
13public CodeBlockHandle(TargetPointer address) => Address = address;
21 references to Address
Microsoft.Diagnostics.DataContractReader.Contracts (21)
Contracts\ExecutionManager\ExecutionManagerCore.cs (18)
241if (!_codeInfos.TryGetValue(codeInfoHandle.Address, out CodeBlock? info)) 242throw new InvalidOperationException($"{nameof(CodeBlock)} not found for {codeInfoHandle.Address}"); 249if (!_codeInfos.TryGetValue(codeInfoHandle.Address, out CodeBlock? info)) 250throw new InvalidOperationException($"{nameof(CodeBlock)} not found for {codeInfoHandle.Address}"); 262TargetPointer runtimeFunctionPtr = jitManager?.GetUnwindInfo(range, codeInfoHandle.Address.Value) ?? TargetPointer.Null; 288jitManager?.GetMethodRegionInfo(range, codeInfoHandle.Address.Value, out hotSize, out coldStart, out coldSize); 341if (!_codeInfos.TryGetValue(codeInfoHandle.Address, out CodeBlock? info)) 342throw new InvalidOperationException($"{nameof(CodeBlock)} not found for {codeInfoHandle.Address}"); 370return jitManager?.GetUnwindInfo(range, codeInfoHandle.Address.Value) ?? TargetPointer.Null; 377throw new InvalidOperationException($"{nameof(RangeSection)} not found for {codeInfoHandle.Address}"); 390return jitManager?.GetDebugInfo(range, codeInfoHandle.Address.Value, out hasFlagByte) ?? TargetPointer.Null; 403jitManager?.GetGCInfo(range, codeInfoHandle.Address.Value, out gcInfo, out gcVersion); 409if (!_codeInfos.TryGetValue(codeInfoHandle.Address, out CodeBlock? info)) 410throw new InvalidOperationException($"{nameof(CodeBlock)} not found for {codeInfoHandle.Address}"); 440throw new InvalidOperationException($"GC info not available for {codeInfoHandle.Address}"); 542if (!_codeInfos.TryGetValue(codeInfoHandle.Address, out CodeBlock? info)) 543throw new InvalidOperationException($"{nameof(CodeBlock)} not found for {codeInfoHandle.Address}"); 545RangeSection range = RangeSection.Find(_target, _topRangeSectionMap, _rangeSectionMapLookup, codeInfoHandle.Address.Value);
Contracts\ExecutionManager\ExecutionManagerCore.EEJitManager.cs (1)
245TargetPointer codeStart = FindMethodCode(rangeSection, new TargetCodePointer(codeInfoHandle.Address));
Contracts\ExecutionManager\ExecutionManagerCore.InterpreterJitManager.cs (1)
117TargetPointer codeStart = FindMethodCode(rangeSection, new TargetCodePointer(codeInfoHandle.Address));
Contracts\StackWalk\StackWalk_1.cs (1)
1384if (_eman.GetCodeBlockHandle(ip) is CodeBlockHandle cbh && cbh.Address != TargetPointer.Null)