26 references to BlockType
ILCompiler.ReadyToRun (26)
JitInterface\CorInfoImpl.ReadyToRun.cs (3)
3188partial void findKnownBBCountBlock(ref BlockType blockType, void* location, ref int offset) 3197blockType = BlockType.BBCounts; 3202blockType = BlockType.Unknown;
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (23)
4206private BlockType findKnownBlock(void* location, out int offset) 4213return BlockType.Code; 4224return BlockType.ColdCode; 4236return BlockType.ROData; 4248return BlockType.RWData; 4254BlockType retBlockType = BlockType.Unknown; 4257if (retBlockType == BlockType.BBCounts) 4262return BlockType.Unknown; 4265partial void findKnownBBCountBlock(ref BlockType blockType, void* location, ref int offset); 4267private ref ArrayBuilder<Relocation> findRelocBlock(BlockType blockType, out int length) 4271case BlockType.Code: 4274case BlockType.ROData: 4277case BlockType.RWData: 4281case BlockType.ColdCode: 4330BlockType locationBlock = findKnownBlock(location, out relocOffset); 4331Debug.Assert(locationBlock != BlockType.Unknown, "BlockType.Unknown not expected"); 4337BlockType targetBlock = findKnownBlock(target, out relocDelta); 4342case BlockType.Code: 4346case BlockType.ColdCode: 4355case BlockType.ROData: 4359case BlockType.RWData: 4364case BlockType.BBCounts: