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