David LeBlanc: Inside SafeInt
- Posted: Jun 16, 2009 at 9:34 AM
- 44,858 Views
- 9 Comments
Download
How do I download the videos?
- To download, right click the file type you would like and pick “Save target as…” or “Save link as…”
Why should I download videos from Channel9?
- It's an easy way to save the videos you like locally.
- You can save the videos in order to watch them offline.
- If all you want is to hear the audio, you can download the MP3!
Which version should I choose?
- If you want to view the video on your PC, Xbox or Media Center, download the High Quality WMV file (this is the highest quality version we have available).
- If you'd like a lower bitrate version, to reduce the download time or cost, then choose the Medium Quality WMV file.
- If you have a Zune, WP7, iPhone, iPad, or iPod device, choose the low or medium MP4 file.
- If you just want to hear the audio of the video, choose the MP3 file.
Right click “Save as…”
- High Quality WMV (PC, Xbox, MCE)
- MP3 (Audio only)
- MP4 (iPod, Zune HD)
- Mid Quality WMV (Lo-band, Mobile)
- WMV (WMV Video)
David LeBlanc is a software engineer and security expert. You may know him from the Writing Secure Code books. David and Michael Howard have helped raise the bar for software security inside Microsoft for several years now. David has mostly remained out of the limelight since he's much more interested in writing secure code than talking about writing secure code. Well, now David's going to be famous. Sorry, David.
The great Ale Contenti joins us in this conversation to provide some context and ask some hard questions. Ale is a dev lead on the C++ libraries team. You've seen him a few times on 9. As you can imagine, he probably uses SafeInt in his own work.
Here, we dig into the thinking behind SafeInt, how it works, how it's composed, when to use it, when not to use it and how it will evolve to meet new demands and support other compilers (SafeInt now supports gcc). Enjoy!
Comments Closed
Comments have been closed since this content was published more than 30 days ago, but if you'd like to continue the conversation,
please create a new thread in our Forums,
or
Contact Us and let us know.
Follow the Discussion
Another really interesting C++ video, thank you Charles! This class is really useful and beautifully written. I'll definitely start using it from now on in my projects as it is very easy to update existing code to take advantage of the features this class provides.
The C++ world is decidedly full of surprises, I'm looking forward for more C/C++ videos!
By the way, I'd love to see more videos going deep into some win32 stuff. There have been some interesting changes in these APIs during the last few years, and some new APIs will be included in Windows Seven (Web Service, Direct2D, etc.).
Nice interview! I love these kind of things
Ah, wonders of computing. Ideas are simple, yet 90+% of all the implementation work is about discovering and handling all the border cases
Btw, what were those (two?) good books mentioned in passing on the subject of partial template specialization (a.k.a. template meta programming)?
Hi sokhaty,
A book I really like on C++ templates is: C++ Templates: The Complete Guide (Hardcover), by David Vandevoorde, Nicolai M. Josuttis
Also, the classic Effective STL, by Scott Meyers is another great book.
David also suggests: STL Tutorial and Reference Guide, by David R. Musser, Gillmer J. Derge, Atul Saini.
HTH, and glad you liked the video!
Ale Contenti
VC++ Dev Lead.
Ale, thanks a ton for the pointers! Now I have to read them
Nice video! It is a bit of a pity so many people are moving away C++ just when we are finding out how powerful it really is.
One question about the code though:
When casting from a large signed type to a smaller type (int to unsigned char), SafeInt now does a two-sided compare. Why not cast the int to a uchar, and check if its the same when cast again to an int? That's one if statement less. Should be smaller and a tiny bit faster.
Interesting question. I am not as good with perf as I would like, but in a situation like this, we're essentially counting instructions. Here's how it breaks down:
Method 1 (suggested) (11 instructions) 32-bit, not optimized
unsigned char tmp = (unsigned char)i;
009A143E mov al,byte ptr [i]
009A1441 mov byte ptr [tmp],al
if(tmp != i)
009A1444 movzx eax,byte ptr [tmp]
009A1448 cmp eax,dword ptr [i]
009A144B je IntToUchar2+31h (9A1451h)
return false;
009A144D xor al,al
009A144F jmp IntToUchar2+3Bh (9A145Bh)
uc = (unsigned char)i;
009A1451 mov eax,dword ptr [uc]
009A1454 mov cl,byte ptr [i]
009A1457 mov byte ptr [eax],cl
return true;
009A1459 mov al,1
Method 2 (original) (10 instructions)
if(i < 0 || i > 255)
009A13DE cmp dword ptr [i],0
009A13E2 jl IntToUchar+2Dh (9A13EDh)
009A13E4 cmp dword ptr [i],0FFh
009A13EB jle IntToUchar+31h (9A13F1h)
return false;
009A13ED xor al,al
009A13EF jmp IntToUchar+3Bh (9A13FBh)
uc = (unsigned char)i;
009A13F1 mov eax,dword ptr [uc]
009A13F4 mov cl,byte ptr [i]
009A13F7 mov byte ptr [eax],cl
return true;
009A13F9 mov al,1
Suggested method in release build:
01041050 0F B6 C8 movzx ecx,al (3 clock)
01041053 3B C8 cmp ecx,eax (1 clock)
01041055 75 03 jne main+5Ah (104105Ah) (1 clock)
Current method in release build:
01041018 3D FF 00 00 00 cmp eax,0FFh (1 clock)
0104101D 77 06 ja main+25h (1041025h) (1 clock)
I also checked this in 64-bit, and it is the same instructions. In the suggested approach, we have an extra movzx, and it consumes a register, which would tend to cause surrounding code to optimize less efficiently on x86 (probably negligble on x64, but same effect). Due to the movzx being expensive (relative to cmp), the suggested approach is 6 cycles to the current approach's 2 cycles, or 3x worse. If the surrounding code were register constrained, as x86 often is, then you might need to push something on the stack to free a register, which would be more overhead.
To be fair, I chalk this up to pure, blind luck. While I did try to write the code to be as efficient as possible, readability and correctness were of higher importance. It is entirely possible that other operations may not be as efficient as possible. I think I did try to avoid temporary variables where possible, for just this reason, though in some cases it couldn't be avoided, and the effect would often be diluted by how expensive large multiplication and division operations are.
A large chunk of work that has not yet been done is to take all 64 combinations for each and every operation type and see exactly how they optimize, and dink with it to see if it can be better. As an aside, we considered using intrinsics for x64 multiplication, which would have been a lot faster, but decided not to in this release due to schedule constraints.
In addition, unless you happened to be using SafeInt inside of a rendering engine, or something else where a couple of cycles matter, a couple of cycles here and there are not going to add up to anything, considering that an allocation could cost several 10's of thousands of cycles, loading a COM object is much, much bigger, and so on.
Thanks for the question - I got to learn a bit about assembly that I didn't know before today.
Oh - I forgot to edit a couple of things - the suggested approach adds up to 5 clocks, not 6, which makes it 2.5x slower, not 3x.
Thanks for correct
Remove this comment
Remove this thread
close