reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.cpp
 1150     else if (mov_reg_to_local_stack_frame_p(machine_regno, stack_offset) &&
 1164           regloc.SetAtAFAPlusOffset(-(stack_offset + fa_value_ptr->GetOffset()));
 1166           regloc.SetAtCFAPlusOffset(-(stack_offset + fa_value_ptr->GetOffset()));
 1173     else if (sub_rsp_pattern_p(stack_offset)) {
 1174       current_sp_bytes_offset_from_fa += stack_offset;
 1181     else if (add_rsp_pattern_p(stack_offset)) {
 1182       current_sp_bytes_offset_from_fa -= stack_offset;
 1199     else if (lea_rsp_pattern_p(stack_offset)) {
 1200       current_sp_bytes_offset_from_fa -= stack_offset;
 1205       if (stack_offset > 0)
 1209     else if (lea_rbp_rsp_pattern_p(stack_offset)) {
 1219           fa_value_ptr->GetOffset() - stack_offset;
 1223     else if (lea_rbx_rsp_pattern_p(stack_offset)) {
 1232         current_sp_bytes_offset_from_fa = fa_value_ptr->GetOffset() - stack_offset;