public inbox for gdb-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug breakpoints/27009] New: [s390] GDB branches randomly for BC instruction while displaced stepping
@ 2020-12-03 23:07 gfrix98 at gmail dot com
  2020-12-03 23:09 ` [Bug breakpoints/27009] " gfrix98 at gmail dot com
                   ` (21 more replies)
  0 siblings, 22 replies; 23+ messages in thread
From: gfrix98 at gmail dot com @ 2020-12-03 23:07 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=27009

            Bug ID: 27009
           Summary: [s390] GDB branches randomly for BC instruction while
                    displaced stepping
           Product: gdb
           Version: 10.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: breakpoints
          Assignee: unassigned at sourceware dot org
          Reporter: gfrix98 at gmail dot com
  Target Milestone: ---

I noticed this problem while working an s390x port.

Minimal testcase:
        .align  8
        .globl main
        .globl insn
        .type  main, @function
        .type  insn, @function
        # This should return 0 on success.
main:
        basr    %r1, %r0
insn:   bc      15, win-insn(0,%r1)
        lghi    %r2,1
win:    lghi    %r2,0
        br      %r14

Assemble and link the above.

Turn on displaced stepping, set a breakpoint on `insn`, run, then try to step
over the breakpoint with stepi.
(gdb) set displaced-stepping on
(gdb) b insn
(gdb) r
(gdb) stepi

instead of branching to `win`, gdb will branch to an apparently random nearby
address, and the inferior will generally crash. This problem is present in all
versions of GDB I've tested.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [Bug breakpoints/27009] [s390] GDB branches randomly for BC instruction while displaced stepping
  2020-12-03 23:07 [Bug breakpoints/27009] New: [s390] GDB branches randomly for BC instruction while displaced stepping gfrix98 at gmail dot com
@ 2020-12-03 23:09 ` gfrix98 at gmail dot com
  2020-12-06 10:28 ` cvs-commit at gcc dot gnu.org
                   ` (20 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: gfrix98 at gmail dot com @ 2020-12-03 23:09 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=27009

Giancarlo Frix <gfrix98 at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |gfrix98 at gmail dot com
             Target|                            |s390x-ibm-linux-gnu
               Host|                            |s390x-ibm-linux-gnu

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [Bug breakpoints/27009] [s390] GDB branches randomly for BC instruction while displaced stepping
  2020-12-03 23:07 [Bug breakpoints/27009] New: [s390] GDB branches randomly for BC instruction while displaced stepping gfrix98 at gmail dot com
  2020-12-03 23:09 ` [Bug breakpoints/27009] " gfrix98 at gmail dot com
