src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (22)
4501private BlockType findKnownBlock(void* location, out int offset)
4508return BlockType.Code;
4519return BlockType.ColdCode;
4531return BlockType.ROData;
4543return BlockType.RWData;
4549BlockType retBlockType = BlockType.Unknown;
4552if (retBlockType == BlockType.BBCounts)
4557return BlockType.Unknown;
4560partial void findKnownBBCountBlock(ref BlockType blockType, void* location, ref int offset);
4562partial void TryUseWasmMethodCodeStoreFixup(void* target, CorInfoReloc fRelocType, BlockType locationBlock, int relocOffset, int addlDelta, ref bool handled);
4564private ref ArrayBuilder<Relocation> findRelocBlock(BlockType blockType, out int length)
4568case BlockType.Code:
4571case BlockType.ROData:
4574case BlockType.RWData:
4629BlockType locationBlock = findKnownBlock(location, out relocOffset);
4630Debug.Assert(locationBlock != BlockType.Unknown, "BlockType.Unknown not expected");
4647BlockType targetBlock = findKnownBlock(target, out relocDelta);
4652case BlockType.Code:
4656case BlockType.ColdCode:
4665case BlockType.ROData:
4669case BlockType.RWData: