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