Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > C Programming > Q: Type'ing the infamous 'flags' field

Reply
Thread Tools

Q: Type'ing the infamous 'flags' field

 
 
Mark A. Odell
Guest
Posts: n/a
 
      09-16-2004
I write a lot of drivers and there is inevitably some hardware register or
buffer descriptor field called 'flags'. The flags are defined, typically,
as bit positions. I was thinking I could get some compile-time type
checking when assigning to a flag field but I don't think I can. Here's
what I was thinking:

typedef unsigned long HwFlag;
struct HwThing
{
SomeType fieldOne;
SomeType fieldTwo;
HwFlag flags;
};

static const HwFlag flagA = 1 << 0;
static const HwFlag flagB = 1 << 1;
static const HwFlag flagC = 1 << 2;

But the problem is when combining flags:

struct HwThing dev;

dev.flags = flagA | flagB;

I think I require a cast back to HwFlag since flagA and B will promote to
some integer type won't they? That is, I'd need to write:

dev.flags = (HwFlag) (flagA | flagB);

which rather defeats my intent. Any suggestions?

Thanks.

--
- Mark ->
--
 
Reply With Quote
 
 
 
 
Dan Pop
Guest
Posts: n/a
 
      09-16-2004
In <Xns95665C1F26A7ECopyrightMarkOdell@130.133.1.4> "Mark A. Odell" <> writes:

>I write a lot of drivers and there is inevitably some hardware register or
>buffer descriptor field called 'flags'. The flags are defined, typically,
>as bit positions. I was thinking I could get some compile-time type
>checking when assigning to a flag field but I don't think I can.


What kind of type checking do you expect in C, when all the operands have
integral types?

>Here's what I was thinking:
>
>typedef unsigned long HwFlag;
>struct HwThing
>{
> SomeType fieldOne;
> SomeType fieldTwo;
> HwFlag flags;
>};
>
>static const HwFlag flagA = 1 << 0;
>static const HwFlag flagB = 1 << 1;
>static const HwFlag flagC = 1 << 2;
>
>But the problem is when combining flags:
>
>struct HwThing dev;
>
>dev.flags = flagA | flagB;


HwFlag HwFlag HwFlag

>I think I require a cast back to HwFlag since flagA and B will promote to
>some integer type won't they? That is, I'd need to write:


Since the type of flagA and flagB is unsigned long, they are guaranteed
not to be touched by the integral promotions. Furthermore, it is
guaranteed that the type of flagA | flagB is unsigned long.

Even if HwFlag were a type affected by the integral promotions (unsigned
char or unsigned short), and the type of flagA | flagB became int, your
assignment would still work as intended, because type int is guaranteed
to be able to represent all values of type HwFlag.

>dev.flags = (HwFlag) (flagA | flagB);
>
>which rather defeats my intent.


Do you have the slightest clue about how the C assignment operator works?
Even if flagA | flagB had a different integer type than dev.flags, the
conversion would be *automatically* performed by the assignment operator.

>Any suggestions?


Engage your brain.

Dan
--
Dan Pop
DESY Zeuthen, RZ group
Email:
Currently looking for a job in the European Union
 
Reply With Quote
 
 
 
 
Mark A. Odell
Guest
Posts: n/a
 
      09-16-2004
(Dan Pop) wrote in news:cicbkl$bla$:

>>dev.flags = (HwFlag) (flagA | flagB);
>>
>>which rather defeats my intent.

>
> Do you have the slightest clue about how the C assignment operator
> works?


I guess not. I thought it assigned the value of rvalue to the
location of the lvalue if the types were compatible at compile time.

> Even if flagA | flagB had a different integer type than
> dev.flags, the conversion would be *automatically* performed by the
> assignment operator.


That's great but I want a compile time warning if someone attempts:

int myIllegalFlagValue = 75;

HwFlag dev;

dev.flags = myIllegalFlagValue; // Warning of some sort please.

>>Any suggestions?

>
> Engage your brain.


Thanks Dan, as usual. Ever considered a job in customer support?

--
- Mark ->
--
 
Reply With Quote
 
Dan Pop
Guest
Posts: n/a
 
      09-16-2004
In <Xns956679156CCF0CopyrightMarkOdell@130.133.1.4> "Mark A. Odell" <> writes:

> (Dan Pop) wrote in news:cicbkl$bla$:
>
>> Even if flagA | flagB had a different integer type than
>> dev.flags, the conversion would be *automatically* performed by the
>> assignment operator.

>
>That's great but I want a compile time warning if someone attempts:
>
>int myIllegalFlagValue = 75;
>
>HwFlag dev;
>
>dev.flags = myIllegalFlagValue; // Warning of some sort please.


Then learn Pascal. As I said in my previous post, C is not the right
tool for what you want.

>>>Any suggestions?

>>
>> Engage your brain.

>
>Thanks Dan, as usual. Ever considered a job in customer support?


My current job involves a great deal of user support. E.g.

