MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / WritesToStatus

Function WritesToStatus

arch/armv7/thumb2_disasm/il_thumb2.cpp:519–532  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

517
518
519static bool WritesToStatus(decomp_result* instr, bool ifThenBlock)
520{
521 if (ifThenBlock)
522 return false;
523 if (instr->format->operationFlags & INSTR_FORMAT_FLAG_OPTIONAL_STATUS)
524 {
525 if (IS_FIELD_PRESENT(instr, FIELD_S))
526 {
527 if (instr->fields[FIELD_S])
528 return true;
529 }
530 }
531 return false;
532}
533
534static bool IsPCRelativeDataAddress(decomp_result* instr, bool ifThenBlock)
535{

Callers 2

IsPCRelativeDataAddressFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected