26 references to BlockType
ILCompiler.ReadyToRun (26)
JitInterface\CorInfoImpl.ReadyToRun.cs (3)
3144partial void findKnownBBCountBlock(ref BlockType blockType, void* location, ref int offset) 3153blockType = BlockType.BBCounts; 3158blockType = BlockType.Unknown;
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (23)
4335private BlockType findKnownBlock(void* location, out int offset) 4342return BlockType.Code; 4353return BlockType.ColdCode; 4365return BlockType.ROData; 4377return BlockType.RWData; 4383BlockType retBlockType = BlockType.Unknown; 4386if (retBlockType == BlockType.BBCounts) 4391return BlockType.Unknown; 4394partial void findKnownBBCountBlock(ref BlockType blockType, void* location, ref int offset); 4396private ref ArrayBuilder<Relocation> findRelocBlock(BlockType blockType, out int length) 4400case BlockType.Code: 4403case BlockType.ROData: 4406case BlockType.RWData: 4410case BlockType.ColdCode: 4460BlockType locationBlock = findKnownBlock(location, out relocOffset); 4461Debug.Assert(locationBlock != BlockType.Unknown, "BlockType.Unknown not expected"); 4467BlockType targetBlock = findKnownBlock(target, out relocDelta); 4472case BlockType.Code: 4476case BlockType.ColdCode: 4485case BlockType.ROData: 4489case BlockType.RWData: 4494case BlockType.BBCounts: