mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: "Uwe Kleine-König" <u.kleine-koenig@pengutronix.de>
To: Juergen Beisert <jbe@pengutronix.de>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH 1/2] Enable a way to provide the reason for "being here"
Date: Wed, 20 Jun 2012 22:09:58 +0200	[thread overview]
Message-ID: <20120620200958.GF5642@pengutronix.de> (raw)
In-Reply-To: <201206202159.14835.jbe@pengutronix.de>

On Wed, Jun 20, 2012 at 09:59:14PM +0200, Juergen Beisert wrote:
> Uwe Kleine-König wrote:
> > On Wed, Jun 20, 2012 at 09:09:53PM +0200, Juergen Beisert wrote:
> > > Hi Uwe,
> > >
> > > Uwe Kleine-König wrote:
> > > > On Wed, Jun 20, 2012 at 05:08:52PM +0200, Juergen Beisert wrote:
> > > > > Marc Kleine-Budde wrote:
> > > > > > [...]
> > > > > >
> > > > > > > +
> > > > > > > +#include <common.h>
> > > > > > > +#include <init.h>
> > > > > > > +#include <environment.h>
> > > > > > > +#include <globalvar.h>
> > > > > > > +#include <reset_source.h>
> > > > > > > +
> > > > > > > +static const char name[] = "global.system.reset";
> > > > > > > +static const char unknown_reset[] = "unknown";
> > > > > > > +static const char power_on_reset[] = "POR";
> > > > > > > +static const char manual_reset[] = "RST";
> > > > > > > +static const char watchdog[] = "WDG";
> > > > > > > +static const char wake[] = "WKE";
> > > > > > > +static const char jtag[] = "JTAG";
> > > > > >
> > > > > > what about using an array
> > > > > >
> > > > > > static cost char *reset_reason_array[] = {
> > > > > > 	[RESET_UKWN] = "unknown",
> > > > > > 	...
> > > > > > };
> > > > >
> > > > > The result is not the same. The strings are no longer "const". But it
> > > > > should
> > > >
> > > > <kidding>Of course they are not "const" if you write "cost".</kidding>
> > > > Using
> > > >
> > > > 	static const char * const reset_reason_array[] = {
> > > >
> > > > should do the trick.
> > >
> > > No, it doesn't. Only this would:
> > >
> > > static const bla[] = "this is a really constant string";
> > > static const char * const reset_reason_array[] = {
> > > 	[0] = bla,
> > > [...]
> > > };
> >
> > What makes you think it's not const. I think it is, look:
> >
> > 	ukleinek@perseus:~/tmp$ cat test.c
> > 	static const char * const const_reset_reason_array[] = {
> > 		"jtag",
> > 		"por",
> > 	};
> >
> > 	static const char *reset_reason_array[] = {
> > 		"jtag",
> > 		"por",
> > 	};
> >
> > 	void somefunc(void)
> > 	{
> > 		char *reason = const_reset_reason_array[0];
> > 	}
> > 	ukleinek@perseus:~/tmp$ gcc -Wall -c test.c
> > 	test.c: In function ‘somefunc’:
> > 	test.c:13:17: warning: initialization discards ‘const’ qualifier from
> > pointer target type [enabled by default] test.c:13:8: warning: unused
> > variable ‘reason’ [-Wunused-variable] test.c: At top level:
> > 	test.c:6:20: warning: ‘reset_reason_array’ defined but not used
> > [-Wunused-variable]
> >
> > 	ukleinek@perseus:~/tmp$ objdump -D -j .rodata -j .data test.o
> >
> > 	test.o:     file format elf64-x86-64
> >
> >
> > 	Disassembly of section .data:
> >
> > 	0000000000000000 <reset_reason_array>:
> > 		...
> >
> > 	Disassembly of section .rodata:
> >
> > 	0000000000000000 <const_reset_reason_array-0x10>:
> > 	   0:	6a 74                	pushq  $0x74
> > 	   2:	61                   	(bad)
> > 	   3:	67 00 70 6f          	add    %dh,0x6f(%eax)
> > 	   7:	72 00                	jb     9 <const_reset_reason_array-0x7>
> > 	   9:	00 00                	add    %al,(%rax)
> > 	   b:	00 00                	add    %al,(%rax)
> > 	   d:	00 00                	add    %al,(%rax)
> > 		...
> >
> > 	0000000000000010 <const_reset_reason_array>:
> > 		...
> >
> > so const_reset_reason_array lives in .rodata and assinging
> > const_reset_reason_array[0] to a char * results in a warning.
> >
> > What am I missing?
> 
> const char friesel[] = "this is really a constant string";
> const char *frasel = "this is not really a constant string";
> 
> The compiler will place the "this is really a constant string" into 
> the .rodata, but "this is not really a constant string" will be still 
> in .data (writeable). This difference is very important to know, if you want 
> the compiler to place the strings into the flash of a microcontroller instead 
> of the RAM (which is most of the time very small).
Right, and if you say:

	const char *const frosel = "this is really a constant string, too";

it will end in .rodata, too. And that is the construct I suggested to
use.

Best regards
Uwe

-- 
Pengutronix e.K.                           | Uwe Kleine-König            |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

  reply	other threads:[~2012-06-20 20:10 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-06-20 14:32 [PATCH] " Juergen Beisert
2012-06-20 14:32 ` [PATCH 1/2] " Juergen Beisert
2012-06-20 14:53   ` Marc Kleine-Budde
2012-06-20 15:08     ` Juergen Beisert
2012-06-20 18:50       ` Uwe Kleine-König
2012-06-20 19:09         ` Juergen Beisert
2012-06-20 19:27           ` Uwe Kleine-König
2012-06-20 19:59             ` Juergen Beisert
2012-06-20 20:09               ` Uwe Kleine-König [this message]
2012-06-20 20:57                 ` Juergen Beisert
2012-06-20 14:32 ` [PATCH 2/2] Add two architectures which can detect the reset source Juergen Beisert
2012-06-20 14:59   ` Marc Kleine-Budde
2012-06-20 15:05     ` Juergen Beisert
2012-06-20 15:09       ` Marc Kleine-Budde
2012-06-21  9:16 [PATCHv2] Enable a way to provide the reason for "being here" Juergen Beisert
2012-06-21  9:16 ` [PATCH 1/2] " Juergen Beisert

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20120620200958.GF5642@pengutronix.de \
    --to=u.kleine-koenig@pengutronix.de \
    --cc=barebox@lists.infradead.org \
    --cc=jbe@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox