9 references to RegularInstructionsLength
Microsoft.CodeAnalysis (6)
CodeGen\BasicBlock.cs (2)
638return (int)RegularInstructionsLength + branchSize; 762return (int)(RegularInstructionsLength + branchSize);
CodeGen\ILBuilder.cs (4)
168if (_allocatedILMarkers[_lastCompleteBlock.LastILMarker].BlockOffset == _lastCompleteBlock.RegularInstructionsLength) 174_allocatedILMarkers[_lastCompleteBlock.LastILMarker].BlockOffset == _lastCompleteBlock.RegularInstructionsLength) 189_allocatedILMarkers[marker] = new ILMarker() { BlockOffset = (int)current.RegularInstructionsLength, AbsoluteOffset = -1 }; 1261BlockOffset = (int)curBlock.RegularInstructionsLength,
Microsoft.CodeAnalysis.Test.Utilities (3)
Metadata\ILBuilderVisualizer.cs (3)
213var instrCnt = block.RegularInstructionsLength; 222sb.Append(string.Format(" IL_{0:x4}:", block.RegularInstructionsLength + block.Start)); 251sb.Append(string.Format(" IL_{0:x4}:", block.RegularInstructionsLength + block.Start));