1 write to SectionIndex
ILCompiler.ReadyToRun (1)
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\OutputInfoBuilder.cs (1)
55SectionIndex = sectionIndex;
12 references to SectionIndex
ILCompiler.ReadyToRun (12)
ObjectWriter\MapFileBuilder.cs (4)
228OutputSection section = _outputInfoBuilder.Sections[symbol.SectionIndex]; 239OutputSection section = _outputInfoBuilder.Sections[node.SectionIndex]; 270OutputSection section = _outputInfoBuilder.Sections[symbol.SectionIndex]; 282OutputSection section = _outputInfoBuilder.Sections[node.SectionIndex];
ObjectWriter\ProfileFileBuilder.cs (2)
160callerRVA = _outputInfoBuilder.Sections[callerNode.SectionIndex].VirtualAddress + callerNode.Offset; 170calleeRVA = _outputInfoBuilder.Sections[calleeNode.SectionIndex].VirtualAddress + calleeNode.Offset;
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\OutputInfoBuilder.cs (6)
34return (x.SectionIndex != y.SectionIndex ? x.SectionIndex.CompareTo(y.SectionIndex) : x.Offset.CompareTo(y.Offset)); 175index = _symbols.BinarySearch(new OutputSymbol(item.SectionIndex, item.Offset, name: default), OutputItem.Comparer.Instance); 197OutputSection section = _sections[node.SectionIndex];