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

Method pop

src/lower2/stackmaps.rs:57–64  ·  view source on GitHub ↗
(&mut self, context: &str, instruction_index: usize)

Source from the content-addressed store, hash-verified

55 | FrameValue::Uninitialized(_)
56 )
57 }
58}
59
60impl FrameState {
61 fn new(initial_locals: Vec<FrameValue>, max_locals: usize) -> Self {
62 let mut locals = initial_locals;
63 locals.resize(max_locals, FrameValue::Top);
64 Self {
65 locals: Arc::new(locals),
66 stack: Vec::new(),
67 }

Callers 13

pop_category1Method · 0.80
transfer_instructionFunction · 0.80
apply_invokeFunction · 0.80
store_fixedFunction · 0.80
array_loadFunction · 0.80
unaryFunction · 0.80
binaryFunction · 0.80
shiftFunction · 0.80
convertFunction · 0.80
layout_block_orderMethod · 0.80
owner_class_from_pathFunction · 0.80

Calls 1

to_stringMethod · 0.80

Tested by

no test coverage detected