[gdb] Fix more typos
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 some more typos:
- distinquish -> distinguish
- actualy -> actually
- singe -> single
- frash -> frame
- chid -> child
- dissassembler -> disassembler
- uninitalized -> uninitialized
- precontidion -> precondition
- regsiters -> registers
- marge -> merge
- sate -> state
- garanteed -> guaranteed
- explictly -> explicitly
- prefices (nonstandard plural) -> prefixes
- bondary -> boundary
- formated -> formatted
- ithe -> the
- arrav -> array
- coresponding -> corresponding
- owend -> owned
- fials -> fails
- diasm -> disasm
- ture -> true
- tpye -> type

There's one code change, the name of macro SIG_CODE_BONDARY_FAULT changed to
SIG_CODE_BOUNDARY_FAULT.

Tested on x86_64-linux.

28 files changed:
gdb/ada-lex.l
gdb/amd-dbgapi-target.c
gdb/arc-linux-tdep.h
gdb/arm-tdep.c
gdb/breakpoint.c
gdb/cli/cli-decode.c
gdb/cp-support.c
gdb/csky-tdep.c
gdb/disasm.h
gdb/dwarf2/read.c
gdb/frame.c
gdb/gdbarch_components.py
gdb/i386-linux-tdep.c
gdb/infrun.c
gdb/linux-nat.c
gdb/loongarch-tdep.c
gdb/nat/linux-osdata.c
gdb/ppc-linux-nat.c
gdb/python/py-disasm.c
gdb/regcache.c
gdb/testsuite/gdb.perf/single-step.exp
gdb/testsuite/lib/gdb.exp
gdb/tui/tui-io.c
gdb/tui/tui-winsource.h
gdb/varobj.c
gdb/z80-tdep.c
gdbserver/linux-low.cc
gdbsupport/array-view.h

index f2af21292f415b6065f24ebe8cdf641d683e0e3d..8c0e76798325db4ab3915fc4cc2ab0293ec3b82b 100644 (file)
@@ -371,7 +371,7 @@ canonicalizeNumeral (char *s1, const char *s2)
 /* Interprets the prefix of NUM that consists of digits of the given BASE
    as an integer of that BASE, with the string EXP as an exponent.
    Puts value in yylval, and returns INT, if the string is valid.  Causes
-   an error if the number is improperly formated.   BASE, if NULL, defaults
+   an error if the number is improperly formatted.   BASE, if NULL, defaults
    to "10", and EXP to "1".  The EXP does not contain a leading 'e' or 'E'.
  */
 
index f03e82e505e83232de1b0a403deaf02d56faa6e9..5565cf907fa8f3acf1859d4c85b6bccc95835246 100644 (file)
@@ -1515,7 +1515,7 @@ amd_dbgapi_target::store_registers (struct regcache *regcache, int regno)
   amdgpu_gdbarch_tdep *tdep = get_amdgpu_gdbarch_tdep (gdbarch);
 
   /* If the register has read-only bits, invalidate the value in the regcache
-     as the value actualy written may differ.  */
+     as the value actually written may differ.  */
   if (tdep->register_properties[regno]
       & AMD_DBGAPI_REGISTER_PROPERTY_READONLY_BITS)
     regcache->invalidate (regno);
index a7f510ab60850d0aa6aa9249273715d6be1c5ada..f71bdd30c3cd029d42cea1684a968aa9098c44c5 100644 (file)
@@ -31,7 +31,7 @@ void arc_linux_supply_gregset (const struct regset *regset,
                               struct regcache *regcache, int regnum,
                               const void *gregs, size_t size);
 
