[gdb] Fix grammar in comments and docs
authorTom de Vries <tdevries@suse.de>
Mon, 5 Jun 2023 10:53:15 +0000 (12:53 +0200)
committerTom de Vries <tdevries@suse.de>
Mon, 5 Jun 2023 10:53:15 +0000 (12:53 +0200)
Fix grammar in some comments and docs:
- machines that doesn't -> machines that don't
- its a -> it's a
- its the -> it's the
- if does its not -> if it does it's not
- one more instructions if doesn't match ->
  one more instruction if it doesn't match
- it's own -> its own
- it's first -> its first
- it's pointer -> its pointer

I also came across "it's performance" in gdb/stubs/*-stub.c in the HP public
domain notice, I've left that alone.

Tested on x86_64-linux.

16 files changed:
gdb/amd64-tdep.c
gdb/doc/stabs.texinfo
gdb/gdbarch-gen.h
gdb/gdbarch_components.py
gdb/i386-tdep.c
gdb/or1k-tdep.c
gdb/ppc-linux-nat.c
gdb/ppc64-tdep.c
gdb/solib-dsbt.c
gdb/solib-svr4.c
gdb/stubs/i386-stub.c
gdb/stubs/m32r-stub.c
gdb/stubs/m68k-stub.c
gdb/testsuite/gdb.base/coremaker.c
gdb/testsuite/gdb.mi/mi-exec-run.exp
gdb/testsuite/lib/mi-support.exp

index 2b027575a0d1aae95a80440ea3e4fd9e37dca1f9..2c4189203cb07ef30f8e130dbec9d6696f2c87f8 100644 (file)
@@ -1750,7 +1750,7 @@ amd64_displaced_step_fixup (struct gdbarch *gdbarch,
         system calls.  */
       if (amd64_syscall_p (insn_details, &insn_len)
          /* GDB can get control back after the insn after the syscall.
-            Presumably this is a kernel bug.  Fixup ensures its a nop, we
+            Presumably this is a kernel bug.  Fixup ensures it's a nop, we
             add one to the length for it.  */
          && (pc < to || pc > (to + insn_len + 1)))
        displaced_debug_printf ("syscall changed %%rip; not relocating");
index e2ca6f61dbe751e1fb6fd4d97f06649575dd1f8c..a9f48ef93183711d03a2cbde24931ec6e5f1e71f 100644 (file)
@@ -3971,7 +3971,7 @@ symbols of file scope.  This is true for default, @samp{-ansi} and
 
 @item
 What ends the procedure scope?  Is it the proc block's @code{N_RBRAC} or the
-next @code{N_FUN}?  (I believe its the first.)
+next @code{N_FUN}?  (I believe it's the first.)
 @end itemize
 
 @node Stab Sections
index 7f83bf4e2140f3b85e0acc999139cfba06260e19..101b1b73636af87036928611911c22d4f0f1fbb8 100644 (file)
@@ -574,7 +574,7 @@ extern void set_gdbarch_memory_remove_breakpoint (struct gdbarch *gdbarch, gdbar
 extern CORE_ADDR gdbarch_decr_pc_after_break (struct gdbarch *gdbarch);
 extern void set_gdbarch_decr_pc_after_break (struct gdbarch *gdbarch, CORE_ADDR decr_pc_after_break);
 
-/* A function can be addressed by either it's "pointer" (possibly a
+/* A function can be addressed by either its "pointer" (possibly a
    descriptor address) or "entry point" (first executable instruction).
    The method "convert_from_func_ptr_addr" converting the former to the
    latter.  gdbarch_deprecated_function_start_offset is being used to implement
index ef4a7e61b6cdceb2df8f599fb9b1582e26c316e2..23e5789327c938fd0b31d9e6812ea42e531a3835 100644 (file)
@@ -1072,7 +1072,7 @@ Value(
 
 Value(
     comment="""
-A function can be addressed by either it's "pointer" (possibly a
+A function can be addressed by either its "pointer" (possibly a
 descriptor address) or "entry point" (first executable instruction).
 The method "convert_from_func_ptr_addr" converting the former to the
 latter.  gdbarch_deprecated_function_start_offset is being used to implement
index 6a14d0dcfe8c6522aa3d3eff5e4905cca93450da..a97e11647b9e347fd7f4081f0c6eddc77bd0a302 100644 (file)
@@ -913,7 +913,7 @@ i386_displaced_step_fixup (struct gdbarch *gdbarch,
          && pc != to + (insn - insn_start) + insn_len
          /* GDB can get control back after the insn after the syscall.
             Presumably this is a kernel bug.
-            i386_displaced_step_copy_insn ensures its a nop,
+            i386_displaced_step_copy_insn ensures it's a nop,
             we add one to the length for it.  */
          && pc != to + (insn - insn_start) + insn_len + 1)
        displaced_debug_printf ("syscall changed %%eip; not relocating");
index 5cef1fa279c0fa4974a8a2b1ad27a0eb6c65a2eb..a472a766959c0f6879f2e3e98ce2c714bac56cc7 100644 (file)
@@ -360,7 +360,7 @@ or1k_delay_slot_p (struct gdbarch *gdbarch, CORE_ADDR pc)
                           NULL, 32, &tmp_fields, 0);
 
   /* NULL here would mean the last instruction was not understood by cgen.
-     This should not usually happen, but if does its not a delay slot.  */
+     This should not usually happen, but if it does it's not a delay slot.  */
   if (insn == NULL)
     return 0;
 
