- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
UD2 is a 2-byte undefined instruction. INT3 is interrupt 3 - trap to debugger. It is a single byte, 0xcc.
For indirect branches, Intel recommends:
Assembly/Compiler Coding Rule 14. (M impact, L generality) When indirect branches are present, try to put the most likely target of an indirect branch immediately following the indirect branch. Alternatively, if indirect branches are common but they cannot be predicted by branch prediction hardware, then follow the indirect branch with a UD2 instruction, which will stop the processor from decoding down the fall-through path.
My question is: are UD2 and INT3 equivalent for the purpose of stopping speculation of an indirect branch at the immediate following instruction? The advantage of INT3 is that it's single byte. I use it for the padding value for aligns and at 2 bytes, UD2 is problematic.
Link Copied

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page