-/* Reads regsiters from the NT_ARC_V2 data array into the regcache.  */
+/* Reads registers from the NT_ARC_V2 data array into the regcache.  */
 
 void arc_linux_supply_v2_regset (const struct regset *regset,
                                 struct regcache *regcache, int regnum,
index 40f7e23ec0b3849f2118c720194a9f824cd2a9da..d5128754f0220b6e7af3170099bfab59f6c58e53 100644 (file)
@@ -3971,7 +3971,7 @@ struct frame_base arm_normal_base = {
 
 struct arm_dwarf2_prev_register_cache
 {
-  /* Cached value of the coresponding stack pointer for the inner frame.  */
+  /* Cached value of the corresponding stack pointer for the inner frame.  */
   CORE_ADDR sp;
   CORE_ADDR msp;
   CORE_ADDR msp_s;
index 6cf14ce579c39e760c24ecf23d3a89fdfb4e89fb..da6c8de9d144854869ab50a91c679df589076a8f 100644 (file)
@@ -2459,7 +2459,7 @@ build_target_condition_list (struct bp_location *bl)
   /* No NULL conditions or failed bytecode generation.  Build a
      condition list for this location's address.  If we have software
      and hardware locations at the same address, they aren't
-     considered duplicates, but we still marge all the conditions
+     considered duplicates, but we still merge all the conditions
      anyway, as it's simpler, and doesn't really make a practical
      difference.  */
   for (bp_location *loc : loc_range)
index b84ce8375fb74a78445b1d8611499a46faa50f58..0bbe96b5334253c4c899bec02ac0fb13415d1c3a 100644 (file)
@@ -1779,7 +1779,7 @@ help_cmd (const char *command, struct ui_file *stream)
 
   if (alias == nullptr || !user_documented_alias (*alias))
     {
-      /* Case of a normal command, or an alias not explictly
+      /* Case of a normal command, or an alias not explicitly
         documented by the user.  */
       /* If the user asked 'help somecommand' and there is no alias,
         the false indicates to not output the (single) command name.  */
@@ -1789,7 +1789,7 @@ help_cmd (const char *command, struct ui_file *stream)
     }
   else
     {
-      /* Case of an alias explictly documented by the user.
+      /* Case of an alias explicitly documented by the user.
         Only output the alias definition and its explicit documentation.  */
       fput_alias_definition_styled (*alias, stream);
       fput_command_names_styled (*alias, false, "\n", stream);
index e804024c08f9e75334e123da36331f08e4e05cf5..2fb9d9ef0b2e90b6fba247e5687f8fa6d0e4eab7 100644 (file)
@@ -2103,7 +2103,7 @@ quote (const char *str)
 /* Check that removing parameter info out of NAME produces EXPECTED.
    COMPLETION_MODE indicates whether we're testing normal and
    completion mode.  FILE and LINE are used to provide better test
-   location information in case ithe check fails.  */
+   location information in case the check fails.  */
 
 static void
 check_remove_params (const char *file, int line,
index 694c34a7bde54b950fb5bd4b1cf206015181af26..e82b8dff546e616d317c5f80c27330546d6ab2bd 100644 (file)
@@ -2581,7 +2581,7 @@ csky_pseudo_register_read (struct gdbarch *gdbarch,
       int offset = 0;
       gdb_byte reg_buf[16];
 
-      /* Ensure getting s0~s63 from vrx if tdep->has_vr0 is ture.  */
+      /* Ensure getting s0~s63 from vrx if tdep->has_vr0 is true.  */
       if (tdep->has_vr0)
        {
          if (regnum < 64)
index 02d9408107712e9c95b58be98fb3fe50d5dd8b3e..7e1bb8db4f32e9b2ad21c93a8ed153bb4573fe10 100644 (file)
@@ -248,7 +248,7 @@ struct gdb_non_printing_memory_disassembler
   { /* Nothing.  */ }
 };
 
-/* A dissassembler class that provides 'print_insn', a method for
+/* A disassembler class that provides 'print_insn', a method for
    disassembling a single instruction to the output stream.  */
 
 struct gdb_disassembler : public gdb_printing_disassembler,
index 2f835ddae5e1d8af7656c714a114419189001c54..8c032f689aa3c3f0ccf9160846cd94c587603728 100644 (file)
@@ -14779,7 +14779,7 @@ read_typedef (struct die_info *die, struct dwarf2_cu *cu)
       /* The long double is defined as a base type in C.  GCC creates a long
         double typedef with target-type _Float128 for the long double to
         identify it as the IEEE Float128 value.  This is a GCC hack since the
-        DWARF doesn't distinquish between the IBM long double and IEEE
+        DWARF doesn't distinguish between the IBM long double and IEEE
         128-bit float.  Replace the GCC workaround for the long double
         typedef with the actual type information copied from the target-type
         with the correct long double base type name.  */
index 57d53410cc0aae0ace873bdf1ffcdc5862bb77a5..f42cf1a37d18685e7c6ec19dde856732d0c83fc8 100644 (file)
@@ -2116,7 +2116,7 @@ reinit_frame_cache (void)
   if (sentinel_frame != nullptr)
     {
       /* If frame 0's id is not computed, it is not in the frame stash, so its
-        dealloc functions will not be called when emptying the frash stash.
+        dealloc functions will not be called when emptying the frame stash.
         Call frame_info_del manually in that case.  */
       frame_info *current_frame = sentinel_frame->prev;
       if (current_frame != nullptr
index 07010b1331146090ee193d980a10f120002fb058..ef4a7e61b6cdceb2df8f599fb9b1582e26c316e2 100644 (file)
@@ -902,7 +902,7 @@ May return 0 when unable to determine that address.""",
 )
 
 
-# The DWARF info currently does not distinquish between IEEE 128-bit floating
+# The DWARF info currently does not distinguish between IEEE 128-bit floating
 # point values and the IBM 128-bit floating point format.  GCC has an internal
 # hack to identify the IEEE 128-bit floating point value.  The long double is a
 # defined base type in C.  The GCC hack uses a typedef for long double to
index a6adeca1b97416f7194341151a8ce30723a786a3..554c1455a5f307694615aca9f6db0e8880e31ce2 100644 (file)
@@ -386,7 +386,7 @@ i386_canonicalize_syscall (int syscall)
 
 /* Value of the sigcode in case of a boundary fault.  */
 
-#define SIG_CODE_BONDARY_FAULT 3
+#define SIG_CODE_BOUNDARY_FAULT 3
 
 /* i386 GNU/Linux implementation of the report_signal_info
    gdbarch hook.  Displays information related to MPX bound
@@ -421,7 +421,7 @@ i386_linux_report_signal_info (struct gdbarch *gdbarch, struct ui_out *uiout,
     }
 
   /* If this is not a boundary violation just return.  */
-  if (sig_code != SIG_CODE_BONDARY_FAULT)
+  if (sig_code != SIG_CODE_BOUNDARY_FAULT)
     return;
 
   is_upper = (access > upper_bound ? 1 : 0);
index 4d6df757d230672f1de5abf94459c5772336f97f..58da1cef29e9d93db31fa7125b0d5a970466dba3 100644 (file)
@@ -7500,7 +7500,7 @@ process_event_stop_test (struct execution_control_state *ecs)
     {
       /* We are executing the reverse-finish command.
         If the system supports multiple entry points and we are finishing a
-        function in reverse.   If we are between the entry points singe-step
+        function in reverse.   If we are between the entry points single-step
         back to the alternate entry point.  If we are at the alternate entry
         point -- just   need to back up by one more single-step, which
         should take us back to the function call.  */
index fba08973e28390b44acc06755b6ebaf81af6cdc9..383ef58fa23e4d553e2c9f9b332b9724240b9466 100644 (file)
@@ -3968,7 +3968,7 @@ linux_proc_xfer_memory_partial (int pid, gdb_byte *readbuf,
    return true if so.  It wasn't writable before Linux 2.6.39, but
    there's no way to know whether the feature was backported to older
    kernels.  So we check to see if it works.  The result is cached,
-   and this is garanteed to be called once early during inferior
+   and this is guaranteed to be called once early during inferior
    startup, so that any warning is printed out consistently between
    GDB invocations.  Note we don't call it during GDB startup instead
    though, because then we might warn with e.g. just "gdb --version"
index 5739af6cc874fc4ce7c0d6bdc8fb6f2172d174e7..62c6f9b220e439348a002682765250ce0abc4d89 100644 (file)
@@ -653,7 +653,7 @@ loongarch_push_dummy_call (struct gdbarch *gdbarch,
                     all future arguments will also be passed on the stack,
                     i.e., the last argument register may be left unused
                     due to the aligned register pair rule.
-                    long double data tpye is passed in an aligned GAR pair,
+                    long double data type is passed in an aligned GAR pair,
                     the first register in the pair is even-numbered.  */
                  if (gar >= 2)
                    {
index 55898141f78e75156486e5e7d99112860de82669..d27ddc5de23dfaa05b3e2cd32e8333f692ecf378 100644 (file)
@@ -324,7 +324,7 @@ get_core_array_size ()
   /* Using /sys/.../possible is preferred, because it handles the case where
      we are in a container that has access to a subset of the host's cores.
      It will return a size that considers all the CPU cores available to the
-     host.  If that fials for some reason, fall back to sysconf.  */
+     host.  If that fails for some reason, fall back to sysconf.  */
   gdb::optional<size_t> count = get_core_array_size_using_sys_possible ();
   if (count.has_value ())
     return *count;
index ee899a5c049a087c8ebcd32374d0a6cff1c48df3..cb70b58df002cf4ecd247140da4a65a99b69235f 100644 (file)
@@ -333,7 +333,7 @@ public:
 
   /* One and only one of these three functions returns true, indicating
      whether the corresponding interface is the one we detected.  The
-     interface must already have been detected as a precontidion.  */
+     interface must already have been detected as a precondition.  */
 
   bool hwdebug_p ()
   {
@@ -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 bondary on machines that doesn't have a
+            can't cross a 512 byte boundary on machines that doesn't have a
             second DAWR (P9 or less).  */
          if (!(hwdebug_info.features & PPC_DEBUG_FEATURE_DATA_BP_ARCH_31))
            region_align = 512;
@@ -2733,7 +2733,7 @@ ppc_linux_nat_target::low_forget_process (pid_t pid)
 }
 
 /* Copy the per-process state associated with the pid of PARENT to the
-   sate of CHILD_PID.  GDB expects that a forked process will have the
+   state of CHILD_PID.  GDB expects that a forked process will have the
    same hardware breakpoints and watchpoints as the parent.
 
    If we're using the HWDEBUG interface, also copy the thread debug
index 85d936ee4a55fffbbf79f655acab34aedceff568..0af089f6b3ef79fe10037b8b8bf3e0928e127e77 100644 (file)
@@ -1175,7 +1175,7 @@ struct scoped_disasm_info_object
                      memaddr, info, nullptr);
   }
 
-  /* Upon destruction mark m_diasm_info as invalid.  */
+  /* Upon destruction mark m_disasm_info as invalid.  */
   ~scoped_disasm_info_object ()
   {
     /* Invalidate the original DisassembleInfo object as well as any copies
index 56292fbd4bff7fa49566c5d0127b02689e0b2297..9b71931bb0bfd2bd4004ffdad310978e5284c45f 100644 (file)
@@ -376,7 +376,7 @@ get_thread_arch_aspace_regcache (inferior *inf_for_target_calls,
   regcache *new_regcache = new regcache (inf_for_target_calls, arch, aspace);
   new_regcache->set_ptid (ptid);
   /* Work around a problem with g++ 4.8 (PR96537): Call the regcache_up
-     constructor explictly instead of implicitly.  */
+     constructor explicitly instead of implicitly.  */
   ptid_regc_map.insert (std::make_pair (ptid, regcache_up (new_regcache)));
 
   return new_regcache;
index 4638c55e68bc0baa449da502fe41d08231d590c5..a9b76314bddd7abafa59c220c1d149b2872c89a4 100644 (file)
@@ -13,7 +13,7 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-# This test case is to test the speed of GDB when it is doing singe step.
+# This test case is to test the speed of GDB when it is doing single step.
 # There is one parameter in this test:
 #  - SINGLE_STEP_COUNT is the number of single step GDB performs.
 
index 62e0b0b3db545f9573f707bde71fd1f8e90af72e..220640210cd958bb4e223a53a7a10b3bb6ba2a18 100644 (file)
@@ -174,7 +174,7 @@ verbose "using GDB = $GDB" 2
 
 # The data directory the testing GDB will use.  By default, assume
 # we're testing a non-installed GDB in the build directory.  Users may
-# also explictly override the -data-directory from the command line.
+# also explicitly override the -data-directory from the command line.
 if ![info exists GDB_DATA_DIRECTORY] {
     set GDB_DATA_DIRECTORY [file normalize "[pwd]/../data-directory"]
 }
index a1eadcd937d2fad066f56304e729c1c577969a61..908cb834e4cc8dfa2ab0389a45d0fadc9c135394 100644 (file)
@@ -1191,7 +1191,7 @@ tui_getc_1 (FILE *fp)
 #endif
        }
 
-      /* Keycodes above KEY_MAX are not garanteed to be stable.
+      /* Keycodes above KEY_MAX are not guaranteed to be stable.
         Compare keyname instead.  */
       if (ch >= KEY_MAX)
        {
index a8ff94f576938e90eb5b49dce5121659cc1e7f8e..4a35512190626c0c8917494ab31a5fbc9cf87c43 100644 (file)
@@ -316,7 +316,7 @@ private:
 
 struct tui_source_windows
 {
-  /* Work around Wmaybe-uninitalized warning with g++ 11.0.0, see also
+  /* Work around Wmaybe-uninitialized warning with g++ 11.0.0, see also
      PR gcc/96295.  Note that "tui_source_windows () = default" doesn't work
      around the warning.  */
   tui_source_windows () {}
index f37618a6e178839f4b02c7bd1af2d3d3be5316e3..81b8e61f30466a7e565c13a16bbb52dbe391a118 100644 (file)
@@ -2414,7 +2414,7 @@ varobj_invalidate_if_uses_objfile (struct objfile *objfile)
 
       /* var->value->type and var->type might also reference the objfile.
         This is taken care of in value.c:preserve_values which deals with
-        making sure that objfile-owend types are replaced with
+        making sure that objfile-owned types are replaced with
         gdbarch-owned equivalents.  */
     });
 }
index 9ac37329c88b77230ec04283e2f310b837c45e88..d9ba20798360dae328424d4d108e05e1165a88a1 100644 (file)
@@ -1403,7 +1403,7 @@ z80_get_insn_info (struct gdbarch *gdbarch, const gdb_byte *buf, int *size)
       info = &ez80_adl_main_insn_table[4]; /* skip force_nops */
       break;
     default:
-      info = &ez80_main_insn_table[8]; /* skip eZ80 prefices and force_nops */
+      info = &ez80_main_insn_table[8]; /* skip eZ80 prefixes and force_nops */
       break;
     }
   do
index e6a39202a98af314738aa6a46c7f091e1c298424..8ab16698632cfd3d56bbbd4c789475637020727d 100644 (file)
@@ -3540,7 +3540,7 @@ linux_process_target::wait_1 (ptid_t ptid, target_waitstatus *ourstatus,
   else
     {
       /* The LWP stopped due to a plain signal or a syscall signal.  Either way,
-        event_chid->waitstatus wasn't filled in with the details, so look at
+        event_child->waitstatus wasn't filled in with the details, so look at
         the wait status W.  */
       if (WSTOPSIG (w) == SYSCALL_SIGTRAP)
        {
index d07c8bc53fc00663bf0a5137999c43564a7005be..ee3a3c58710c2723b86854c04b46b9b2751626f4 100644 (file)
@@ -279,7 +279,7 @@ operator!= (const gdb::array_view<T> &lhs, const gdb::array_view<T> &rhs)
      foo (1, 2, gdb::array_view<value *>(values, nargs));
 
    Or, better, using make_array_view, which has the advantage of
-   inferring the arrav_view element's type:
+   inferring the array_view element's type:
 
      foo (1, 2, gdb::make_array_view (values, nargs));
 */