32 references to BlockType
ILCompiler.ReadyToRun (32)
JitInterface\CorInfoImpl.ReadyToRun.cs (8)
3254
partial void findKnownBBCountBlock(ref
BlockType
blockType, void* location, ref int offset)
3263
blockType =
BlockType
.BBCounts;
3268
blockType =
BlockType
.Unknown;
3271
partial void TryUseWasmMethodCodeStoreFixup(void* target, CorInfoReloc fRelocType,
BlockType
locationBlock, int relocOffset, int addlDelta, ref bool handled)
3282
if ((locationBlock !=
BlockType
.ROData) && (locationBlock !=
BlockType
.RWData))
3285
ISymbolNode dataBlobNode = (locationBlock ==
BlockType
.ROData) ? _roDataBlob : _rwDataBlob;
3293
if (findKnownBlock(target, out _) !=
BlockType
.Unknown)
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (24)
4494
private
BlockType
findKnownBlock(void* location, out int offset)
4501
return
BlockType
.Code;
4512
return
BlockType
.ColdCode;
4524
return
BlockType
.ROData;
4536
return
BlockType
.RWData;
4542
BlockType
retBlockType =
BlockType
.Unknown;
4545
if (retBlockType ==
BlockType
.BBCounts)
4550
return
BlockType
.Unknown;
4553
partial void findKnownBBCountBlock(ref
BlockType
blockType, void* location, ref int offset);
4555
partial void TryUseWasmMethodCodeStoreFixup(void* target, CorInfoReloc fRelocType,
BlockType
locationBlock, int relocOffset, int addlDelta, ref bool handled);
4557
private ref ArrayBuilder<Relocation> findRelocBlock(
BlockType
blockType, out int length)
4561
case
BlockType
.Code:
4564
case
BlockType
.ROData:
4567
case
BlockType
.RWData:
4571
case
BlockType
.ColdCode:
4622
BlockType
locationBlock = findKnownBlock(location, out relocOffset);
4623
Debug.Assert(locationBlock !=
BlockType
.Unknown, "BlockType.Unknown not expected");
4640
BlockType
targetBlock = findKnownBlock(target, out relocDelta);
4645
case
BlockType
.Code:
4649
case
BlockType
.ColdCode:
4658
case
BlockType
.ROData:
4662
case
BlockType
.RWData:
4667
case
BlockType
.BBCounts: