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