26 references to BlockType
ILCompiler.ReadyToRun (26)
JitInterface\CorInfoImpl.ReadyToRun.cs (3)
3161partial void findKnownBBCountBlock(ref BlockType blockType, void* location, ref int offset) 3170blockType = BlockType.BBCounts; 3175blockType = BlockType.Unknown;
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (23)
4155private BlockType findKnownBlock(void* location, out int offset) 4162return BlockType.Code; 4173return BlockType.ColdCode; 4185return BlockType.ROData; 4197return BlockType.RWData; 4203BlockType retBlockType = BlockType.Unknown; 4206if (retBlockType == BlockType.BBCounts) 4211return BlockType.Unknown; 4214partial void findKnownBBCountBlock(ref BlockType blockType, void* location, ref int offset); 4216private ref ArrayBuilder<Relocation> findRelocBlock(BlockType blockType, out int length) 4220case BlockType.Code: 4223case BlockType.ROData: 4226case BlockType.RWData: 4230case BlockType.ColdCode: 4278BlockType locationBlock = findKnownBlock(location, out relocOffset); 4279Debug.Assert(locationBlock != BlockType.Unknown, "BlockType.Unknown not expected"); 4285BlockType targetBlock = findKnownBlock(target, out relocDelta); 4290case BlockType.Code: 4294case BlockType.ColdCode: 4303case BlockType.ROData: 4307case BlockType.RWData: 4312case BlockType.BBCounts: