26 references to BlockType
ILCompiler.ReadyToRun (26)
JitInterface\CorInfoImpl.ReadyToRun.cs (3)
3158partial void findKnownBBCountBlock(ref BlockType blockType, void* location, ref int offset) 3167blockType = BlockType.BBCounts; 3172blockType = BlockType.Unknown;
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (23)
4153private BlockType findKnownBlock(void* location, out int offset) 4160return BlockType.Code; 4171return BlockType.ColdCode; 4183return BlockType.ROData; 4195return BlockType.RWData; 4201BlockType retBlockType = BlockType.Unknown; 4204if (retBlockType == BlockType.BBCounts) 4209return BlockType.Unknown; 4212partial void findKnownBBCountBlock(ref BlockType blockType, void* location, ref int offset); 4214private ref ArrayBuilder<Relocation> findRelocBlock(BlockType blockType, out int length) 4218case BlockType.Code: 4221case BlockType.ROData: 4224case BlockType.RWData: 4228case BlockType.ColdCode: 4276BlockType locationBlock = findKnownBlock(location, out relocOffset); 4277Debug.Assert(locationBlock != BlockType.Unknown, "BlockType.Unknown not expected"); 4283BlockType targetBlock = findKnownBlock(target, out relocDelta); 4288case BlockType.Code: 4292case BlockType.ColdCode: 4301case BlockType.ROData: 4305case BlockType.RWData: 4310case BlockType.BBCounts: