libsframe: fix cosmetic issues and typos
authorIndu Bhagat <indu.bhagat@oracle.com>
Tue, 6 Jun 2023 17:50:07 +0000 (10:50 -0700)
committerIndu Bhagat <indu.bhagat@oracle.com>
Tue, 6 Jun 2023 17:50:07 +0000 (10:50 -0700)
include/
* sframe-api.h (sframe_decoder_get_num_fidx): Use extern.
libsframe/
* sframe-dump.c (dump_sframe_func_with_fres): Fix line length.
* sframe.c (sframe_frame_row_entry_copy): Likewise.
(sframe_decode_fre_start_address): Use the intended type uint32_t.

include/sframe-api.h
libsframe/sframe-dump.c
libsframe/sframe.c

index 3245bc8ac903c1560df88b68ae22f89cc28bd749..df1f5ccef4cc9c1582264c13981af742fe7a2c1a 100644 (file)
@@ -122,7 +122,7 @@ sframe_decoder_get_abi_arch (sframe_decoder_ctx *dctx);
 
 /* Return the number of function descriptor entries in the SFrame decoder
    DCTX.  */
-unsigned int
+extern unsigned int
 sframe_decoder_get_num_fidx (sframe_decoder_ctx *dctx);
 
 /* Get the fixed FP offset from the decoder context DCTX.  */
index 77aa87d67a15b90299f072b74320e918a8eefe61..6d266392cd7f6dbbe2debd0635ca489d3e32733f 100644 (file)
@@ -2,7 +2,7 @@
 
    Copyright (C) 2022-2023 Free Software Foundation, Inc.
 
-   his file is part of libsframe.
+   This file is part of libsframe.
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -134,7 +134,8 @@ dump_sframe_func_with_fres (sframe_decoder_ctx *sfd_ctx,
 
   char temp[100];
 
-  printf ("\n    %-7s%-8s %-10s%-10s%-13s", "STARTPC", fde_type_marker, "CFA", "FP", "RA");
+  printf ("\n    %-7s%-8s %-10s%-10s%-13s",
+         "STARTPC", fde_type_marker, "CFA", "FP", "RA");
   for (j = 0; j < num_fres; j++)
     {
       sframe_decoder_get_fre (sfd_ctx, funcidx, j, &fre);
index b05fed97e6175dda8441e7d6d47b7a2270f3fe2f..a7615329767a3d2828feb3a37fdbbed811ac5a3c 100644 (file)
@@ -667,7 +667,8 @@ sframe_fre_get_ra_mangled_p (sframe_decoder_ctx *dctx ATTRIBUTE_UNUSED,
 }
 
 static int
-sframe_frame_row_entry_copy (sframe_frame_row_entry *dst, sframe_frame_row_entry *src)
+sframe_frame_row_entry_copy (sframe_frame_row_entry *dst,
+                            sframe_frame_row_entry *src)
 {
   int err = 0;
 
@@ -711,7 +712,7 @@ sframe_decode_fre_start_address (const char *fre_buf,
   else if (fre_type == SFRAME_FRE_TYPE_ADDR4)
     {
       uint32_t *uit = (uint32_t *)fre_buf;
-      int32_t tmp = 0;
+      uint32_t tmp = 0;
       memcpy (&tmp, uit, addr_size);
       saddr = (uint32_t)tmp;
     }