@ 2020-12-06 10:28 ` cvs-commit at gcc dot gnu.org
  2020-12-06 10:29 ` brobecker at gnat dot com
                   ` (19 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2020-12-06 10:28 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=27009

--- Comment #1 from cvs-commit at gcc dot gnu.org <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Joel Brobecker <brobecke@sourceware.org>:

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=296cfb88895e35d8bfc5ce43449e65a92d87354d

commit 296cfb88895e35d8bfc5ce43449e65a92d87354d
Author: Giancarlo Frix <gfrix@rocketsoftware.com>
Date:   Sun Dec 6 14:27:52 2020 +0400

    s390: Fix BC instruction breakpoint handling

    This fixes a long-lived bug in the s390 port.

    When trying to step over a breakpoint set on a BC (branch on condition)
    instruction with displaced stepping on IBM Z, gdb would incorrectly
    adjust the pc regardless of whether or not the branch was taken. Since
    the branch target is an absolute address, this would cause the inferior
    to jump around wildly whenever the branch was taken, either crashing it
    or causing it to behave unpredictably.

    It turns out that the logic to handle BC instructions correctly was in
    the code, but that the enum value representing its opcode has always
    been incorrect.

    This patch corrects the enum value to the actual opcode, fixing the
    stepping problem. The enum value is also used in the prologue analysis
    code, so this also fixes a minor bug where more of the prologue would
    be read than was necessary.

    gdb/ChangeLog:

            PR breakpoints/27009
            * s390-tdep.h (op_bc): Correct BC opcode value.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [Bug breakpoints/27009] [s390] GDB branches randomly for BC instruction while displaced stepping
  2020-12-03 23:07 [Bug breakpoints/27009] New: [s390] GDB branches randomly for BC instruction while displaced stepping gfrix98 at gmail dot com
  2020-12-03 23:09 ` [Bug breakpoints/27009] " gfrix98 at gmail dot com
  2020-12-06 10:28 ` cvs-commit at gcc dot gnu.org
@ 2020-12-06 10:29 ` brobecker at gnat dot com
  2020-12-06 10:31 ` cvs-commit at gcc dot gnu.org
                   ` (18 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: brobecker at gnat dot com @ 2020-12-06 10:29 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=27009

Joel Brobecker <brobecker at gnat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |brobecker at gnat dot com
   Target Milestone|---                         |10.2

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [Bug breakpoints/27009] [s390] GDB branches randomly for BC instruction while displaced stepping
  2020-12-03 23:07 [Bug breakpoints/27009] New: [s390] GDB branches randomly for BC instruction while displaced stepping gfrix98 at gmail dot com
                   ` (2 preceding siblings ...)
  2020-12-06 10:29 ` brobecker at gnat dot com
@ 2020-12-06 10:31 ` cvs-commit at gcc dot gnu.org
  2021-01-31  6:26 ` brobecker at gnat dot com
                   ` (17 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2020-12-06 10:31 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=27009

--- Comment #2 from cvs-commit at gcc dot gnu.org <cvs-commit at gcc dot gnu.org> ---
The gdb-10-branch branch has been updated by Joel Brobecker
<brobecke@sourceware.org>:

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=47c4623c7587a0008597a4a10a7f32bbac1f7ad4

commit 47c4623c7587a0008597a4a10a7f32bbac1f7ad4
Author: Giancarlo Frix <gfrix@rocketsoftware.com>
Date:   Sun Dec 6 14:30:53 2020 +0400

    s390: Fix BC instruction breakpoint handling

    This fixes a long-lived bug in the s390 port.

    When trying to step over a breakpoint set on a BC (branch on condition)
    instruction with displaced stepping on IBM Z, gdb would incorrectly
    adjust the pc regardless of whether or not the branch was taken. Since
    the branch target is an absolute address, this would cause the inferior
    to jump around wildly whenever the branch was taken, either crashing it
    or causing it to behave unpredictably.

    It turns out that the logic to handle BC instructions correctly was in
    the code, but that the enum value representing its opcode has always
    been incorrect.

    This patch corrects the enum value to the actual opcode, fixing the
    stepping problem. The enum value is also used in the prologue analysis
    code, so this also fixes a minor bug where more of the prologue would
    be read than was necessary.

    gdb/ChangeLog:

            PR breakpoints/27009
            * s390-tdep.h (op_bc): Correct BC opcode value.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [Bug breakpoints/27009] [s390] GDB branches randomly for BC instruction while displaced stepping
  2020-12-03 23:07 [Bug breakpoints/27009] New: [s390] GDB branches randomly for BC instruction while displaced stepping gfrix98 at gmail dot com
                   ` (3 preceding siblings ...)
  2020-12-06 10:31 ` cvs-commit at gcc dot gnu.org
@ 2021-01-31  6:26 ` brobecker at gnat dot com
  2021-06-27 17:59 ` ahmedsayeed1982 at yahoo dot com
                   ` (16 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: brobecker at gnat dot com @ 2021-01-31  6:26 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=27009

Joel Brobecker <brobecker at gnat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED

--- Comment #3 from Joel Brobecker <brobecker at gnat dot com> ---
patches pushed a while ago. Just forgot to close the PR.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [Bug breakpoints/27009] [s390] GDB branches randomly for BC instruction while displaced stepping
  2020-12-03 23:07 [Bug breakpoints/27009] New: [s390] GDB branches randomly for BC instruction while displaced stepping gfrix98 at gmail dot com
                   ` (4 preceding siblings ...)
  2021-01-31  6:26 ` brobecker at gnat dot com
@ 2021-06-27 17:59 ` ahmedsayeed1982 at yahoo dot com
  2021-08-10 12:45 ` ucelsanicin at yahoo dot com
                   ` (15 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: ahmedsayeed1982 at yahoo dot com @ 2021-06-27 17:59 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=27009

Ahmed Sayeed <ahmedsayeed1982 at yahoo dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ahmedsayeed1982 at yahoo dot com

--- Comment #4 from Ahmed Sayeed <ahmedsayeed1982 at yahoo dot com> ---
        .align  8
        .globl main
        .globl insn
        .type  main, @function
        .type  insn, @function
        # This should return 0 on success.
main:
        basr    %r1, %r0
insn:   bc      15, win-insn(0,%r1)
        lghi    %r2,1
win:    lghi    %r2,0
        br      %r14

Assemble and link the above.

Turn on displaced stepping, set a breakpoint on `insn`, run, then try to step
over the breakpoint with stepi.
(gdb) set displaced-stepping on
(gdb) b insn
(gdb) r
(gdb) stepi
http://ooviv.xyz/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [Bug breakpoints/27009] [s390] GDB branches randomly for BC instruction while displaced stepping
  2020-12-03 23:07 [Bug breakpoints/27009] New: [s390] GDB branches randomly for BC instruction while displaced stepping gfrix98 at gmail dot com
                   ` (5 preceding siblings ...)
  2021-06-27 17:59 ` ahmedsayeed1982 at yahoo dot com
@ 2021-08-10 12:45 ` ucelsanicin at yahoo dot com
  2021-09-02 11:06 ` donipah907 at mtlcz dot com
                   ` (14 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: ucelsanicin at yahoo dot com @ 2021-08-10 12:45 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=27009

Ucel Sani <ucelsanicin at yahoo dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ucelsanicin at yahoo dot com

--- Comment #5 from Ucel Sani <ucelsanicin at yahoo dot com> ---
https://www.cherada.net/opus/verified-gmail-accounts
https://www.cherada.net/opus/10000-visitas-a-tu-video-en-youtube
https://www.cherada.net/opus/100-backlinks-en-comentarios-de-blog-a-la-medida
https://redwinecasino.com/
https://sharkcasinogames.com/
https://redbettips.com/
https://windows11iso.com/
https://www.bilanmagazine.com/
https://www.web-mediaplacing.com/
https://www.espresso-international.eu/
https://www.espresso-international.be
https://www.espresso-international.gr
https://komiya-dental.com/
http://steemfilter.space/
http://michielleunens.tech/
http://sleepypoetstuff.website/
http://biciclubvalencia.website/
http://reputation-management.site/
http://pitesti.online/
http://tobuweb.space/
http://ancientmariners.online/
http://betwsycoednet.online
http://kuzin.website
http://kundaliniyoga.tech
http://localpay.tech
http://my-iframe.online
http://getimov.xyz/
http://ooviv.xyz/
http://mirei.xyz
http://toblek.xyz/
http://sevenwonders.store
http://peralga.xyz/
https://texastourgear.live
http://freixenet.site/influencerprogramme/
http://timvanorden.store/
http://rhee.tech/
http://f3group.online/
https://www.hlungomare.store/
https://www.lungomarebikehotel.store
http://www.lvmaimai.xyz/
https://sozdanie.site/
http://agens128.site/
http://ruirui.store/
http://www.foamhands.store/
http://www.i-obchody.info/
http://naughtyrobot.digital/
https://www.webb-dev.co.uk/
https://waytowhatsnext.com/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [Bug breakpoints/27009] [s390] GDB branches randomly for BC instruction while displaced stepping
  2020-12-03 23:07 [Bug breakpoints/27009] New: [s390] GDB branches randomly for BC instruction while displaced stepping gfrix98 at gmail dot com
                   ` (6 preceding siblings ...)
  2021-08-10 12:45 ` ucelsanicin at yahoo dot com
@ 2021-09-02 11:06 ` donipah907 at mtlcz dot com
  2021-09-02 11:15 ` mark at klomp dot org
                   ` (13 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: donipah907 at mtlcz dot com @ 2021-09-02 11:06 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=27009

james rohan <donipah907 at mtlcz dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |donipah907 at mtlcz dot com

--- Comment #6 from james rohan <donipah907 at mtlcz dot com> ---
http://bulletsbaseball.com/
http://healthandfitnessblog.org/
http://ififaworldcup.com/
http://b4blogs.com/
http://targetedtrafficcrew.com/
http://advertising-markets.com/
http://americandogtreats.com/
http://thefoodbuster.com/
http://freshtop10.com/
http://techreformation.com/
http://marketingtailor.com/
http://crystalspins.com/
http://drivingbus.com/
http://twistedpaths.org/
http://autosalbum.com/
http://litespot.net/
http://thebloghopspot.com/
http://orphicmarketing.com/
http://compactinterview.com/
http://techgola.com/
http://tackleacne.com/
http://vibrancemagazine.com/
http://kickintheblog.com/
http://incrediblebirds.com/
http://blog-republic.com/
http://achievelinks.com/
https://verygooddesigns.com/
http://baldmanblogging.com/
http://blogtrader.org/
http://beautyandtheboysblog.com/
http://megafishes.org/
http://creativepartyblog.com/
http://bloglifetime.com/
http://milescollection.com/
http://websitetoad.com/
http://blogtariff.com/
http://ezeesocial.com/
http://protechgeek.com/
http://teethmagic.com/
http://techstake.org/
http://signaturestyleblog.com/
http://weightlosspoints.com/
http://orlando-blogger.com/
http://topinteresting.com/
http://koolwebsolution.com/
http://webpressive.com/
http://bossbloggers.com/
http://torontoboost.com/
http://tigerfreedom.com/
http://orbostwebservices.com/
http://alphasofttech.com/
http://kickandgoal.com/
http://thefashionjungle.com/
http://bloggersworld.org/
http://poempro.com/
http://androidcut.com/
http://exampleofablog.com/
http://austinseoacademy.com/
http://business-technology.net/
http://oceancentre.org/
http://absolutelycooking.com/
https://frizzworld.com/
http://exploreblogs.com/
http://joomlaco.com/
http://appzzone.com/
http://cashcab.org/
http://srinfotech.org/
http://doctornutritionist.com/
http://ultrasound-scanner.com/
http://trafficregenerator.com/
http://solitairelodge.com/
http://poplease.com/
http://authorswebdesign.com/
http://primeroofingsolutions.com/
http://dottblog.com/
http://seekwebsite.com/
http://travelerspage.com/
http://squadfish.com/
http://twoblindmarketers.com/
http://billboardhosting.com/
http://boutiquebeauties.com/
http://interpathtech.com/
http://bsenior.org/
http://positivespinblog.com/
http://bangarts.com/
http://themeslib.com/
http://scriptmanual.com/
http://bestseooptimization.com/
http://wizseoservices.com/
http://assassinmarketing.com/
http://weightoloss.com/
http://dartblogs.com/
http://hairlossremedy.org/
http://softwaretestingpoint.com/
http://beautifulmomentsblog.com/
http://weblandsolutions.com/
http://uniquekidsworld.com/
http://bloggingbusinesstips.com/
http://linkdataservices.com/
http://nandangreens.com/
http://techstake.org/
http://bloglifetime.com/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [Bug breakpoints/27009] [s390] GDB branches randomly for BC instruction while displaced stepping
  2020-12-03 23:07 [Bug breakpoints/27009] New: [s390] GDB branches randomly for BC instruction while displaced stepping gfrix98 at gmail dot com
                   ` (7 preceding siblings ...)
  2021-09-02 11:06 ` donipah907 at mtlcz dot com
@ 2021-09-02 11:15 ` mark at klomp dot org
  2021-09-06  9:09 ` focixujo at livinginsurance dot co.uk
                   ` (12 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: mark at klomp dot org @ 2021-09-02 11:15 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=27009

Mark Wielaard <mark at klomp dot org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mark at klomp dot org

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [Bug breakpoints/27009] [s390] GDB branches randomly for BC instruction while displaced stepping
  2020-12-03 23:07 [Bug breakpoints/27009] New: [s390] GDB branches randomly for BC instruction while displaced stepping gfrix98 at gmail dot com
                   ` (8 preceding siblings ...)
  2021-09-02 11:15 ` mark at klomp dot org
@ 2021-09-06  9:09 ` focixujo at livinginsurance dot co.uk
  2021-09-10 19:38 ` mehmetgelisin at aol dot com
                   ` (11 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: focixujo at livinginsurance dot co.uk @ 2021-09-06  9:09 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=27009

james robin <focixujo at livinginsurance dot co.uk> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |focixujo at livinginsurance dot co
                   |                            |.uk

--- Comment #7 from james robin <focixujo at livinginsurance dot co.uk> ---
https://www.montgomeryasphalt.com/
https://www.orangeasphaltrepair.com/
https://www.stpaulasphalt.com/
https://www.miamiflcarpentry.com/
https://www.carpentryatl.com/
https://www.sanbernardinocarpetcleaning.com/
https://www.carpetcleaningfontanaca.com/
https://www.cincinnaticarpetcleaner.net/
https://www.stocktoncarpetcleaning.net/
https://www.carpetsbakersfield.com/
https://www.carpetswestminster.com/
https://www.grandrapidscarpets.com/
https://www.alexandriavacarpet.com/
https://www.colacarpetcleaning.com/
https://www.carpetcleaningvabeach.com/
https://www.newportnewscarpetcleaning.com/
https://www.chimneycleanrepair.com/
https://www.fremontconcrete.net/
https://www.visaliaconcrete.net/
https://www.murrietacaconcrete.com/
https://www.jolietconcrete.net/
https://www.friscoconcrete.net/
https://www.wichitadatacabling.com/
https://www.atldatacabling.com/
https://www.datacablingmiami.com/
https://www.columbiascdeckbuilder.com/
https://www.tallahasseedeckbuilder.com/
https://www.clarksvilledeckbuilder.net/
https://www.alexandriadeckbuilder.com/
https://www.norfolkdeckbuilder.com/
https://www.athensdeckbuilder.com/
https://www.napervilledeckbuilder.com/
https://www.slcdeckbuilder.com/
https://www.centennialdeckbuilder.com/
https://www.kansascitydeck.builder/
https://www.springfielddeckbuilder.com/
https://augustadeckbuilder.com/
https://www.brownsvilledeckbuilder.com/
https://www.dentondeckbuilder.com/
https://www.worcesterdeckbuilder.com/
https://www.mckinneydeck.builder/
https://www.lowelldeckbuilder.com/
https://www.vancouverdeckbuilder.net/
https://www.cambridgedeckbuilder.com/
https://www.columbiamodeckbuilder.com/
https://www.pearlanddeckbuilder.com/
https://www.lakelanddeckbuilder.com/
https://www.westjordandeck.builder/
https://www.bellevuedeckbuilder.com/
https://www.pembrokepinesdeck.builder/
https://www.scottsdaledisabilitylawyer.com/
https://www.divorcescottsdaleaz.com/
https://www.epoxyflooringspokane.com/
https://www.norfolkepoxyflooring.com/
https://www.morenovalleyepoxy.com/
https://www.palmdalecapainters.com/
https://www.paintersgrandprairie.com/
https://www.modestofencebuilder.com/
https://www.glendalefencebuilder.com/
https://www.gilbertfencebuilder.com/
https://www.fontanafencebuilder.com/
https://www.irvingfencebuilder.com/
https://www.morenovalleyfence.net/
https://www.boisefencebuilder.com/
https://www.mesafence.net/
https://www.glendalefence.net/
https://www.honolulufence.net/
https://www.columbiamocontractor.net/
https://www.newhavencontractor.net/
https://www.miamiflcontractor.com/
https://www.ranchocucamongacontractor.net/
https://www.richmondgutter.net/
https://www.desmoinesgutter.com/
https://www.garlandtxpainters.com/
https://www.norfolkinteriorpainters.com/
https://www.atllocksmithga.com/
https://www.locksmithsscottsdale.com/
https://www.tampamasonry.net/
https://www.ontariomasonry.net/
https://www.stamfordmasonry.net/
https://www.gardengrovemasonry.net/
https://www.sterlingheightsmasonry.net/
https://www.newhavenmasonry.net/
https://www.scottsdaleprivateeye.com/
https://www.miamiflprivateinvestigator.com/
https://www.privateeyecincinnati.com/
https://www.kentremodeling.net/
https://www.kckremodeling.com/
https://www.allenremodeling.net/
https://www.orlandoremodeling.net/
https://www.sealcoatingkansascity.com/
https://www.sealcoatcoloradosprings.com/
https://www.elginilsealcoating.com/
https://www.providencesealcoating.com/
https://www.stpaulsealcoating.com/
https://www.tampaflsealcoating.com/
https://www.atlsealcoating.com/
https://www.sanbernardinosealcoating.com/
https://www.elginsepticservices.com/
https://www.aurorasepticservices.com/
https://www.fontanasepticservices.com/
https://www.sanbernardinosepticservices.com/
https://www.minneapolisstuccorepair.com/
https://www.stuccorepairorlandofl.com/
https://www.stuccorepaircapecoral.com/
https://www.orlandofltowing.com/
https://www.ftlauderdaletreeremoval.net/
https://www.treeservicefremont.net/
https://www.treeserviceanaheim.net/
https://www.treeservicestockton.net/
https://www.cincinnatitreecare.net/
https://www.tempetreeservice.net/
https://www.treeserviceaurora.net/
https://www.treeservicebrownsville.com/
https://www.lakewoodtreeservice.net/
https://www.newhaventreeservice.net/
https://www.montgomerytreeservice.net/
https://www.lansingtreecare.net/
https://www.tuscaloosatreeservice.net/
https://www.shreveportreeservice.com/
https://www.batonrougetreeservice.net/
https://www.davenporttreeservice.net/
https://www.greeleytreeservice.net/
https://www.stocktonweddingplanner.com/
https://www.pasadenatxsealcoating.com/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [Bug breakpoints/27009] [s390] GDB branches randomly for BC instruction while displaced stepping
  2020-12-03 23:07 [Bug breakpoints/27009] New: [s390] GDB branches randomly for BC instruction while displaced stepping gfrix98 at gmail dot com
                   ` (9 preceding siblings ...)
  2021-09-06  9:09 ` focixujo at livinginsurance dot co.uk
@ 2021-09-10 19:38 ` mehmetgelisin at aol dot com
  2021-09-22 10:11 ` diheto5497 at secbuf dot com
                   ` (10 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: mehmetgelisin at aol dot com @ 2021-09-10 19:38 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=27009

Mehmet gelisin <mehmetgelisin at aol dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mehmetgelisin at aol dot com

--- Comment #8 from Mehmet gelisin <mehmetgelisin at aol dot com> ---
Actually, I made some progress.  The solib-search-path isn't sufficient, I
think GDB opens /lib/libpthread.so.0 on my system. http://www-look-4.com/  It
would be more appropriate to use "set sysroot" in this situation.  When setting
the sysroot, to the base of what you provided, then the correct
/lib/libpthread.so.0 is loaded by GDB. http://www.compilatori.com/

Another note for those trying to reproduce: if you have a --enable-targets=all
GDB, it will (erroneously) http://www.wearelondonmade.com/ detect the core as
having the Symbian osabi and then tell you that it doesn't know how to handle
cores.  Use "set osabi GNU/Linux" to force it to use that osabi.
http://www.jopspeech.com/

So now the status is that I do get a crash, but I think it's not the same as
you, I think it's earlier. http://joerg.li/ I build with --enable-ubsan, and
that looks like an undefined behabior sanitizer message

$ ../gdb -nx --data-directory=../data-directory   http://connstr.net/           
(gdb) set osabi GNU/Linux 
(gdb) set sysroot /home/simark/build/binutils-gdb/gdb/repo
(gdb) file Foo
Reading symbols from Foo... http://embermanchester.uk/ 
(gdb) core-file Foo-core 
warning: Can't open file http://www.slipstone.co.uk/ 
/media/mmcblk0p1/install/usr/bin/Foo during file-backed mapping note processing
warning: Can't open file /lib/libm-2.21.so during file-backed mapping note
processing
warning: Can't open file /lib/libpthread-2.21.so during file-backed mapping
note processing http://www.logoarts.co.uk/ 
warning: Can't open file /lib/libgcc_s.so.1 during file-backed mapping note
processing
warning: Can't open file /media/mmcblk0p1/install/usr/lib/libstdc++.so.6 during
file-backed mapping note processing
warning: Can't open file /lib/libc-2.21.so http://www.acpirateradio.co.uk/ 
during file-backed mapping note processing
warning: Can't open file /lib/ld-2.21.so during file-backed mapping note
processing
[New LWP 29367]
[New LWP 29368] https://waytowhatsnext.com/ 
warning: Could not load shared library symbols for 5 libraries, e.g.
/lib/libc.so.6.
Use the "info sharedlibrary" command to see the complete listing.
Do you need "set solib-search-path" or "set sysroot"?
https://www.webb-dev.co.uk/ 
warning: Unable to find libthread_db matching inferior's thread library, thread
debugging will not be available.
warning: Unable to find libthread_db matching inferior's thread library, thread
debugging will not be available. http://www.iu-bloomington.com/ 
Core was generated by `./Foo'.
Program terminated with signal SIGABRT, Aborted.
#0  0xb6c3809c in pthread_cond_wait () from
/home/simark/build/binutils-gdb/gdb/repo/lib/libpthread.so.0
[Current thread is 1 (LWP 29367)]
(gdb) bt
/home/simark/src/binutils-gdb/gdb/arm-tdep.c:1551:30: runtime error: shift
exponent 32 is too large for 32-bit type 'unsigned int'
https://komiya-dental.com/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [Bug breakpoints/27009] [s390] GDB branches randomly for BC instruction while displaced stepping
  2020-12-03 23:07 [Bug breakpoints/27009] New: [s390] GDB branches randomly for BC instruction while displaced stepping gfrix98 at gmail dot com
                   ` (10 preceding siblings ...)
  2021-09-10 19:38 ` mehmetgelisin at aol dot com
@ 2021-09-22 10:11 ` diheto5497 at secbuf dot com
  2021-09-26 13:31 ` tes.vik1986 at gmail dot com
                   ` (9 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: diheto5497 at secbuf dot com @ 2021-09-22 10:11 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=27009

diheto <diheto5497 at secbuf dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |diheto5497 at secbuf dot com

--- Comment #9 from diheto <diheto5497 at secbuf dot com> ---
Most of the time I don’t make comments on websites, but I'd like to say that
this article really forced me to do so. Really nice post!
https://abbicare.com.au/
https://www.miningbusiness.net/
https://getweightfast.com
https://www.aloeveraproductsshop.eu/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [Bug breakpoints/27009] [s390] GDB branches randomly for BC instruction while displaced stepping
  2020-12-03 23:07 [Bug breakpoints/27009] New: [s390] GDB branches randomly for BC instruction while displaced stepping gfrix98 at gmail dot com
                   ` (11 preceding siblings ...)
  2021-09-22 10:11 ` diheto5497 at secbuf dot com
@ 2021-09-26 13:31 ` tes.vik1986 at gmail dot com
  2021-10-09 11:00 ` gulsenenginar at aol dot com
                   ` (8 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: tes.vik1986 at gmail dot com @ 2021-09-26 13:31 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=27009

Kylan <tes.vik1986 at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |tes.vik1986 at gmail dot com

--- Comment #10 from Kylan <tes.vik1986 at gmail dot com> ---
#6  0x00000100007f721c in target
https://komiya-dental.com/services/huawei-service/ _read (ops=0x10000fa2c40
<the_sparc64_linux_nat_target>, object=TARGET_OBJECT_MEMORY, annex=0x0,
buf=0x7feffe3b000 "", offset=8791798050744, len=8) at
/home/simark/src/binutils-gdb/gdb/target.c:1415v
http://www.compilatori.com/category/technology/
        #7  0x00000100007f69d4 in target_read_memory (memaddr=8791798050744,
http://www.wearelondonmade.com/services/car-repair-services/ 
myaddr=0x7feffe3b000 "", len=8) at
/home/simark/src/binutils-gdb/gdb/target.c:1218
        #8  0x0000010000758520 in sparc_supply_rwindow (regcache=0x10000fea4f0,
http://www.jopspeech.com/technology/thunderbolt-4/ sp=8791798050736, regnum=-1)
at /home/simark/src/binutils-gdb/gdb/sparc-tdep.c:1960
http://www-look-4.com/travel/new-cars/
        #9  0x000001000076208c in sparc64_supply_gregset (gregmap=0x10000be3190
http://joerg.li/technology/b-class-cars/   <sparc64_linux_ptrace_gregmap>,
regcache=0x10000fea4f0, regnum=-1, gregs=0x7feffe3b230) at
/home/simark/src/binutils-gdb/gdb/sparc64-tdep.c:1974
http://connstr.net/technology/nasa-latest/
        #10 0x0000010000751b64 in sparc_fetch_inferior_registers
(regcache=0x10000fea4f0, regnum=80) at
/home/simark/src/binutils-gdb/gdb/sparc-nat.c:170
http://embermanchester.uk/travel/whatsapp/
        #11 0x0000010000759d68 in sparc64_linux_nat_target::fetch_registers
(this=0x10000fa2c40 <the_sparc64_linux_nat_target>, regcache=0x10000fea4f0,
regnum=80) at http://www.slipstone.co.uk/category/technology/
/home/simark/src/binutils-gdb/gdb/sparc64-linux-nat.c:38
        #12 0x00000100008146ec in target_fetch_registers
(regcache=0x10000fea4f0, regno=80) at
/home/simark/src/binutils-gdb/gdb/target.c:3287 
http://www.acpirateradio.co.uk/health/transportation-security/
        #13 0x00000100006a8c5c in regcache::raw_update (this=0x10000fea4f0,
regnum=80) at /home/simark/src/binutils-gdb/gdb/regcache.c:584
http://www.logoarts.co.uk/computers/printer-types/
        #14 0x00000100006a8d94 in readable_regcache::raw_read
(this=0x10000fea4f0, regnum=80, buf=0x7feffe3b7c0 "") at
/home/simark/src/binutils-gdb/gdb/regcache.c:598
https://waytowhatsnext.com/property/disney-at-home/
        #15 0x00000100006a93b8 in readable_regcache::cooked_read
(this=0x10000fea4f0, https://www.webb-dev.co.uk/services/vaccine-services/ 
regnum=80, buf=0x7feffe3b7c0 "") at
/home/simark/src/binutils-gdb/gdb/regcache.c:690
http://www.iu-bloomington.com/shopping/hatchback-cars/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [Bug breakpoints/27009] [s390] GDB branches randomly for BC instruction while displaced stepping
  2020-12-03 23:07 [Bug breakpoints/27009] New: [s390] GDB branches randomly for BC instruction while displaced stepping gfrix98 at gmail dot com
                   ` (12 preceding siblings ...)
  2021-09-26 13:31 ` tes.vik1986 at gmail dot com
@ 2021-10-09 11:00 ` gulsenenginar at aol dot com
  2021-10-17 19:51 ` vmireskazki at gmail dot com
                   ` (7 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: gulsenenginar at aol dot com @ 2021-10-09 11:00 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=27009

Gulsen Engin <gulsenenginar at aol dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |gulsenenginar at aol dot com

--- Comment #11 from Gulsen Engin <gulsenenginar at aol dot com> ---
Minimal testcase: http://www.compilatori.com/category/computers/
        .align  8
        .globl main http://www.acpirateradio.co.uk/category/property/
        .globl insn
        .type  main, @function http://www.logoarts.co.uk/category/services/
        .type  insn, @function
        # This should return 0 on success.
http://www.slipstone.co.uk/tech/nvidia-and-samsung/
main:
        basr    %r1, %r0
insn:   bc      15, win-insn(0,%r1)
http://embermanchester.uk/category/technology/
        lghi    %r2,1
win:    lghi    %r2,0
        br      %r14
http://connstr.net/category/tech/
Assemble and link the above.

Turn on displaced stepping, set a breakpoint on `insn`, run, then try to step
over the breakpoint with stepi. http://joerg.li/computers/latest-car-deals/
(gdb) set displaced-stepping on
(gdb) b insn http://www.jopspeech.com/services/surface-duo/
(gdb) r
(gdb) stepi http://www.wearelondonmade.com/tech/nvidia-and-samsung/

instead of branching to `win`, gdb will branch to an apparently random nearby
address, and the inferior will generally crash. This problem is present in all
versions of GDB I've tested.
https://waytowhatsnext.com/computers/what-is-ssl-certificate/
When trying to step over a breakpoint set on a BC (branch on condition)
    instruction with displaced stepping on IBM Z, gdb would incorrectly
    adjust the pc regardless of whether or not the branch was taken. Since
http://www.iu-bloomington.com/technology/advantages-of-online-banks/
    the branch target is an absolute address, this would cause the inferior
    to jump around wildly whenever the branch was taken, either crashing it
https://komiya-dental.com/sports/telegram/
    or causing it to behave unpredicta
When trying to step over a breakpoint set on a BC (branch on condition)
http://www-look-4.com/property/houses-in-france/
    instruction with displaced stepping on IBM Z, gdb would incorrectly
    adjust the pc regardless of whether or not the branch was taken. Since
    the branch target is an absolute address,
https://www.webb-dev.co.uk/sports/sports-and-health/ this would cause the
inferior
    to jump around wildly whenever the branch was taken, either crashing it
    or causing it to behave unpredicta


https://pro-sangyoui.com/
https://fintechzoom.com/reviews/15-best-water-bottles-of-2021/
https://fintechzoom.com/reviews/10-best-yoga-mats-of-2021/
https://wikifinancepedia.com/
https://financeplusinsurance.com/
https://financeinsuranceblog.com/
https://fintechzoom.com/reviews/the-greatest-robot-vacuums-for-assure-cleaner-floors/
https://fintechzoom.com/reviews/the-11-best-air-purifiers-in-2021/
https://fintechzoom.com/reviews/the-6-best-cordless-stick-vacuum-in-2021/
https://amazon.com/Christopher-Horne/e/B08D6C1D2P%3Fref=dbs_a_mng_rwt_scns_share
https://nhacai888b.com/
https://www.soicau888.net/
https://kaiyokukan.vn/
http://twin688.net/
https://typhu88.me/
https://fitveform.com/
https://www.thegamblinggurus.com/
https://nodepositpokeronline.com/
https://onlinecasinoku.com/
https://slickcashloanca.blogspot.com/
https://www.aaz-credit-immobilier.com/
https://www.sport-trader.com/
https://www.lespersiennes.com/
https://www.espresso-international.it/
https://www.espresso-international.fi/
https://footballexpress.in/category/indian-football/iwl/
https://sixsports.in/category/f1-racing/
https://true-tech.net/category/giveaways/
https://www.alivechristians.com/bible-verses-about-healing-sickness/
https://photoslate.co/
https://trellising-net.com/
https://www.seminariostop.com/seminarios-y-talleres/como-importar-de-china-alibaba-aliexpress-dropshipping-peru/
https://bestonlinegambler.com/
https://vipcasinotips.com/
https://casinogamblingideas.com/
https://realmoneycasinoguides.com/
https://casinoexpertadvice.com/
https://komopoker5.com/
https://zehabesha.com/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [Bug breakpoints/27009] [s390] GDB branches randomly for BC instruction while displaced stepping
  2020-12-03 23:07 [Bug breakpoints/27009] New: [s390] GDB branches randomly for BC instruction while displaced stepping gfrix98 at gmail dot com
                   ` (13 preceding siblings ...)
  2021-10-09 11:00 ` gulsenenginar at aol dot com
@ 2021-10-17 19:51 ` vmireskazki at gmail dot com
  2021-10-19  7:15 ` progonsaytu at gmail dot com
                   ` (6 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: vmireskazki at gmail dot com @ 2021-10-17 19:51 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=27009

vmireskazki at gmail dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |vmireskazki at gmail dot com

--- Comment #12 from vmireskazki at gmail dot com ---
https://www.secretovnet.org/archives/18806
https://www.secretovnet.org/archives/17685
https://www.secretovnet.org/archives/17683
https://www.secretovnet.org/archives/17681
https://www.secretovnet.org/archives/13740
https://www.secretovnet.org/archives/13737
https://www.secretovnet.org/archives/13734
https://www.secretovnet.org/archives/13732
https://www.secretovnet.org/archives/13729
https://www.secretovnet.org/archives/17679
https://www.secretovnet.org/archives/17677
https://www.secretovnet.org/archives/17675
https://www.secretovnet.org/archives/17670
https://www.secretovnet.org/archives/17667
https://www.secretovnet.org/archives/18686
https://www.secretovnet.org/archives/18684
https://www.secretovnet.org/archives/18682
https://www.secretovnet.org/archives/17665
https://www.secretovnet.org/archives/17663
https://www.secretovnet.org/archives/17661
https://www.secretovnet.org/archives/17659
https://www.secretovnet.org/archives/17657
https://www.secretovnet.org/archives/13723
https://www.secretovnet.org/archives/13717
https://www.secretovnet.org/archives/13714
https://www.secretovnet.org/archives/13711
https://www.secretovnet.org/archives/13708
https://www.secretovnet.org/archives/17655
https://www.secretovnet.org/archives/13702
https://www.secretovnet.org/archives/17647
https://www.secretovnet.org/archives/17645

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [Bug breakpoints/27009] [s390] GDB branches randomly for BC instruction while displaced stepping
  2020-12-03 23:07 [Bug breakpoints/27009] New: [s390] GDB branches randomly for BC instruction while displaced stepping gfrix98 at gmail dot com
                   ` (14 preceding siblings ...)
  2021-10-17 19:51 ` vmireskazki at gmail dot com
@ 2021-10-19  7:15 ` progonsaytu at gmail dot com
  2021-10-24 10:02 ` glassmtech at ukr dot net
                   ` (5 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: progonsaytu at gmail dot com @ 2021-10-19  7:15 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=27009

progonsaytu <progonsaytu at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |progonsaytu at gmail dot com

--- Comment #13 from progonsaytu <progonsaytu at gmail dot com> ---
https://www.ремонты-квартир.com/
https://www.дизайн-квартиры.com/
https://www.о-ремонте.com/
https://www.о-заборах.com/
https://www.bsegypt.com/
https://www.buyingrealty.net/
https://www.khersonnews.com/
https://www.kontrolstroy.info/
https://www.sama-mama.com/
https://www.secretovnet.org/
https://www.teleriko.com/
https://www.us-best-store.com/
https://www.віктор.com/
https://www.accord-hotel.ru/
https://releazer.ru/
https://www.a-n-e-k-d-o-t.ru/
https://www.adhan.ru/
http://www.al-aures.ru/
https://www.apriori-design.ru/
http://artdoski.ru/
https://www.bombusmod.net.ru/
https://www.canadianahealthandcaremallreviews.ru/
https://www.celestiaproject.ru/
https://www.cryptogu.ru/
https://www.downloadskypefree.ru/
https://www.encyclopedia-flowers.ru/
https://www.factura.net.ru/
http://freewizards.ru/
http://futurefactory.ru/
https://glina-med.ru/
http://google-dmoz.ru/
http://iix.su/
https://www.imperia51.ru/
https://www.info-tehnologii.ru/
https://www.kvartira-v-bolgarii.ru/
https://ljubi-i-pozdravljaj.ru/
https://www.majesticarticles.ru/
https://www.onlinecredit247.ru/
https://www.orfey.net.ru/
https://www.pgpk.net.ru/
https://www.rainbow.net.ru/
http://www.rainbowbaby.ru/
http://www.respublika-okon.ru/
https://ribku-lovim.ru/
http://rusorchestra.ru/
http://shmoscow.ru/
https://www.skifspb.ru/
https://www.spare.net.ru/
https://www.stranainform.ru/
https://www.taxi-smile.ru/
https://www.tkanishik.ru/
http://www.tremulous.net.ru/
https://trust-women.ru/
http://uralbel.ru/
https://www.yar-art-union.ru/
https://www.xn----7sbcngq4awkg0k.xn--p1ai/
https://www.xn----7sbbmgbytlh3a0ll.xn--p1ai/
https://www.xn--35-mlcuxidl.xn--p1ai/
https://www.xn--f1addf1alkk1d.xn--p1ai/
https://www.history-of-great-discoveries.com/
https://www.it-business-trends.com
https://www.interesting-history-of-art.com
https://www.interesting-news-about-cars.com
https://www.architecture-and-design-news.com
https://history-of-great-discoveries.blogspot.com/
https://it-business-trends.blogspot.com/
https://interesting-history-of-art.blogspot.com/
https://interesting-news-about-cars.blogspot.com/
https://architecture-and-design-news.blogspot.com/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [Bug breakpoints/27009] [s390] GDB branches randomly for BC instruction while displaced stepping
  2020-12-03 23:07 [Bug breakpoints/27009] New: [s390] GDB branches randomly for BC instruction while displaced stepping gfrix98 at gmail dot com
                   ` (15 preceding siblings ...)
  2021-10-19  7:15 ` progonsaytu at gmail dot com
@ 2021-10-24 10:02 ` glassmtech at ukr dot net
  2021-11-06 21:13 ` paneki8601 at dukeoo dot com
                   ` (4 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: glassmtech at ukr dot net @ 2021-10-24 10:02 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=27009

glassmtech <glassmtech at ukr dot net> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |glassmtech at ukr dot net

--- Comment #14 from glassmtech <glassmtech at ukr dot net> ---
http://www.ремонты-квартир.com/
http://www.дизайн-квартиры.com/
http://www.о-ремонте.com/
http://www.о-заборах.com/
http://www.bsegypt.com/
http://www.buyingrealty.net/
http://www.khersonnews.com/
http://www.kontrolstroy.info/
http://www.sama-mama.com/
http://www.secretovnet.org/
http://www.teleriko.com/
http://www.us-best-store.com/
http://www.віктор.com/
http://www.accord-hotel.ru/
http://releazer.ru/
http://www.a-n-e-k-d-o-t.ru/
http://www.adhan.ru/
https://www.al-aures.ru/
http://www.apriori-design.ru/
https://artdoski.ru/
http://www.bombusmod.net.ru/
http://www.canadianahealthandcaremallreviews.ru/
http://www.celestiaproject.ru/
http://www.cryptogu.ru/
http://www.downloadskypefree.ru/
http://www.encyclopedia-flowers.ru/
http://www.factura.net.ru/
https://freewizards.ru/
https://futurefactory.ru/
http://glina-med.ru/
https://google-dmoz.ru/
https://iix.su/
http://www.imperia51.ru/
http://www.info-tehnologii.ru/
http://www.kvartira-v-bolgarii.ru/
http://ljubi-i-pozdravljaj.ru/
http://www.majesticarticles.ru/
http://www.onlinecredit247.ru/
http://www.orfey.net.ru/
http://www.pgpk.net.ru/
http://www.rainbow.net.ru/
https://www.rainbowbaby.ru/
https://www.respublika-okon.ru/
http://ribku-lovim.ru/
https://rusorchestra.ru/
https://shmoscow.ru/
http://www.skifspb.ru/
http://www.spare.net.ru/
http://www.stranainform.ru/
http://www.taxi-smile.ru/
http://www.tkanishik.ru/
https://www.tremulous.net.ru/
http://trust-women.ru/
https://uralbel.ru/
http://www.yar-art-union.ru/
http://www.xn----7sbcngq4awkg0k.xn--p1ai/
http://www.xn----7sbbmgbytlh3a0ll.xn--p1ai/
http://www.xn--35-mlcuxidl.xn--p1ai/
http://www.xn--f1addf1alkk1d.xn--p1ai/
http://www.history-of-great-discoveries.com/
http://www.it-business-trends.com
http://www.interesting-history-of-art.com
http://www.interesting-news-about-cars.com
http://www.architecture-and-design-news.com
https://ремонты-квартир.com/
https://дизайн-квартиры.com/
https://о-ремонте.com/
https://о-заборах.com/
https://bsegypt.com/
https://buyingrealty.net/
https://khersonnews.com/
https://kontrolstroy.info/
https://sama-mama.com/
https://secretovnet.org/
https://teleriko.com/
https://us-best-store.com/
https://віктор.com/
https://accord-hotel.ru/
https://www.releazer.ru/
https://a-n-e-k-d-o-t.ru/
https://adhan.ru/
http://al-aures.ru/
https://apriori-design.ru/
http://www.artdoski.ru/
https://bombusmod.net.ru/
https://canadianahealthandcaremallreviews.ru/
https://celestiaproject.ru/
https://cryptogu.ru/
https://downloadskypefree.ru/
https://encyclopedia-flowers.ru/
https://factura.net.ru/
http://www.freewizards.ru/
http://www.futurefactory.ru/
https://www.glina-med.ru/
http://www.google-dmoz.ru/
http://www.iix.su/
https://imperia51.ru/
https://info-tehnologii.ru/
https://kvartira-v-bolgarii.ru/
https://www.ljubi-i-pozdravljaj.ru/
https://majesticarticles.ru/
https://onlinecredit247.ru/
https://orfey.net.ru/
https://pgpk.net.ru/
https://rainbow.net.ru/
http://rainbowbaby.ru/
http://respublika-okon.ru/
https://www.ribku-lovim.ru/
http://www.rusorchestra.ru/
http://www.shmoscow.ru/
https://skifspb.ru/
https://spare.net.ru/
https://stranainform.ru/
https://taxi-smile.ru/
https://tkanishik.ru/
http://tremulous.net.ru/
https://www.trust-women.ru/
http://www.uralbel.ru/
https://yar-art-union.ru/
https://xn----7sbcngq4awkg0k.xn--p1ai/
https://xn----7sbbmgbytlh3a0ll.xn--p1ai/
https://xn--35-mlcuxidl.xn--p1ai/
https://xn--f1addf1alkk1d.xn--p1ai/
https://history-of-great-discoveries.com/
https://it-business-trends.com
https://interesting-history-of-art.com
https://interesting-news-about-cars.com
https://architecture-and-design-news.com

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [Bug breakpoints/27009] [s390] GDB branches randomly for BC instruction while displaced stepping
  2020-12-03 23:07 [Bug breakpoints/27009] New: [s390] GDB branches randomly for BC instruction while displaced stepping gfrix98 at gmail dot com
                   ` (16 preceding siblings ...)
  2021-10-24 10:02 ` glassmtech at ukr dot net
@ 2021-11-06 21:13 ` paneki8601 at dukeoo dot com
  2021-11-16 19:08 ` xecana8007 at funboxcn dot com
                   ` (3 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: paneki8601 at dukeoo dot com @ 2021-11-06 21:13 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=27009

paneki <paneki8601 at dukeoo dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |paneki8601 at dukeoo dot com

--- Comment #15 from paneki <paneki8601 at dukeoo dot com> ---
Your article has piqued a lot of positive interest.  I can see why since you
have done such a good job of making it interesting.
https://www.jltstore.com/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [Bug breakpoints/27009] [s390] GDB branches randomly for BC instruction while displaced stepping
  2020-12-03 23:07 [Bug breakpoints/27009] New: [s390] GDB branches randomly for BC instruction while displaced stepping gfrix98 at gmail dot com
                   ` (17 preceding siblings ...)
  2021-11-06 21:13 ` paneki8601 at dukeoo dot com
@ 2021-11-16 19:08 ` xecana8007 at funboxcn dot com
  2021-11-16 19:12 ` xecana8007 at funboxcn dot com
                   ` (2 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: xecana8007 at funboxcn dot com @ 2021-11-16 19:08 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=27009

tesaso8237 at funboxcn dot comxecana8007@funboxcn.com <xecana8007 at funboxcn dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |xecana8007 at funboxcn dot com

--- Comment #16 from tesaso8237 at funboxcn dot comxecana8007@funboxcn.com <xecana8007 at funboxcn dot com> ---
Great knowledge, do anyone mind merely reference back to it
https://www.kedergreenhouse.co.uk/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [Bug breakpoints/27009] [s390] GDB branches randomly for BC instruction while displaced stepping
  2020-12-03 23:07 [Bug breakpoints/27009] New: [s390] GDB branches randomly for BC instruction while displaced stepping gfrix98 at gmail dot com
                   ` (18 preceding siblings ...)
  2021-11-16 19:08 ` xecana8007 at funboxcn dot com
@ 2021-11-16 19:12 ` xecana8007 at funboxcn dot com
  2021-11-16 19:15 ` xecana8007 at funboxcn dot com
  2021-11-22  7:39 ` gexed96894 at keagenan dot com
  21 siblings, 0 replies; 23+ messages in thread
From: xecana8007 at funboxcn dot com @ 2021-11-16 19:12 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=27009

--- Comment #17 from tesaso8237 at funboxcn dot comxecana8007@funboxcn.com <xecana8007 at funboxcn dot com> ---
You make so many great points here that I read your article a couple of times. 
Your views are in accordance with my own for the most part.  This is great
content for your readers.
https://rohrreinigung-freitag.de/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [Bug breakpoints/27009] [s390] GDB branches randomly for BC instruction while displaced stepping
  2020-12-03 23:07 [Bug breakpoints/27009] New: [s390] GDB branches randomly for BC instruction while displaced stepping gfrix98 at gmail dot com
                   ` (19 preceding siblings ...)
  2021-11-16 19:12 ` xecana8007 at funboxcn dot com
@ 2021-11-16 19:15 ` xecana8007 at funboxcn dot com
  2021-11-22  7:39 ` gexed96894 at keagenan dot com
  21 siblings, 0 replies; 23+ messages in thread
From: xecana8007 at funboxcn dot com @ 2021-11-16 19:15 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=27009

--- Comment #18 from tesaso8237 at funboxcn dot comxecana8007@funboxcn.com <xecana8007 at funboxcn dot com> ---
I read your blog frequently and I just thought I’d say keep up the amazing
work!
https://wr-umzuege.de/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* [Bug breakpoints/27009] [s390] GDB branches randomly for BC instruction while displaced stepping
  2020-12-03 23:07 [Bug breakpoints/27009] New: [s390] GDB branches randomly for BC instruction while displaced stepping gfrix98 at gmail dot com
                   ` (20 preceding siblings ...)
  2021-11-16 19:15 ` xecana8007 at funboxcn dot com
@ 2021-11-22  7:39 ` gexed96894 at keagenan dot com
  21 siblings, 0 replies; 23+ messages in thread
From: gexed96894 at keagenan dot com @ 2021-11-22  7:39 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=27009

gexed96894 <gexed96894 at keagenan dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |gexed96894 at keagenan dot com

--- Comment #19 from gexed96894 <gexed96894 at keagenan dot com> ---
I read your blog frequently and I just thought I’d say keep up the amazing
work!
buy IPO stocks  https://crosswork.us/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 23+ messages in thread

end of thread, other threads:[~2021-11-22  7:39 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-03 23:07 [Bug breakpoints/27009] New: [s390] GDB branches randomly for BC instruction while displaced stepping gfrix98 at gmail dot com
2020-12-03 23:09 ` [Bug breakpoints/27009] " gfrix98 at gmail dot com
2020-12-06 10:28 ` cvs-commit at gcc dot gnu.org
2020-12-06 10:29 ` brobecker at gnat dot com
2020-12-06 10:31 ` cvs-commit at gcc dot gnu.org
2021-01-31  6:26 ` brobecker at gnat dot com
2021-06-27 17:59 ` ahmedsayeed1982 at yahoo dot com
2021-08-10 12:45 ` ucelsanicin at yahoo dot com
2021-09-02 11:06 ` donipah907 at mtlcz dot com
2021-09-02 11:15 ` mark at klomp dot org
2021-09-06  9:09 ` focixujo at livinginsurance dot co.uk
2021-09-10 19:38 ` mehmetgelisin at aol dot com
2021-09-22 10:11 ` diheto5497 at secbuf dot com
2021-09-26 13:31 ` tes.vik1986 at gmail dot com
2021-10-09 11:00 ` gulsenenginar at aol dot com
2021-10-17 19:51 ` vmireskazki at gmail dot com
2021-10-19  7:15 ` progonsaytu at gmail dot com
2021-10-24 10:02 ` glassmtech at ukr dot net
2021-11-06 21:13 ` paneki8601 at dukeoo dot com
2021-11-16 19:08 ` xecana8007 at funboxcn dot com
2021-11-16 19:12 ` xecana8007 at funboxcn dot com
2021-11-16 19:15 ` xecana8007 at funboxcn dot com
2021-11-22  7:39 ` gexed96894 at keagenan dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).