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

Function push_shift

objdiff-core/src/arch/arm64.rs:2009–2016  ·  view source on GitHub ↗
(args: &mut Cb, style: ShiftStyle, amount: u8)

Source from the content-addressed store, hash-verified

2007
2008#[inline]
2009fn push_shift<Cb>(args: &mut Cb, style: ShiftStyle, amount: u8)
2010where Cb: FnMut(InstructionPart<'static>) {
2011 push_opaque(args, shift_style(style));
2012 if amount != 0 {
2013 push_plain(args, " ");
2014 push_unsigned(args, amount as u64);
2015 }
2016}
2017
2018#[inline]
2019fn push_condition_code<Cb>(args: &mut Cb, cond: u8)

Callers 1

push_operandFunction · 0.85

Calls 4

push_opaqueFunction · 0.85
shift_styleFunction · 0.85
push_plainFunction · 0.85
push_unsignedFunction · 0.85

Tested by

no test coverage detected