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)
239if (!_codeInfos.TryGetValue(codeInfoHandle.Address, out CodeBlock? info)) 240throw new InvalidOperationException($"{nameof(CodeBlock)} not found for {codeInfoHandle.Address}"); 247if (!_codeInfos.TryGetValue(codeInfoHandle.Address, out CodeBlock? info)) 248throw new InvalidOperationException($"{nameof(CodeBlock)} not found for {codeInfoHandle.Address}"); 260TargetPointer runtimeFunctionPtr = jitManager?.GetUnwindInfo(range, codeInfoHandle.Address.Value) ?? TargetPointer.Null; 286jitManager?.GetMethodRegionInfo(range, codeInfoHandle.Address.Value, out hotSize, out coldStart, out coldSize); 339if (!_codeInfos.TryGetValue(codeInfoHandle.Address, out CodeBlock? info)) 340throw new InvalidOperationException($"{nameof(CodeBlock)} not found for {codeInfoHandle.Address}"); 368return jitManager?.GetUnwindInfo(range, codeInfoHandle.Address.Value) ?? TargetPointer.Null; 375throw new InvalidOperationException($"{nameof(RangeSection)} not found for {codeInfoHandle.Address}"); 388return jitManager?.GetDebugInfo(range, codeInfoHandle.Address.Value, out hasFlagByte) ?? TargetPointer.Null; 401jitManager?.GetGCInfo(range, codeInfoHandle.Address.Value, out gcInfo, out gcVersion); 407if (!_codeInfos.TryGetValue(codeInfoHandle.Address, out CodeBlock? info)) 408throw new InvalidOperationException($"{nameof(CodeBlock)} not found for {codeInfoHandle.Address}"); 438throw new InvalidOperationException($"GC info not available for {codeInfoHandle.Address}"); 540if (!_codeInfos.TryGetValue(codeInfoHandle.Address, out CodeBlock? info)) 541throw new InvalidOperationException($"{nameof(CodeBlock)} not found for {codeInfoHandle.Address}"); 543RangeSection 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)
1380if (_eman.GetCodeBlockHandle(ip) is CodeBlockHandle cbh && cbh.Address != TargetPointer.Null)