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

Function frame_value_from_ldc2

src/lower2/stackmaps.rs:1527–1534  ·  view source on GitHub ↗
(constant_pool: &ConstantPool, index: u16)

Source from the content-addressed store, hash-verified

1525 I::Goto_w(target) => return Ok(vec![(*target as usize, state)]),
1526 I::Tableswitch(table_switch) => {
1527 state.pop(context, instruction_index)?;
1528 let mut successors = Vec::with_capacity(table_switch.offsets.len() + 1);
1529 successors.push((
1530 relative_switch_target(instruction_index, table_switch.default, context)?,
1531 state.clone(),
1532 ));
1533 for target in &table_switch.offsets {
1534 successors.push((
1535 relative_switch_target(instruction_index, *target, context)?,
1536 state.clone(),
1537 ));

Callers 1

transfer_instructionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected