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