473,799 Members | 2,997 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Q: Type'ing the infamous 'flags' field

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 ->
--
Nov 14 '05 #1
13 2067
In <Xn************ *************** *****@130.133.1 .4> "Mark A. Odell" <od*******@hotm ail.com> 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: Da*****@ifh.de
Currently looking for a job in the European Union
Nov 14 '05 #2
Da*****@cern.ch (Dan Pop) wrote in news:ci******** **@sunnews.cern .ch:
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 myIllegalFlagVa lue = 75;

HwFlag dev;

dev.flags = myIllegalFlagVa lue; // Warning of some sort please.
Any suggestions?


Engage your brain.


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

--
- Mark ->
--
Nov 14 '05 #3
In <Xn************ *************** *****@130.133.1 .4> "Mark A. Odell" <od*******@hotm ail.com> writes:
Da*****@cern.c h (Dan Pop) wrote in news:ci******** **@sunnews.cern .ch:
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 myIllegalFlagVa lue = 75;

HwFlag dev;

dev.flags = myIllegalFlagVa lue; // 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 <Ca************ @physik.fu-berlin.de>
To: Dan Pop <Da*****@ifh.de >
Subject: Re: Problems with PBS jobs

Hi Dan,

Thanks a lot for your fast help!

Carsten

Dan
--
Dan Pop
DESY Zeuthen, RZ group
Email: Da*****@ifh.de
Currently looking for a job in the European Union
Nov 14 '05 #4
Da*****@cern.ch (Dan Pop) wrote in news:ci******** **@sunnews.cern .ch:
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 myIllegalFlagVa lue = 75;

HwFlag dev;

dev.flags = myIllegalFlagVa lue; // 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 <Ca************ @physik.fu-berlin.de>
To: Dan Pop <Da*****@ifh.de >
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 ->
--
Nov 14 '05 #5
In article <news:Xn******* *************** **********@130. 133.1.4>
Mark A. Odell <od*******@hotm ail.com> 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.
Nov 14 '05 #6
Chris Torek <no****@torek.n et> wrote in
news:ci******** *@news4.newsguy .com:
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 ->
--
Nov 14 '05 #7
"Mark A. Odell" <od*******@hotm ail.com> 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.
Nov 14 '05 #8
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
Nov 14 '05 #9
On 16 Sep 2004 13:03:21 GMT, "Mark A. Odell" <od*******@hotm ail.com>
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.HwFlag s.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.l earn.c-c++
http://www.contrib.andrew.cmu.edu/~a...FAQ-acllc.html
Nov 14 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
26307
by: SD | last post by:
Hi, This is driving me nuts, I have a table that stores notes regarding an operation in an IMAGE data type field in MS SQL Server 2000. I can read and write no problem using Access using the StrConv function and I can Update the field correctly in T-SQL using: DECLARE @ptrval varbinary(16) SELECT @ptrval = TEXTPTR(BITS_data)
1
2188
by: Bill Strass | last post by:
I have a form showing the records of different people. I would like a photo to be displayed in the form, with each person's record. My digital photo > *.jpg type file and I change each photo to *.bmp format using SnagIt. I created an OLE type field in the table to store either the embedded photo or a link to the photo (I'll decide which method to use,
0
1622
by: Sandi | last post by:
I have a simple problem: I have an Access database (images.mdb) that has 2 columns: one is the id of the picture (an integer) and one (column named picture) is a field of type OLE Object which contains an image (it can store jpg, bmp, gif, but I don't know what image is stored inside). I want to retrieve the picture stored in the database and identified by a given id and display it in a web page (.aspx). I write in Visual C#, but it does...
3
18486
by: Ghost | last post by:
Hello. I have some problem to read Money Type Field from my database. I do so: I'm using SqlDataReader object to select some records and I have "float" type variable to store result. I write: myFloatVar = (float)mySqlDataReader; When this line executed the cast exception occurs.
4
3667
by: Robert Hanson | last post by:
Hi All, I am trying to add a record to a datatable that is connected to an Access database. I had no trouble with string and date fields, but for this record, I have two Long Integer field types and I get the following error: "Data type mismatch in criteria expression." I am using OleDbType.Integer as the type which matched the Int32 size for the Long Integer in Access, but I can't seem to get past the error.
3
7081
by: William Mild | last post by:
I am porting old Dreamweaver generated ASP code to ASP.NET (VBScript to VB.NET). Error: Cast from type 'Field' to type 'Integer' is not valid The error occurs on the line which says "rsStudents = Server.CreateObject("ADODB.Recordset")". if (Request.QueryString("StudentID") <> "") then rsStudents__MMColParam = Request.QueryString("StudentID")
0
1398
by: Simon | last post by:
Dear reader, I tray to insert a "bmp" or "jpg" picture in a table and than showing the picture in a report. I tray to fix this with the data type "Ole Object". In the "Ole Object"
1
2265
by: ritu raj shriwastaw | last post by:
I am using window xp and php trait(php3.1,mysql4.2).i have one field is of memo data type and I am unable to retrieve data from that memo data type field. what query I should write?
1
2705
by: rishiv | last post by:
Hi, I'm using MS Access 2002 SP3 & Visual Basic 6.3 on WinXP Home SP2. I have a table of condition data (5990 records) that relates to information stored in a proprietary application. The primary key in my table (MyKey) is the same as the key used to find data in the other windows application (C:\Folder\My.exe). So, if I am looking at a record in my table, say with ID = 100, I can view further information and images etc in my application...
0
10485
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10252
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10231
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10027
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6805
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5463
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4141
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3759
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2938
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.