Date: Thu, 16 Sep 2004 10:53:14 +0200
From: Carsten Urbach <>
To: Dan Pop <>
Subject: Re: Problems with PBS jobs

Hi Dan,

Thanks a lot for your fast help!

Carsten

Dan
--
Dan Pop
DESY Zeuthen, RZ group
Email:
Currently looking for a job in the European Union
 
Reply With Quote
 
Mark A. Odell
Guest
Posts: n/a
 
      09-16-2004
(Dan Pop) wrote in news:cichg7$6sh$:

>>> Even if flagA | flagB had a different integer type than
>>> dev.flags, the conversion would be *automatically* performed by the
>>> assignment operator.

>>
>>That's great but I want a compile time warning if someone attempts:
>>
>>int myIllegalFlagValue = 75;
>>
>>HwFlag dev;
>>
>>dev.flags = myIllegalFlagValue; // Warning of some sort please.

>
> Then learn Pascal. As I said in my previous post, C is not the right
> tool for what you want.


This, is the answer I sought. Thanks.

>>> Engage your brain.

>>
>>Thanks Dan, as usual. Ever considered a job in customer support?

>
> My current job involves a great deal of user support. E.g.
>
> Date: Thu, 16 Sep 2004 10:53:14 +0200
> From: Carsten Urbach <>
> To: Dan Pop <>
> Subject: Re: Problems with PBS jobs
>
> Hi Dan,
>
> Thanks a lot for your fast help!
>
> Carsten


I suspect you did not tell Carsten to "engage his brain".

Best regards,

--
- Mark ->
--
 
Reply With Quote
 
Chris Torek
Guest
Posts: n/a
 
      09-16-2004
In article <news:Xns95665C1F26A7ECopyrightMarkOdell@130.133.1 .4>
Mark A. Odell <> wrote:
>I write a lot of drivers and there is inevitably some hardware
>register or buffer descriptor field called 'flags' [, usually just
>some individual bits]. I [wish I] could get some compile-time type
>checking when assigning [named constants] to a flag field ...
>Any suggestions?


Ada.

Seriously, the only way to get serious type-checking in C is to
make new types, using C's type-creation mechanism, the "struct".
This is not generally compatible with low-level bit-twiddling.

You can do clever stuff in C++ at compile time with templates, so
that the actual code emitted is just straight integer values going
into the bit-field. This is incredibly ugly, though.

Ada really does have just what you want, *and* is (partly) designed
for use in small embedded systems. In many ways it is a shame we
all use C to program them instead.
--
In-Real-Life: Chris Torek, Wind River Systems
Salt Lake City, UT, USA (40°39.22'N, 111°50.29'W) +1 801 277 2603
email: forget about it http://web.torek.net/torek/index.html
Reading email is like searching for food in the garbage, thanks to spammers.
 
Reply With Quote
 
Mark A. Odell
Guest
Posts: n/a
 
      09-16-2004
Chris Torek <> wrote in
news::

>>I write a lot of drivers and there is inevitably some hardware
>>register or buffer descriptor field called 'flags' [, usually just
>>some individual bits]. I [wish I] could get some compile-time type
>>checking when assigning [named constants] to a flag field ...
>>Any suggestions?

>
> Ada.
>
> Seriously, the only way to get serious type-checking in C is to
> make new types, using C's type-creation mechanism, the "struct".
> This is not generally compatible with low-level bit-twiddling.

[snip]

Thanks Chris and Dan for the replies. I appreciate your time.

Regards.

--
- Mark ->
--
 
Reply With Quote
 
Old Wolf
Guest
Posts: n/a
 
      09-16-2004
"Mark A. Odell" <> wrote:
> I write a lot of drivers and there is inevitably some hardware register or
> buffer descriptor field called 'flags'. The flags are defined, typically,
> as bit positions. I was thinking I could get some compile-time type
> checking when assigning to a flag field but I don't think I can. Here's
> what I was thinking:
>
> typedef unsigned long HwFlag;
> struct HwThing
> {
> SomeType fieldOne;
> SomeType fieldTwo;
> HwFlag flags;
> };
>
> static const HwFlag flagA = 1 << 0;
> static const HwFlag flagB = 1 << 1;
> static const HwFlag flagC = 1 << 2;


You should replace these '1's with '1UL'. For example if
int is 32bit and long is 64bit then 1 << 32 is undefined
behaviour.

>
> But the problem is when combining flags:
>
> struct HwThing dev;
>
> dev.flags = flagA | flagB;
>
> I think I require a cast back to HwFlag since flagA and B will promote to
> some integer type won't they? That is, I'd need to write:
>
> dev.flags = (HwFlag) (flagA | flagB);


