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

Method is_reference_like

src/lower2/stackmaps.rs:36–44  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

34 entry_states: Vec<Option<FrameState>>,
35}
36
37impl FrameAnalysis {
38 fn state_at(&self, instruction: usize) -> Option<&FrameState> {
39 let block = self.block_starts.binary_search(&instruction).ok()?;
40 self.entry_states.get(block)?.as_ref()
41 }
42}
43
44impl FrameValue {
45 fn is_category2(&self) -> bool {
46 matches!(self, FrameValue::Long | FrameValue::Double)
47 }

Callers 1

pop_referenceMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected