32 references to BlockType
ILCompiler.ReadyToRun (32)
JitInterface\CorInfoImpl.ReadyToRun.cs (8)
3148
partial void findKnownBBCountBlock(ref
BlockType
blockType, void* location, ref int offset)
3157
blockType =
BlockType
.BBCounts;
3162
blockType =
BlockType
.Unknown;
3165
partial void TryUseWasmMethodCodeStoreFixup(void* target, CorInfoReloc fRelocType,
BlockType
locationBlock, int relocOffset, int addlDelta, ref bool handled)
3176
if ((locationBlock !=
BlockType
.ROData) && (locationBlock !=
BlockType
.RWData))
3179
ISymbolNode dataBlobNode = (locationBlock ==
BlockType
.ROData) ? _roDataBlob : _rwDataBlob;
3187
if (findKnownBlock(target, out _) !=
BlockType
.Unknown)
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (24)
4477
private
BlockType
findKnownBlock(void* location, out int offset)
4484
return
BlockType
.Code;
4495
return
BlockType
.ColdCode;
4507
return
BlockType
.ROData;
4519
return
BlockType
.RWData;
4525
BlockType
retBlockType =
BlockType
.Unknown;
4528
if (retBlockType ==
BlockType
.BBCounts)
4533
return
BlockType
.Unknown;
4536
partial void findKnownBBCountBlock(ref
BlockType
blockType, void* location, ref int offset);
4538
partial void TryUseWasmMethodCodeStoreFixup(void* target, CorInfoReloc fRelocType,
BlockType
locationBlock, int relocOffset, int addlDelta, ref bool handled);
4540
private ref ArrayBuilder<Relocation> findRelocBlock(
BlockType
blockType, out int length)
4544
case
BlockType
.Code:
4547
case
BlockType
.ROData:
4550
case
BlockType
.RWData:
4554
case
BlockType
.ColdCode:
4605
BlockType
locationBlock = findKnownBlock(location, out relocOffset);
4606
Debug.Assert(locationBlock !=
BlockType
.Unknown, "BlockType.Unknown not expected");
4623
BlockType
targetBlock = findKnownBlock(target, out relocDelta);
4628
case
BlockType
.Code:
4632
case
BlockType
.ColdCode:
4641
case
BlockType
.ROData:
4645
case
BlockType
.RWData:
4650
case
BlockType
.BBCounts: