MCPcopy Index your code
hub / github.com/encounter/objdiff / symbol_context

Method symbol_context

objdiff-core/src/arch/ppc/mod.rs:399–409  ·  view source on GitHub ↗
(&self, _obj: &Object, symbol_index: usize)

Source from the content-addressed store, hash-verified

397 }
398
399 fn symbol_context(&self, _obj: &Object, symbol_index: usize) -> Vec<ContextItem> {
400 let mut out = Vec::new();
401 if let Some(_extab) = self.extab_for_symbol(symbol_index) {
402 out.push(ContextItem::Navigate {
403 label: "Decode exception table".to_string(),
404 symbol_index,
405 kind: SymbolNavigationKind::Extab,
406 });
407 }
408 out
409 }
410
411 fn instruction_hover(&self, _obj: &Object, resolved: ResolvedInstructionRef) -> Vec<HoverItem> {
412 let Ok(ins) = self.parse_ins_ref(resolved) else {

Callers 1

symbol_contextFunction · 0.45

Calls 2

extab_for_symbolMethod · 0.80
pushMethod · 0.80

Tested by

no test coverage detected