def is_conditional_jump(self, ea):
    """ return true if this instruction is a conditional jump. """
    mnem = self.get_mnemonic(ea)
    if mnem in self.conditional_jumps:
      return True