No, since dev.flags is of type HwFlag, then when you make the
assignment it will be implicitly converted. Some compilers may
issue a warning about loss of precision but you can turn those
warnings off (they're more annoying than useful).

Anyway, flagA and flagB are already "some integer type" (in
this case, unsigned long), so no promotions will occur.
Promotions would only occur if HwFlag was 'short' or 'char'
(or their unsigned or qualified types etc.)

My usual idiom is the same as yours except that I #define
the flags instead of 'static const'ing them (because some
of the compilers I have to put up with, would actually
allocate memory for the static consts (one per TU that the
header is included, even), and memory is at a premium).
Also I use 0x1, 0x2, 0x4 etc. These constants are unsigned,
it avoids the shift issue, and will give a compiler warning
if you try and use one that's too big for the flags typedef.
 
Reply With Quote
 
Linus Torvalds
Guest
Posts: n/a
 
      09-17-2004
Mark A. Odell wrote:
>
> I write a lot of drivers and there is inevitably some hardware register or
> buffer descriptor field called 'flags'. The flags are defined, typically,
> as bit positions. I was thinking I could get some compile-time type
> checking when assigning to a flag field but I don't think I can.


I'll mention the tool we use for the Linux kernel, because some people on
comp.lang.c migth actually find it interesting.

It's called "sparse" (for "semantic parse"), and it extends the C type
system with various flags (much of them for checking "address spaces" of
pointers, since the kernel has to work with pointers that are in distinct
address spaces like "user" and "iomem"), and it also solves your particular
problem.

What you do is make a integer typedef that is restricted to "bitwise"
operations:

#ifdef __CHECKER__ /* Magic sparse flag */
#define __bitwise __attribute__((bitwise))
#else
#define __bitwise
#endif

typedef unsigned int __bitwise cmd_flag_t;

...
#define CMD_ACTIVE ((cmd_flag_t) 0x1000)
...

and you now have a magic new type that you can only do operations on with
the EXACT SAME TYPE (and only bitwise operations too, which is why it's
called "bitwise". We aren't very innovative name-wise in the kernel

So if you do multiple different "typedef"s, they'll all create new
(independent and incompatible) types, so you can create any number of these
different "flags" you want, with different rules.

After that, trying to pass a "cmd_flag_t" variable as an integer will warn
you in various ways. Very convenient. In the kernel we use it to
automatically check that variables that have been marked to be of a
specific byte-order are properly accessed (ie that you don't just take a
little-endian value and think you can use it directly - you have to convert
it to CPU endianness first).

Latest sparse sources available at

http://www.codemonkey.org.uk/projects/bitkeeper/sparse/

(and if you use bitkeeper, at various other sites).

Linus
 
Reply With Quote
 
Jack Klein
Guest
Posts: n/a
 
      09-17-2004
On 16 Sep 2004 13:03:21 GMT, "Mark A. Odell" <>
wrote in comp.lang.c:

> I write a lot of drivers and there is inevitably some hardware register or
> buffer descriptor field called 'flags'. The flags are defined, typically,
> as bit positions. I was thinking I could get some compile-time type
> checking when assigning to a flag field but I don't think I can. Here's
> what I was thinking:
>
> typedef unsigned long HwFlag;
> struct HwThing
> {
> SomeType fieldOne;
> SomeType fieldTwo;
> HwFlag flags;
> };
>
> static const HwFlag flagA = 1 << 0;
> static const HwFlag flagB = 1 << 1;
> static const HwFlag flagC = 1 << 2;
>
> But the problem is when combining flags:
>
> struct HwThing dev;
>
> dev.flags = flagA | flagB;
>
> I think I require a cast back to HwFlag since flagA and B will promote to
> some integer type won't they? That is, I'd need to write:
>
> dev.flags = (HwFlag) (flagA | flagB);
>
> which rather defeats my intent. Any suggestions?
>
> Thanks.


What you can do is make it a number of bit-fields.

struct FlagsReg
{
unsigned FlagA: 1;
unsigned FlagB: 1;
unsigned FlagC: 1;
/* ... */
};

struct HwThing
{
SomeType fieldOne;
SomeType fieldTwo;
struct FlagsReg HwFlags;
};

Now simple integer assignments can't be made, you must do:

theThing.HwFlags.FlagA = 1;

This is find unless you very often need to set or clear several bits
at the same time.

TI provides headers for this for all the on-chip peripherals I am
working with, and (OT) no-load section definitions for the linker (OT)
to map them by name as ordinary external objects of the type from C
source.

--
Jack Klein
Home: http://JK-Technology.Com
FAQs for
comp.lang.c http://www.eskimo.com/~scs/C-faq/top.html
comp.lang.c++ http://www.parashift.com/c++-faq-lite/
alt.comp.lang.learn.c-c++
http://www.contrib.andrew.cmu.edu/~a...FAQ-acllc.html
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
infamous ie message =?Utf-8?B?cm9kY2hhcg==?= ASP .Net 4 11-19-2007 04:01 PM
Easy Fix for Infamous Canon E18 Error T.C. Mann Digital Photography 3 06-16-2007 05:51 PM
The infamous ^Z problem Eigenvector C Programming 15 05-24-2007 08:25 PM
The infamous QuickDraw region patent Lawrence D'Oliveiro NZ Computing 1 12-24-2006 09:48 AM
help: infamous "the compiler failed with error 128" problem Thomas ASP .Net 0 09-07-2005 02:38 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57