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