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