MCPcopy Create free account
hub / github.com/IntegralPilot/rustc_codegen_jvm / convert

Function convert

src/lower2/stackmaps.rs:1082–1091  ·  view source on GitHub ↗
(
    state: &mut FrameState,
    value: FrameValue,
    context: &str,
    instruction_index: usize,
)

Source from the content-addressed store, hash-verified

1080
1081fn merge_block_entry(
1082 target: usize,
1083 incoming: FrameState,
1084 block_starts: &[usize],
1085 block_by_instruction: &[usize],
1086 entry_states: &mut [Option<FrameState>],
1087 worklist: &mut VecDeque<usize>,
1088 queued: &mut [bool],
1089 context: &str,
1090) -> jvm::Result<()> {
1091 let Some(&block) = block_by_instruction.get(target) else {
1092 return Ok(());
1093 };
1094 if block_starts[block] != target {

Callers 1

transfer_instructionFunction · 0.85

Calls 1

popMethod · 0.80

Tested by

no test coverage detected