index cb70b58df002cf4ecd247140da4a65a99b69235f..55dcda9f5259eb6bd33a01e85a48066ad89e01d3 100644 (file)
@@ -2126,7 +2126,7 @@ ppc_linux_nat_target::region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
          /* DAWR interface allows to watch up to 512 byte wide ranges.  */
          region_size = 512;
          /* DAWR interface allows to watch up to 512 byte wide ranges which
-            can't cross a 512 byte boundary on machines that doesn't have a
+            can't cross a 512 byte boundary on machines that don't have a
             second DAWR (P9 or less).  */
          if (!(hwdebug_info.features & PPC_DEBUG_FEATURE_DATA_BP_ARCH_31))
            region_align = 512;
index 4408a12c44b612366466cf09132f8cfffd5cae5f..fb12c057df8b8c56039e7ab556d93592efca3b04 100644 (file)
@@ -688,7 +688,7 @@ ppc64_skip_trampoline_code_1 (frame_info_ptr frame, CORE_ADDR pc)
        pc = ppc64_standard_linkage1_target (frame, insns);
       else
        {
-         /* Scan backward one more instructions if doesn't match.  */
+         /* Scan backward one more instruction if it doesn't match.  */
          pc -= 4;
          continue;
        }
index 6dcb8d22b566a035d2c301181ee5e02a7ad143ed..b18c4a3e82a1cb2510809cd86586b898a6eed33a 100644 (file)
@@ -853,7 +853,7 @@ dsbt_relocate_main_executable (void)
 }
 
 /* When gdb starts up the inferior, it nurses it along (through the
-   shell) until it is ready to execute it's first instruction.  At this
+   shell) until it is ready to execute its first instruction.  At this
    point, this function gets called via solib_create_inferior_hook.
 
    For the DSBT shared library, the main executable needs to be relocated.
index df6a695f64672b77d53ea1d8bfe54225bb0af6f6..0ef83726d62678724dc738cff91531a323765628 100644 (file)
@@ -2312,7 +2312,7 @@ svr4_create_solib_event_breakpoints (svr4_info *info, struct gdbarch *gdbarch,
    set to 1.  When the dynamic linker sees this flag set, it will set
    a breakpoint at a location known only to itself, after saving the
    original contents of that place and the breakpoint address itself,
-   in it's own internal structures.  When we resume the inferior, it
+   in its own internal structures.  When we resume the inferior, it
    will eventually take a SIGTRAP when it runs into the breakpoint.
    We handle this (in a different place) by restoring the contents of
    the breakpointed location (which is only known after it stops),
index 04996b75cf68073a9bdc3baba92ad96419d567fd..74fe4767c8315cd83468a30db6c1b9859af7e790 100644 (file)
@@ -46,7 +46,7 @@
  *
  *  Because gdb will sometimes write to the stack area to execute function
  *  calls, this program cannot rely on using the supervisor stack so it
- *  uses it's own stack area reserved in the int array remcomStack.
+ *  uses its own stack area reserved in the int array remcomStack.
  *
  *************
  *
index 7f0614a8dbd15185b165686a425bf5b0da1ea917..90754e3136424a69ab7abf85bba2565295378901 100644 (file)
@@ -46,7 +46,7 @@
  *
  *  Because gdb will sometimes write to the stack area to execute function
  *  calls, this program cannot rely on using the supervisor stack so it
- *  uses it's own stack area reserved in the int array remcomStack.
+ *  uses its own stack area reserved in the int array remcomStack.
  *
  *************
  *
index 47eca001d1230c1f00a2f8ceaae306b29c4f42c2..159842294914a293479a3e46856329c9c37849b2 100644 (file)
@@ -62,7 +62,7 @@
  * 
  *  Because gdb will sometimes write to the stack area to execute function
  *  calls, this program cannot rely on using the supervisor stack so it
- *  uses it's own stack area reserved in the int array remcomStack.  
+ *  uses its own stack area reserved in the int array remcomStack.
  * 
  *************
  *
index 9c821ce66588be6a0539fe6142aeca14385b1935..cbe9719e8db63d84e8b44eb02eb279ba3395ac9a 100644 (file)
@@ -45,7 +45,7 @@ int coremaker_data = 1;       /* In Data section */
 int coremaker_bss;     /* In BSS section */
 
 /* Place a chunk of memory before coremaker_ro to improve the chances
-   that coremaker_ro will end up on it's own page.  See:
+   that coremaker_ro will end up on its own page.  See:
 
    https://sourceware.org/pipermail/gdb-patches/2020-May/168168.html
    https://sourceware.org/pipermail/gdb-patches/2020-May/168170.html  */
index 722634a472beba252e6e39782ba3d293de661ad0..f47e2eefe4659379876c2a9a20e427cd9e7e8964 100644 (file)
@@ -62,7 +62,7 @@ proc test {inftty_mode mi_mode force_fail} {
     }
 
     if {$force_fail} {
-       # Disable the shell so that its the first exec that fails,
+       # Disable the shell so that it's the first exec that fails,
        # instead of the shell starting and then failing with some
        # unspecified output.
        mi_gdb_test "-gdb-set startup-with-shell off" ".*"
index 2ff4ab93ea8246d355fcc7b3829c01811155a786..49d5e2ef272756b7223cfe199deb91870dfd8724 100644 (file)
@@ -201,7 +201,7 @@ proc mi_gdb_start_separate_mi_tty { { flags {} } } {
 # FLAGS is a list of flags, each flag is a string.
 #
 # If "separate-inferior-tty" is specified, the inferior works with
-# it's own PTY.
+# its own PTY.
 #
 # If "separate-mi-tty" is specified, the gdb starts in CLI mode, with
 # MI running on a secondary UI, on its own tty.