why are switch statements so HECKIN fast?

Ғылым және технология

Support the channel and go try Brilliant RIGHT NOW at brilliant.org/LowLevelLearning for 30 days free and 20% off!
Should you use switch statements? What about if statements? Should you use NEITHER? What if I told you that if statements were WAY slower than switch statements. In this video, I'll tell you about why switch statements are HECKIN FAST.
🏫 COURSES 🏫 Check out my new courses at lowlevel.academy
🙌 SUPPORT THE CHANNEL 🙌 Become a Low Level Associate and support the channel at / lowlevellearning
Why Do Header Files Exist? • why do header files ev...
How Does Return Work? • do you know how "retur...
🔥🔥🔥 SOCIALS 🔥🔥🔥
Low Level Merch!: lowlevel.store/
Follow me on Twitter: / lowleveltweets
Follow me on Twitch: / lowlevellearning
Join me on Discord!: / discord

Пікірлер: 755

  • @LowLevelLearning
    @LowLevelLearning7 ай бұрын

    Support the channel by trying Brilliant at brilliant.org/LowLevelLearning for FREE and get 20% off when you sign up! Thanks again Brilliant for sponsoring this video and your continued support of the channel!

  • @peppybocan

    @peppybocan

    7 ай бұрын

    I did not catch the perf difference. What is the perf difference?

  • @williamdrum9899

    @williamdrum9899

    7 ай бұрын

    Here's a few video ideas: * Hardware bugs and their workarounds (e.g. F00F, FDIV, TAS on Amiga/Genesis, DPCM glitch on NES, etc) * How to program in assembly without losing motivation (me irl 😭) * How emojis are represented in binary * Unicode errors in general (e.g. rÃ(C)sumÃ(C) (I don't know how to type the copyright symbol on my phone sorry!) * Why it's so easy for a human to recognize spambots in chatrooms but computers can't do it well * How an EXE file works

  • @csehszlovakze

    @csehszlovakze

    5 ай бұрын

    You don't even need a switch statement for enums in Java, you can make frankensteinian monsters known as an abstract enum. They're usually used for adding extra data for the enum members (with a custom constructor), but you can also add abstract methods to the enum, which you have to then implement for each member. This leaves you at a simple method call on your enum variable without switching for possible values. 😂😂😂

  • @TheTrackoShow

    @TheTrackoShow

    4 ай бұрын

    I cant wait for neural link so i can learn everything you know lol

  • @shahidkhan69
    @shahidkhan697 ай бұрын

    basically a hasmap lookup vs an array search, but at a low level

  • @joeystenbeck6697

    @joeystenbeck6697

    6 ай бұрын

    To add on: it’s like the hash function is computed at compile time! (iiuc) Edit: Y’all just use Rust check and you don’t needa compile

  • @PrivacyRevocation

    @PrivacyRevocation

    6 ай бұрын

    @@joeystenbeck6697 this is something I would like to see @lowLevelLearning mention in the video. I haven't benchmarked it, but my gut feeling tells me the difference in runtime complexity is just pushed down to compile time, i.e. increasing time needed to compile the program in order to get a better performance in runtime. In some situations this is undesirable (or less desirable) and the program would be better off running a bit slower.

  • @pneuma1387

    @pneuma1387

    6 ай бұрын

    Beatrice can walk 14_88

  • @jan-lukas

    @jan-lukas

    6 ай бұрын

    @@PrivacyRevocation in 99% of the time you rather want longer compile times than longer run times. And I'd assume that if statements are more difficult to optimize?

  • @WarrenMarshallBiz

    @WarrenMarshallBiz

    6 ай бұрын

    @@PrivacyRevocation- Like .. when? When would it be better to have the program run slower so the compile would be faster?

  • @davidgomez79
    @davidgomez797 ай бұрын

    I'm convinced, I'm switching to switch.

  • @reed6514

    @reed6514

    7 ай бұрын

    If only i could

  • @PingSharp

    @PingSharp

    7 ай бұрын

    You should in any case

  • @davidgomez79

    @davidgomez79

    7 ай бұрын

    @@PingSharp 😆

  • @BlizzetaNet

    @BlizzetaNet

    7 ай бұрын

    If I use it, I won't break. That's if I don't default.

  • @JonitoFischer

    @JonitoFischer

    6 ай бұрын

    Do not get convinced so easy, test and measure times, that's the only way to know which strategy is best

  • @epistax4
    @epistax46 ай бұрын

    Embedded dev here. The compiler impressed me a couple years ago. I had a static constant std::map of enums to functors and i changed where it was used to a switch calling the functions directly and it compiled into an identical object file.

  • @ObsessiveClarity

    @ObsessiveClarity

    5 ай бұрын

    That’s nuts

  • @sparky173j

    @sparky173j

    5 ай бұрын

    Using the switch can also improve code safety by enabling the compiler warning/error for switch statement not handling all values in your enum. So in future, when you add another value to your enum, the compiler will tell you about any switch statements you forgot to update

  • @desertranger82

    @desertranger82

    4 ай бұрын

    C99?

  • @mina86

    @mina86

    2 ай бұрын

    @@desertranger82, std::map implies C++.

  • @another212shadow

    @another212shadow

    Ай бұрын

    doubtful. that means the compiler would have to have to elide the map entirely. maybe in a very simple case, but highly doubtful.

  • @martijn3151
    @martijn31517 ай бұрын

    Before everyone decides to switch to switch statements😊I think it’s good to point out that switch statement CAN be faster, but it really depends on the use case. Like you mentioned, when you only have a few conditions, if/else might actually be faster. Also in your example the gaps between the enum values are small, but when very large gaps are used, the compiler might opt for a different strategy, which can again be slower than a few if/else statements. And finally, switch statements might be faster, but have their own caveats. Which can lead to slow development. It’s so easy to forget a break, which leads to an unexpected fall through, which can be real nasty bugs to trace. It’s easy to forget to handle the default case. Also in C/C++ switch statements cannot be used for strings, which is annoying to say the least. And the switch cases are not scoped, unless you add curly braces; which again can lead to unexpected behavior if used improperly.

  • @uis246

    @uis246

    7 ай бұрын

    Usually compiler issues warning about fall through. At least gcc does.

  • @uis246

    @uis246

    7 ай бұрын

    Also video explains why strings cannot be used in switch cases. You need a number for switch.

  • @chieeyeoh6204

    @chieeyeoh6204

    7 ай бұрын

    It really depends on the use case, squeezing more than 1 line under each case can be hard to read and ugly. And so often the conditions are not as simple as a case. So I think its use case can be quite narrow.

  • @Guilhem34

    @Guilhem34

    6 ай бұрын

    Seriously I don't understand why break statements are not a default on switch in all languages I have used. It blows my mind.

  • @nathanbanks2354

    @nathanbanks2354

    6 ай бұрын

    If you use enums, the gaps should be quite small. Generally I'm happy to let the compiler figure out if it thinks the switch is faster or not, but I prefer switches because I think it looks prettier and I sometimes like to know if I'm missing a value by looking at the warnings when I remove the default statement. (I tend to write java or rust more than C, so the precise warnings may be different.)

  • @sledgex9
    @sledgex96 ай бұрын

    I would have imagined that modern compilers with optimizations turned on would be smart enough to choose to translate the if/switch to the appropriate assembly if/switch depending on the specific code.

  • @mabed6692

    @mabed6692

    6 ай бұрын

    Most of them are. Not sure what compiler he used with what settings. In some cases they can convert if-elses to jump table, like they do in case of switch. In some other cases they might decide to not generate jump table for switch, because multiple compares would be faster or much more memory efficient (in terms of produced code).

  • @aleksihiltunen7063

    @aleksihiltunen7063

    6 ай бұрын

    Yep, to many compilers it doesnt matter at all whether you make a switch or if statement. I guess the switch just happens to be easier to optimize so its more likely to be faster if we choose any random compiler. In addition to O(1) jump tables and O(n) if else chains some compilers actually uses hardcoded binary search to find the correct case by repeatedly cutting the range in half which is O(logn) in average. I guess that can be good middleground between those solution. Most compilers change the implementation for if and switch statements depending on the amount of items to be compared and the type of data being presented (consecutive numbers/something that translates to them like enums, random looking numbers without seemingly any pattern etc.)

  • @martin_hansen

    @martin_hansen

    6 ай бұрын

    You forget the human here. If I have a long if-else chain that I carefully created with only fixed comparisons to a single variable The compiler can optimize that to a jump table. The next developer working in this file adds a if-else that breaks this pattern, and buum performance drops for no obvious reason (unless you know if this compiler optimization). By using a switch I tell the next developer my intention, and she/he needs to make a conscious decision to change this concept.

  • @briancraig4326

    @briancraig4326

    6 ай бұрын

    They are, the if code is not optimized in any way

  • @edwardcullen1739

    @edwardcullen1739

    6 ай бұрын

    This is the correct answer. People who write modern optimising compilers are generally smarter than the average programmer. It's _relatively_ easy to look at an if-else cascade and analyse if it's evaluating equality on the same variable and is, therefore, functionally a switch statement. One only need look at Python: Guido explicitly excludes a switch statement as he _knew_ this was possible.

  • @r0ckinfirepower
    @r0ckinfirepower6 ай бұрын

    To be fair, if the if-statement can easily be transformed into the switch statement as you did in the video, any reasonable compiler should output the same asm as the switch statement.

  • @antagonista8122

    @antagonista8122

    6 ай бұрын

    @@piisfun What? Modern compilers are perfectly capable of generating jump table from cascaded if statements as well as converting switch statement into series of comparision depending on whatever is faster in certain situation and are able to do it compiling much higher level language like C++.

  • @klimmesil9585

    @klimmesil9585

    4 ай бұрын

    Yeah, just put -O3

  • @doughale1555
    @doughale15554 ай бұрын

    In my first design review at Novell, my team lead said I should use a switch statement for true/false tests rather than if/else. So I coded both and looked at the generated code - they were identical.

  • @DrunkenUFOPilot

    @DrunkenUFOPilot

    2 ай бұрын

    Compilers since 20+ years ago have been smart enough to ignore your preferences as a source code writer and just do the right thing at the machine code level. I used enjoy trying to outsmart compilers, to make 3D renders run faster by studying the machine code output, but gave that up long ago. We have created tools smarter than ourselves!

  • @mnxs

    @mnxs

    Күн бұрын

    If the if-else chain tests something that can be trivially changed to a switch, it's better to do so, simply because it communicates intent better, and gives more well-structured code. Or, put another way, a long, simplistic if-else chain is just a plain eyesore, IMHO. It doesn't necessarily matter if the compiler can magically figure your intent out in this specific case; in other cases, bad code (which this smells like) can actively hinder it from figuring things out and making optimisations. TL;DR: Don't make it any harder for other people to read your code than absolutely necessary, and don't expect your compiler to perform magic on weird code, even if it's _often_ able to.

  • @shayes.x
    @shayes.x7 ай бұрын

    I don't really care about tabs vs spaces, but 8 spaces tab width hurts my soul 😭

  • @cattokomo

    @cattokomo

    6 ай бұрын

    the Linux kernel codebase actually use 8-width space or tabs (iirc)

  • @moorscode

    @moorscode

    6 ай бұрын

    I believe it's a method to prevent nesting. It gets unusable at the depth of 3, so it's motivating to extract and write separate functions/methods/classes.

  • @omg33ky

    @omg33ky

    6 ай бұрын

    @@moorscode that is actually the first positive thing I heard about such a big amount of spacing and it totally makes sense. Maybe I should try to get my coworkers machines to look that way xD

  • @DavidLindes

    @DavidLindes

    Ай бұрын

    tabstops at 8 spaces is.... a very long-standing de-facto standard. I don't care what you set your indent level to, but on a modern computer, there's very little reason to make your editor necessarily use hard tabs of a different width, and plenty of reason (IMHO) to maintain the idea that tabs are 8 spaces (or rather, align you to a column number divisible by 8), for compatibility with existing things.

  • @GDT-Studio

    @GDT-Studio

    17 күн бұрын

    I know right.. i only use 2 spaces.

  • @ishi_nomi
    @ishi_nomi7 ай бұрын

    Great video as always. I understand the difference but only in abstract level so it's pretty cool to see how exactly it work under assembly.

  • @vasiliigulevich9202
    @vasiliigulevich92026 ай бұрын

    I'm pretty sure same optimization applies to a sequence of IF statements on modern compilers. What optimization level is used here?

  • @Baptistetriple0

    @Baptistetriple0

    6 ай бұрын

    seeing the re-move of the value in eax it's obviously in debug mode, no compilers would output such thing outside -O0

  • @ashwinmurali4345

    @ashwinmurali4345

    6 ай бұрын

    This is what I was also thinking

  • @RobBCactive

    @RobBCactive

    6 ай бұрын

    When I was accelerating code by eliminating branches, gcc was already eliminating the lowest level if by using an optimal assembler instruction.

  • @filker0

    @filker0

    6 ай бұрын

    This is correct. Common subexpression elimination is one of the first optimizations I learned back in the 1970s while in college as it can be applied early while doing lifetime and flow analysis before code generation

  • @Tony_Goat

    @Tony_Goat

    6 ай бұрын

    This optimization can only be applied on if statements who conditionals strictly operate on integral types and never check said integral types against a range of other integers (e.g. > or

  • @natecaine7473
    @natecaine74733 ай бұрын

    Yes, I was disappointed that he glossed over stuff referring to things as "magic numbers" and "a bunch of garbage". The whole *point* of the video was to explain the details behind the switch statement. The valid user input are letters: "c", "d", "e", "n", "q" (which he defined earlier in the video). Note that the first letter "c" is ASCII 0x63 and the last letter is "q" is ASCII 0x71. Note that the span from "c" to "q" is 0x0e (i.e. 15 characters away). The code at 7:51 shows a transformation and a check. Line 123b sub eax, 0x63 ; this subtracts letter "c" from the entered letter, so the range of inputs is now indexed from 0. Line 123e cmp eax, 0xe ; this compare checks if the input letter is past letter "q" since letter "q" is the 15th letter (i.e. 0xe) from letter "c" At this point, the character range from "c" to "q" has been transformed to an index range of 0 to 14. If the entered character is *OUTSIDE* this range the code terminates, bypassing the jump table stuff, and goes to process with the "invalid" code not shown in the video. Line 1241 ja 12aa ;exit the jump table code block as the entered character is outside the range of the defined command characters. If the entered character is *INSIDE* this range, it proceeds to the jump table code. Line 1245 lea rdx,[rax*4+0x0] ;Load Effective Address. The index value is multiplied by 4, since each jump table location is a 4-byte offset added to the table's base location. The code at 7:58 is really just the jump table values. (Unfortunately the disassembler produces nonsense code, but the offsets are valid.) Rearranged, the offset values are given below and matched against the entered letter: 𝟶𝟶: 𝚏𝚏 𝚏𝚏 𝚏𝟸 𝟺𝟸 ; "𝚌" 𝚓𝚞𝚖𝚙 𝚝𝚘 𝙻𝚒𝚗𝚎 𝟷𝟸𝟿𝟼 𝙲𝚘𝚗𝚝𝚒𝚗𝚞𝚎 𝟶𝟷: 𝚏𝚏 𝚏𝚏 𝚏𝟸 𝟸𝚊 ; "𝚍" 𝚓𝚞𝚖𝚙 𝚝𝚘 𝙻𝚒𝚗𝚎 𝟷𝟸𝟽𝚎 𝙳𝚎𝚕𝚎𝚝𝚎 𝟶𝟸: 𝚏𝚏 𝚏𝚏 𝚏𝟸 𝟷𝚎 ; "𝚎" 𝚓𝚞𝚖𝚙 𝚝𝚘 𝙻𝚒𝚗𝚎 𝟷𝟸𝟽𝟸 𝙴𝚍𝚒𝚝 𝟶𝟹: 𝚏𝚏 𝚏𝚏 𝚏𝟸 𝟺𝚎 ; "𝚏" 𝚓𝚞𝚖𝚙 𝚝𝚘 𝚒𝚗𝚟𝚊𝚕𝚒𝚍 𝚌𝚘𝚍𝚎 𝚋𝚕𝚘𝚌𝚔 𝟶𝟺: 𝚏𝚏 𝚏𝚏 𝚏𝟸 𝟺𝚎 ; "𝚐" 𝚒𝚗𝚟𝚊𝚕𝚒𝚍 𝟶𝟻: 𝚏𝚏 𝚏𝚏 𝚏𝟸 𝟺𝚎 ; "𝚑" 𝚒𝚗𝚟𝚊𝚕𝚒𝚍 𝟶𝟼: 𝚏𝚏 𝚏𝚏 𝚏𝟸 𝟺𝚎 ; "𝚒" 𝚒𝚗𝚟𝚊𝚕𝚒𝚍 𝟶𝟽: 𝚏𝚏 𝚏𝚏 𝚏𝟸 𝟺𝚎 ; "𝚓" 𝚒𝚗𝚟𝚊𝚕𝚒𝚍 𝟶𝟾: 𝚏𝚏 𝚏𝚏 𝚏𝟸 𝟺𝚎 ; "𝚔" 𝚒𝚗𝚟𝚊𝚕𝚒𝚍 𝟶𝟿: 𝚏𝚏 𝚏𝚏 𝚏𝟸 𝟺𝚎 ; "𝚕" 𝚒𝚗𝚟𝚊𝚕𝚒𝚍 𝟷𝟶: 𝚏𝚏 𝚏𝚏 𝚏𝟸 𝟺𝚎 ; "𝚖" 𝚒𝚗𝚟𝚊𝚕𝚒𝚍 𝟷𝟷: 𝚏𝚏 𝚏𝚏 𝚏𝟸 𝟷𝟸 ; "𝚗" 𝚓𝚞𝚖𝚙 𝚝𝚘 𝙻𝚒𝚗𝚎 𝟷𝟸𝟼𝟼 𝙽𝚎𝚠 𝟷𝟸: 𝚏𝚏 𝚏𝚏 𝚏𝟸 𝟺𝚎 ; "𝚘" 𝚒𝚗𝚟𝚊𝚕𝚒𝚍 𝟷𝟹: 𝚏𝚏 𝚏𝚏 𝚏𝟸 𝟺𝚎 ; "𝚙" 𝚒𝚗𝚟𝚊𝚕𝚒𝚍 𝟷𝟺: 𝚏𝚏 𝚏𝚏 𝚏𝟸 ?? ; "𝚚" 𝚓𝚞𝚖𝚙 𝚝𝚘 𝙻𝚒𝚗𝚎 𝟷𝟸𝟾𝟿 𝚀𝚞𝚒𝚝 There is no particular reason that the offsets are negative, it's just that the compiler chose to put the jump table _after_ the code fragments. In fact, referencing the offsets to the JUMP table *is* a bit odd. Usually the base address for the jump table is the FIRST ROUTINE. (in this example the "New" routine at address 1266 is the first rountine...as shown at 8:52 ) And because it's first, It would have an offset of simply 0. The rest of the routines are reference from there (the FIRST routine). In the given code each entry point is just 12 bytes from the previous routine. 𝙹𝚞𝚖𝚙𝚁𝚘𝚞𝚝𝚒𝚗𝚎𝙱𝚊𝚜𝚎𝙰𝚍𝚍𝚛 𝚒𝚜 𝟷𝟸𝟼𝟼 (𝚒𝚗 𝚝𝚑𝚎 𝚐𝚒𝚟𝚎𝚗 𝚎𝚡𝚊𝚖𝚙𝚕𝚎 𝚊𝚝 𝟾:𝟻𝟸) +𝟶 𝚏𝚘𝚛 "𝙽𝚎𝚠" +𝟷𝟸 𝚏𝚘𝚛 "𝙴𝚍𝚒𝚝" +𝟸𝟺 𝚏𝚘𝚛 "𝙳𝚎𝚕𝚎𝚝𝚎" +𝟹𝟼 𝚏𝚘𝚛 "𝚂𝚝𝚘𝚙" +𝟺𝟾 𝚏𝚘𝚛 "𝙲𝚘𝚗𝚝𝚒𝚗𝚞𝚎" With those simpler and smaller numbers, the example would have been easier to follow, but we're at the mercy of the compiler (and crappy disassembler). As was pointed out, if the cases are "sparse" then the jump table will have a lot of those "invalid" entries. It still executes very quickly, but just takes up some memory. Input letters *OUTSIDE* the range are culled out and terminate quickly. Letters *INSIDE* the range all result in the jump code being executed, even if it is just results in an "invalid" stub.

  • @playman350
    @playman3507 ай бұрын

    Love your videos man, I know some of this stuff but it's a great refresher or intro for others keep them coming

  • @arturesMC
    @arturesMC3 ай бұрын

    1. which compiler 2. what compiler options (if you have comparet on no optimization flags, then good luck, it's not even production code) 3. what language version. This whole if / switch comparison makes litle sense, compilers this days will chop your code in sutch a way that you won't make heads and tails of it, so i assume adding -o3 will make bot comparable, but then again, you won't be able to read through ASM

  • @wChris_
    @wChris_7 ай бұрын

    you should use compiler explorer if you want to show whats going on in assembly, it has a much nicer view and will even highlight what gets translated into what assembly instructions.

  • @haliszekeriyaozkok4851
    @haliszekeriyaozkok48517 ай бұрын

    Very good. We learn today that switch statements in c is highly optimized. Thanks!

  • @wChris_
    @wChris_7 ай бұрын

    actually an if else tree might get optimized into a jump table by the compiler if there are many branches, so using an if else tree or a switch really doesnt matter with an optimizing compiler. Though its good to know when to use what as it can make your code much more readable.

  • @Joso997

    @Joso997

    6 ай бұрын

    well perhaps, but people that care about such permeformance improvements are working with embedded devices like arduino etc. Everything is going to be quite basic.

  • @Skyaidrules

    @Skyaidrules

    6 ай бұрын

    keyword “might”.

  • @modernkennnern

    @modernkennnern

    6 ай бұрын

    @@Skyaidrules that's also the case with switches though

  • @Tony_Goat

    @Tony_Goat

    6 ай бұрын

    This depends on the nature of the if else tree. It can only perform the jump table optimization for if-else branches if 1) The conditionals only operate on basic integral types 2) The conditionals only test for equality or inequality, and doesn't use >= or

  • @user-li2yv5je5e

    @user-li2yv5je5e

    2 ай бұрын

    @@Joso997 Just because the device is limited, doesn't mean the compiler is.

  • @bryanandhallie
    @bryanandhallie3 ай бұрын

    This will very likely be optimized out (for the if statement checks) if you tell the compiler to do any sort of optimization. Also, it's relevant to note that the hashing of the switch statement was so simple because you used a series of character comparisons of which each character was different. If you had multiple command inputs that matched even the first letter of the command, the switch statement would still branch. But you showed a neat topic few know about, kudos to that

  • @75hilmar
    @75hilmar7 ай бұрын

    I like your rectangular bracket styler theme, it helped me with understanding switch syntax a lot.

  • @metal571
    @metal5717 ай бұрын

    As per Jason Turner, I would also almost always avoid using the default label when switching on an enum since you could forget to adjust the switch statement when a new value is added to that enum. This should always be configured to cause a warning in the compiler, but the warning won't work when a default label is present. And yes, you'll probably have to extract the switch statement to a new function so you can handle the default case outside of the switch if it falls through, but without that label. Also another vote from me to use Compiler Explorer like Turner does when demonstrating assembly. It's just the best.

  • @edwardcullen1739

    @edwardcullen1739

    6 ай бұрын

    MISRA, for example, requires an explicit default. The alternative is that, unless intentional, the default should assert()... or just use a better static analysis tool/compiler, which will tell you when you have an unchecked enum value. If this kind of error makes it into the wild, you have more serious process issues.

  • @clonkex

    @clonkex

    Ай бұрын

    Perhaps in embedded land where unrecoverable errors are Really Bad™, but for most programs I would argue you should always have a default case that throws or asserts. Of course, I would never recommend a default case that just silently ignores the problem. Even better is when your compiler can catch the problem for you (a la Typescript).

  • @sheridenboord7853
    @sheridenboord78535 ай бұрын

    The trade off point between if and switch will depend on your target processor. A processor cannot look ahead with a jump table. Meaning it cannot keep the pipeline full. A processor may have branch prediction to try and keep the pipeline full. Lookup branch prediction and jump for your target processor. Only benchmarking will tell you the tradeoff point. Good luck.

  • @Sollace
    @Sollace6 ай бұрын

    Oh hey that's actually really cool! I've never seen someone explain how switches work at a byte level, and when you do it makes it really obvious why switches are so fast.

  • @Frisky0563
    @Frisky05636 ай бұрын

    I appreciate your explanation and comparison between if/else and switch statement.

  • @baltasar9547
    @baltasar95476 ай бұрын

    Nice tutorial! I know its just a test program but you should consider to clear the optionbuf with 0 before you use it since there may be arbitrary values in it and it potentially can trigger your stop condition

  • @halbgefressen9768

    @halbgefressen9768

    6 ай бұрын

    He also has a 1byte buffer overflow since the length specifier in scanf("%4s", optionbuf) doesn't include the null byte and completely failed to consider compiler optimizations. This video can basically be deleted

  • @heinzk023
    @heinzk023Ай бұрын

    Fun fact: * Write some code in a function, doesn't matter what * start a switch statement at the top of the function * put a "}" at the end, to finish the switch * sprinkle "case" statements in between the lines of your code wherever you want. Even inside loops, if staments, other switches etc. This is legal C/C++ and it even works, although it makes no sense at all.

  • @k7iq
    @k7iq7 ай бұрын

    Reminds me of the time I used a function pointer rather than a switch statement (20 years ago) did not do this, but instead searched down the list like the if statement. This was for a state machine with lots of states. I knew it was inefficient. This switch-case example looks kind of like a function pointer. When I have a long-ish list of compares like this, I tend to check the assembly output for efficiency like was done here.

  • @mikefochtman7164
    @mikefochtman71646 ай бұрын

    I think it boils down to a feature in the language. Switch statements have to have constants for the case statements. You can't use a variable in a case statement (i.e. CASE: ). So the values to be checked are all known at compile time, and the 'hashing' can be pre-calculated. 'If' statements however, could be comparing two variables whose values are not known at compile time. So even though in this example the value just happens to be a constant, the compiler doesn't have an easy way to go from assembling in each 'comparison' to trying to 'hash' if it just happens to be that one of the items being compared is a constant. Also, all the 'if' 'else if' clauses could be using completely different variables and values, whereas 'switch' statements the test parameter is always the same throughout all the 'case' statements.

  • @crrodriguez
    @crrodriguez5 ай бұрын

    PSA: It does not matter.. modern compilers have agressive optimizers that transforms if to switch and switch to bit-tests whenever it is valid && profitable speed/size wise to do so.

  • @okuno54
    @okuno546 ай бұрын

    No measurements? The first step in optimization is measurement. The second step is to turn on your compiler's optimization.

  • @priyeshagarwal2644
    @priyeshagarwal26443 ай бұрын

    I ran the if statements versions if O3 optimizations enabled with g++ compiler, and it got converted to the switch version !! Compiler optimization is pretty dope

  • @N00byEdge
    @N00byEdge13 күн бұрын

    scanf("%4s", optionbuf), from man scanf: An optional decimal integer which specifies the maximum field width. Reading of characters stops either when this maximum is reached or when a nonmatching character is found, whichever happens first. Most conversions discard initial white space characters (the exceptions are noted below), and these discarded characters don't count toward the maximum field width. ***String input conversions store a terminating null byte ('\0') to mark the end of the input; the maximum field width does not include this terminator.*** Also, your while loop condition is UB on the first iteration.

  • @LogicEu
    @LogicEu7 ай бұрын

    Nice! A very common place to optimize with switch is when parsing command line arguments. The problem is when you need to call strcmp or some function like that for every argument, you can't do that in a switch statement. A nice trick is to separate what can be solved with ifs vs switch and use the switch first, managing to even prevent the strcmp function calls.

  • @ThePC007

    @ThePC007

    7 ай бұрын

    I wonder if you could just run a switch statement over the first character and only then do the `strcmp` (and only compare with values that actually start with that character), but that would make the code look a little ugly. :(

  • @LogicEu

    @LogicEu

    7 ай бұрын

    @@ThePC007 That's actually a very good trick, for example gperf uses that trick to parse keywords to generate hash maps. I actually use it all the time when parsing command line arguments, I check if the first character is a dash '-', and only then I call strcmp from the second character, as most command line options will start with dashes.

  • @informagico6331

    @informagico6331

    7 ай бұрын

    To parse argument options you can hash argument values into a fixed size (per value) hash board buffer (long enough to hold your argument options) where you hash the string value and then memcmp() the two memory blocks to make sure the value is the same as you wanted. Then you get an almost constant evaluation time.

  • @LogicEu

    @LogicEu

    7 ай бұрын

    @@informagico6331 That sound extremely efficient and fast, and probably the way to go for big production programs, but maybe an overkill if you're making a simple cli tool. Depending on the amount of available command line options, the simpler way could even be faster.

  • @martin_hansen

    @martin_hansen

    6 ай бұрын

    Yacc + lex. It's a long time I used them last, but if I remember correct Lex can make exactly such tables.

  • @John-zz6fz
    @John-zz6fz22 күн бұрын

    MIND = BLOWN! What a great optimization, having seen that I can see bunches of ways to employ that to accelerate code flow in scenarios with complex nested comparisons. I would definitely want to wrap it with some sugar so its readable though.

  • @ericmoss6110
    @ericmoss61107 ай бұрын

    This was super cool. I got out of the habit of using switch statements but I'll start doing it more now.

  • @DJaycerOfficial
    @DJaycerOfficial5 ай бұрын

    I was afraid of for loops and used nothing but switch statements in my code. Then I finally learned for loops and have began rewriting a lot of my code to make it a whole lot better.

  • @Treblady
    @Treblady3 ай бұрын

    I learned something new and also realized some illustrations would be very helpful. Especially if to explain how to use an input in a table of negative numbers to subtract it and find which option to choose without it comparing two objects 🤨?

  • @aneeshprasobhan
    @aneeshprasobhan7 ай бұрын

    Who else is interested in how the "magical value math" works ? The whole point of me watching this video was to understand this lol.

  • @everynametaken

    @everynametaken

    6 ай бұрын

    Jump/Hash tables are things I'm not sure I quite get, so me.

  • @user-zu1ix3yq2w

    @user-zu1ix3yq2w

    6 ай бұрын

    I just assumed it was like: Table address = 1200 q = 71 d = 55 So it just reads the value (q) and adds it to 1200 and jumps to address 1271 and executes the code there. Actually he said this part contains a negative number(?) and uses that in conjunction with the table address to jmp to code. Close enough? I think he went over this part too quickly or something.

  • @aneeshprasobhan

    @aneeshprasobhan

    6 ай бұрын

    @@user-zu1ix3yq2w he kinda explains how they jump to the exact switch statement that satisfies the condition. But there was a magic address that points to the statement in his explanation. How it calculates the address to that statement was not explained and was mentioned as "magic". I clicked on the video title to know exactly about that, but it was mentioned as "magic math" here.

  • @user-zu1ix3yq2w

    @user-zu1ix3yq2w

    6 ай бұрын

    @@aneeshprasobhan Oh well. I think he should make another video explaining it. Obviously we could just look up jump tables and learn about them, but I'd prefer he just explained it in more depth. I've always found magic numbers fascinating. I think a jump table is a natural solution, one we would invent ourselves if we had been approaching these problems in assembly and using the goto statement, instead of using high(er) level languages. I guess what I can say is, this jump table solution for switch statements (goto table[table_address+offset]) is better for (numerically) consecutive cases, and less so for cases that are "sparser," especially for memory management.

  • @drcl7429

    @drcl7429

    Ай бұрын

    Seems to be like branchless programming. There is an Aussie guy on here that is really in to it.

  • @kits1652
    @kits16527 ай бұрын

    Please correct me if I'm wrong, but isn't this only true with optimizations turned off? I did a quick bit of playing around on compiler explorer before commenting and it was true there was a substantial difference between a switch and a if chain with optimizations turned off but if -O3 set both switch and if result in the exact same assembly.

  • @williamdrum9899

    @williamdrum9899

    7 ай бұрын

    It depends on how many cases you have

  • @gamma77-mr1gk

    @gamma77-mr1gk

    7 ай бұрын

    This. Decisions between if-else chains and switch statement should be based on what is more readable or what expresses the intend of your code better. Every major compiler is perfectly capable to see through switches and if statements and can transform one into the other if it thinks that's going to be faster. And generally the compiler will do a way better job at making this decision than the average programmer. The advice given out in this video is simply misleading and will make new programmers rewrite perfectly fine code because they now think that is will be faster (which it won't).

  • @kits1652

    @kits1652

    7 ай бұрын

    ​@@williamdrum9899 I did a bit more playing around this time with 9 cases instead of 3. The asm is almost identical, The compiler did switch to a different approach than before, this time it declared basically an array of length 26, one for each letter containing the start address of each case and then used the switch argument as the index to this array to find the correct case code, e.g. 'C' - 'A' = 2, 2 index in the array is the address for case 'C' which it then jumps to. This is the same for both if and switch. there is one small difference which is with the if version, there is a extra comparison at the begin which check the first if condition, if its matches then it skips everything I just mentioned. The switch version doesn't have this comparison but everything else is the same.

  • @narrativeless404

    @narrativeless404

    2 ай бұрын

    Not if your if statements greatly differ from one another

  • @LolSalat
    @LolSalat7 ай бұрын

    shouldn't the compiler be able to optimize the if tree to a switch like statement? (with -03 or -0fast)

  • @playman350

    @playman350

    7 ай бұрын

    I agree, but I'm not sure you can always rely on the compiler to do that on all platforms though

  • @bersK00

    @bersK00

    7 ай бұрын

    Trust, but check

  • @williamdrum9899

    @williamdrum9899

    7 ай бұрын

    So much this. At the end of the day if you didn't look at the compiler's assembly output you have no idea if your program is optimized

  • @grzegorzmajcher9237
    @grzegorzmajcher923722 күн бұрын

    I like that you supported your thesis with a reference to the assembly code. I would be even happier if you ran some test code to compare the time it takes to complete 100K of switch vs. if versions of code.

  • @roadrunner3563
    @roadrunner35636 ай бұрын

    Because in many cases they translate directly to a single or very few assembly statements. However, given a properly designed compiler and language designed to be optimized, often IF statements can in select cases be translated to be as efficient as switch statements.

  • @jonahmcconnell4818
    @jonahmcconnell48186 ай бұрын

    Yo this is actually so sick. I saw a comment saying what is basically is... But man am I glad I stayed around for the actual explanation this was great

  • @Gennys
    @Gennys3 ай бұрын

    Thanks for the video, I think it would help a lot of people if you dived deeper into ASM to explain the differences between using ifs and switches. There are some things that really do need to be talked about in terms of what the computer and processor is ACTUALLY doing and switches and ifs are a perfect example. PS. I had no idea people still had tabs as 8 spacing instead of 4 or even smaller. That is wild.

  • @assimilater-quicktips
    @assimilater-quicktips6 ай бұрын

    I remember learning about another benefit in my computer architecture class. Modern processors use tricks like out of order processing and branch prediction to improve performance. More branches = more wrong predictions and more operations performed that need to be discarded

  • @jouniosmala9921
    @jouniosmala99216 ай бұрын

    The issue is mostly about difference in branch prediction misses. Anytime one branch goes differently than predicted every instruction in the pipeline after branch gets squashed. For instance ZEN2 that's 18 cycles with potentially 4 instructions decoded per cycle, and for all modern PC processors it seems to be on that ballpark. The nested if statements can do that multiple times while calculated only does it once. Damn. I just needed this since I've completely forgotten to use the switch statements. Calling function pointers from array is quite similar, but should be somewhat faster.

  • @anon_y_mousse
    @anon_y_mousse6 ай бұрын

    I still remember reading the AMD optimization manual like 20-ish years ago and figuring out how to use that to your advantage in so many ways. Even when you have simple string constants you can still take advantage of it by pre-hashing the strings, and there was another trick in there involving multiple if branches that could be compressed into a single switch by using the compiler's own optimizations to convert a test into a simple bit and then bitwise or them all together.

  • @sent4444

    @sent4444

    6 ай бұрын

    can you give me that resource to read?

  • @anon_y_mousse

    @anon_y_mousse

    6 ай бұрын

    @@sent4444 I can't directly link it, but just Duck the AMD optimization manual and you should find it. The Intel optimization manual is also a good resource. They both provide some really good tips if you're thinking of getting into writing assembly or a compiler or just improving your code from a higher level.

  • @bledlbledlbledl
    @bledlbledlbledlАй бұрын

    glad to hear THAT, because the program I've been writing has a switch/case block with (so far) 171 cases in it, and it'll probably end up with a lot more than that before I'm done

  • @KnightMirkoYo
    @KnightMirkoYo7 ай бұрын

    Awesome video, thanks! :3 I wonder whether the same holds true for rust if statements vs switch statements

  • @jeffbeasley8235

    @jeffbeasley8235

    6 ай бұрын

    It does -- play around with rust's match with compiler explorer, it's very smart

  • @TheNovakon
    @TheNovakon6 ай бұрын

    For small count of options, a jump table can have negative impact because branch predictor can run into difficulties to predict jump through the table. However, the compilers often transform this special edge cases into if-else series anyway. If one option appears often then others, is is probably better to make if statement with likely attribute for this option and then use switch-case for other options

  • @desertranger82

    @desertranger82

    4 ай бұрын

    What do you mean with prediction? isn't it a number that goes into adding to the program counter value to jump for that specific branch location line?

  • @JATmatic
    @JATmatic6 ай бұрын

    I have recently started using switch() statements in interesting way: Have two compares on both sides of &&? Bit-pack compare bools into int as two bits and switch case on the int. (4x cases) On three bools (8x cases) this is massively more simple and faster.

  • @T33K3SS3LCH3N
    @T33K3SS3LCH3N6 ай бұрын

    It is a neat mechanic, but disappointingly rarely actually relevant. 1. You need to have a decent number of branches to actually notice a difference. Even with 5 options, it's still only a minute dufference. 2. If you have a huge number of choices, you will often implement ot as some kind of hash map or state machine anyway, rather than if/else or switch. 3. The speed of the branching is only relevant if the code that is executed in the branches is also fast. If you're doing a printf at the end, then your improvement by using a switch will only make up a fraction of a percent between hitting the control structure and actually seeing the text on screen. That said, these niche cases where the speed gain is relevant of course still exist, just not in many places. I guess I'm kinda traumatised about this topic over the whole YandereDev incident where everyone and their got hung up on the point that the code was bad because it used if/else instead of switch, even though that was the least of the problem with that code. Ultimately it turned out that their performance issues came from calling an expensive UI function multiple times per frame and the use if heavily unoptimised graphic assets.

  • @clocked0
    @clocked022 күн бұрын

    I always knew switch was the faster option after I learned Java but had no idea why until now. Thanks for this!

  • @ricardomarques1769
    @ricardomarques17697 ай бұрын

    I was looking all over for this kind of explanation and never found it, till you demonstrated... So, thank you for finding the time to explain this topic so thoroughly. Although I have a question. What if you use if statements without the else keyword, does it change anything? I, for myself, don't think it would change because it would still have executed each if statement to compare the values.

  • @FawkesRanch

    @FawkesRanch

    4 ай бұрын

    What you are thinking is only applied in the worst case scenario, the nested if-else will break the checking once the there is a match case.

  • @Waffle_6
    @Waffle_610 күн бұрын

    hi, computer engineering student(hardware lol) here. switch statements are basically state machines on the hardware level(think of it like a recursive register that updates itself due to some conditions of the current state and whatever inputs/outputs) and they are quite fast as opposed to abunch of if statements/nested if statements as thats just a ton of multiplexers in a row and as great as a multiplexer is, they can have quite the long bit depth(the longest path a bit of information can take) its just more efficient to use a state machine which may only use a couple mulitplexers per clock cycle and register delay is much less than that of a mux.

  • @sciencelab4225
    @sciencelab42257 ай бұрын

    Absolutely fascinating! 🤯 Thank you very much! This is the first explanation of why switch is preferred over if else that made sense to me.

  • @williamdrum9899

    @williamdrum9899

    7 ай бұрын

    The way I understood it from working in assembly is this: With a long chain of if-else you compare your input to each possibility. With a switch statement you're comparing nothing at all!

  • @timmygilbert4102

    @timmygilbert4102

    7 ай бұрын

    You may also have a look at CPU architecture, the scheduler load the instructions in a cache and do speculative out of order executions, which basically render this optimization useless. 😂

  • @sciencelab4225

    @sciencelab4225

    6 ай бұрын

    @@timmygilbert4102 Right. Would be interesting to test under which circumstances the benefits of branch prediction of if/else outweighs the gains of a switch statement. 🤔

  • @timmygilbert4102

    @timmygilbert4102

    6 ай бұрын

    @@sciencelab4225 there is a blog that test it, 1024 random if with no slowdown. Memory access is slower than compute, so reordering the instructions cache to feed the register memory and discarding false execution is faster than just querying the right branch. So if you don't have long switch statement or deep if tree, by witch you probably need another way to structure code, it's unlikely to even make a dent or show up in benchmark. It's only style choice.

  • @williamdrum9899

    @williamdrum9899

    6 ай бұрын

    It was the fastest in the era before caching

  • @cfwebdeveloper
    @cfwebdeveloper4 ай бұрын

    coding sites for awhile and this just made me want to dig deeper into assembly, maybe lol. Thanks for the video great information! *the more you know star*

  • @ivonakis
    @ivonakis6 ай бұрын

    NGL I was not expecting much. But this is amazing. Not a single comparison.

  • @CallousCoder
    @CallousCoder6 ай бұрын

    There are 3 ways to do this and option 3 is the fastest and cleanest. That’s having an array with function pointers for each of the enum values.

  • @sritharan20
    @sritharan207 ай бұрын

    you are awesome. you should do a playlist like Jason Turner only on Assembly (quick daily videos) and that'll be a huge success. Thx man.

  • @drfrancintosh
    @drfrancintosh3 ай бұрын

    It looks more like a jump table than a hash table as others have opined. Also, this only works in certain cases, yes? if the range of the switch is too large (say, outside the range of a few alphabetical letters) then I think the switch statement resolves to a series of "if" statements. Great video, I'm loving all this geeky low-level stuff. I'm subscribed and continued success!

  • @cocccix
    @cocccix6 ай бұрын

    Some benchmarks would be nice to check if the performance really changes that much (probably not).

  • @codaaaaaaaaa

    @codaaaaaaaaa

    6 ай бұрын

    Any optimising compiler worth your time will produce identical code for either statement anyway. Usually it is able to transform the code into either lookup tables, trees of if & if/else statements, and often even branchless code. LLVM has been able to do all of this for a while now, as has GCC, and even MSVC has some capabilities here. This guy is really being irresponsible by presenting his performance advice as true when it very rarely is, and not even measuring the difference.

  • @user-jv3xx8rl1x

    @user-jv3xx8rl1x

    3 ай бұрын

    @@codaaaaaaaaa and even if the compiler doesnt optimize in the vast majority of cases you dont even care as processors are extremely fast

  • @MEWOVER9000
    @MEWOVER90006 ай бұрын

    🤓 This is my comp sci degree speaking out, but there is a case where an if/else block might have a marginal performance benefit. If your input data is distributed in a way where one or two values are the overwhelming majority, with tertiary and onward values being exceedingly rare, it might prove just barely optimal to use an if/else tree rather than a switch.

  • @edwardcullen1739

    @edwardcullen1739

    6 ай бұрын

    The important point is that you *MUST* profile your code. Modern processors are just so complex that you just can't make any assumptions about performance anymore.

  • @omega_sine
    @omega_sine6 ай бұрын

    Might be different for out of order execution, but when your cpu is piping in instructions, it will usually be processing multiple instructions at a time. But that means for an instruction like jne, your cpu may end up processing instructions right after the jump when in reality it needed to be processing instructions at the location specified by the jump instruction. When this happens, the cpu is forced to flush out the instructions and then continue from the correct location. Branch predictors can reduce this chance but that is an additional cost of if statements.

  • @martin_hansen

    @martin_hansen

    6 ай бұрын

    Exactly my thoughts 😊 I would imagine that a switch statement makes it easier for a compiler to optimize for branch prediction.

  • @maxdemian6312
    @maxdemian6312Ай бұрын

    This looks like a compiler's job to me

  • @anthonyjaguenaud34
    @anthonyjaguenaud345 ай бұрын

    Switch statement is also to do docotomy when values are dispersed. We can also take advantage of both worlds, by doing if (most probable value) and switch on the other values.

  • @scheimong
    @scheimong6 ай бұрын

    Ah yes the good old jump table. I remember playing ShenZhen IO (it's a game (if you can call it that) where you build digital circuits and code with a very simple RISC assembly) back in 2018. One of the levels was a sandwich making machine or something, and I had the idea to use a hard-coded jump table (using a ROM) to store the recipes and thereby cut down the number of instructions. This is basically just that, but slightly more involved. Slightly.

  • @ItsMorze
    @ItsMorze5 ай бұрын

    Now I'm super interested to what does a match statement in rust compiles to

  • @Tony_Goat
    @Tony_Goat6 ай бұрын

    Do note, this behavior is specific to languages that only implement switch statements that only accept integral types, and only compare against single integral constants, like C. If you use C#, the behavior is different, according to Microsoft's documentation: "A switch statement evaluates case patterns in text order from top to bottom.", text patterns which can be either a constant list evaluation (in which case, if its an integral type, it can use jump table optimizations) *or* a bunch of comparison evaluations (e.g. value >= 10), which compiles down to IL that is no different than an if-else tree, so understand the behavior of your chosen language and use cases before throwing switch statements everywhere, expecting a performance boost that never manifests!

  • @GnomeEU
    @GnomeEU26 күн бұрын

    Just that modern compilers already optimize all this stuff for you, so it really doesn't matter which one you use.

  • @ThatJay283
    @ThatJay28317 күн бұрын

    nice! also im sure if i use a switch statement that turns out to be really short and use more cycles, the compiler might just optimise it into if/else for me

  • @nicosummer9020
    @nicosummer90207 ай бұрын

    “Brilliant,a *free* and easy way, …, 20% off subscription” sure

  • @revengerwizard
    @revengerwizard7 ай бұрын

    Would be cool a video about computed gotos and a comparison with using switch statements.

  • @Kiyuja
    @Kiyuja7 ай бұрын

    to me personally to use Switch statements the value has to be a single denominator AND the impacted options have to be atleast more than 3 or 4 options. If is just more flexible and Switch requires more code to work. But if you got many options depending on your value I think its a powerful tool and when you write big programmes or it gets called a lot its worth to implement

  • @williamdrum9899

    @williamdrum9899

    7 ай бұрын

    I also consider size of the table since I usually program on 16 bit hardware. These kind of things work best when the choices are consecutive. So instead of using letters it's better to ask the user to type 0, 1, 2, or 3 since you don't need a massive table, you can just use bit twiddling to clamp everything down to four options

  • @TalicZealot
    @TalicZealot7 ай бұрын

    It's almost like the binary is a hash table and the switch is turned by the compiler into a very simple hash function to index(jump) to the right spot. Cool.

  • @williamdrum9899

    @williamdrum9899

    7 ай бұрын

    Pretty much. The beauty of this is that no comparisons are actually made. You basically have a big table where most options are "do nothing" so that no matter what the user types, all cases are handled

  • @another212shadow
    @another212shadowАй бұрын

    one for one, a predicted if is faster than a switch. if you have more important values (such as a success vs error return) where the success performance is far more necessary, an if for the important value(s) first then do whatever with the rest. it allows for branch prediction then. Also, if your tables isnt dense it will be converted to an if-else tree anyways, Predicted branches are msotly just the instruction slot expense so single cycle - almost free.

  • @filker0
    @filker06 ай бұрын

    The optimisers of modern compilers can reduce the difference. The repeated load of the same subexpression is unnecessary, and because every comparison is between the first byte of the buffer and a constant, and there's nothing that might change the byte in the buffer, the optimiser is free to transform the 'if' statement to the same intermediate RTL sequence as it does for a case statement. There's more magic the compiler can do under the covers, but enabling such optimizations makes it difficult to read the assembly code produced and for the debugger to determine the statement a given instruction is associated with.

  • @OneAndOnlyMe
    @OneAndOnlyMe2 ай бұрын

    Amazing. I've always wondered how a switch...case worked at low level.

  • @BritishBeachcomber
    @BritishBeachcomber6 ай бұрын

    I began programming in machine code, then assembly. Working down to the bare metal is the best way to understand how to write efficient code. I learned all these tricks from the start.

  • @floppa9415
    @floppa94157 ай бұрын

    Very cool. I think that the switch statement isn't used all that much despite the advantages it has is, is its just very akward syntactically, at least in C.

  • @GCKteamKrispy
    @GCKteamKrispy7 ай бұрын

    Making menu state for my digital watch on arduino and was wondering whichever is faster method. Thanks!

  • @imrank340
    @imrank3406 ай бұрын

    I must say Assembly language explanation is truly valuable and allow to reduce loop cycle it mean CPU time....Cool good work.

  • @forivall
    @forivall6 ай бұрын

    I'm pretty sure this applies to modern jit compiled js engines too, since switch statements with char codes are a common technique for the lexer of parsers written in js.

  • @guywithknife
    @guywithknife6 ай бұрын

    It depends. If you’re writing an interpreter, switch statements are on the slower end of the instruction dispatch spectrum. (Of course non jump-table if/else statements would be even slower!)

  • @u9vata
    @u9vata6 ай бұрын

    Actually in some circumstances I saw switch statements ending up generating binary search in code where enum values were consequtive - still better in most cases though.

  • @bluebukkitdev8069
    @bluebukkitdev80695 ай бұрын

    That's actually awesome. Time to go restructure some of my Rust code.

  • @neerajwa
    @neerajwa5 ай бұрын

    I have used switch statements, and find that they lead to lot of unintended errors in writing the code which are syntactically correct but logically wrong. Like missing break declaration or default statements which is not supposed to be default after some changes in the program. Ultimately these take more time and cost more.

  • @juliovata9194
    @juliovata91946 ай бұрын

    The indirect unconditional branches shown in the assembly for the switch statement actually dont play well with branch target predictor hardware in cpus so performance could actually potentially be lost by using a switch statement. Also I couldnt get compiler explorer to produce the indirect jump assembly with gcc at O0,O1,O2, or O3.

  • @brockdaniel8845

    @brockdaniel8845

    5 ай бұрын

    I have the same issue with gcc... clang does as the video though.

  • @surters
    @surters6 ай бұрын

    Going to -O1 or -O2 could enable jump optimization and/or inlining and most of the code disappears in this example.

  • @leocilliers4346
    @leocilliers43463 ай бұрын

    you could get the same performance boost by eliminating the 'else' keywords (Should be safe considering that you are checking values with ==)

  • @peyop5262
    @peyop52627 ай бұрын

    Switch statements are also much more clean when you read code

  • @timmygilbert4102

    @timmygilbert4102

    7 ай бұрын

    It's more verbose

  • @peyop5262

    @peyop5262

    7 ай бұрын

    @@timmygilbert4102 well, I suppose we can't have everything. If I have to write more than two else statements, I prefer go for a switch

  • @cherubin7th

    @cherubin7th

    7 ай бұрын

    @@peyop5262In principle I agree it is cleaner, but I don't like the need for break.

  • @timmygilbert4102

    @timmygilbert4102

    6 ай бұрын

    @@cherubin7th break breaks everything, which is why I prefer if. Also in game making, whenever I have a switch I'll need to break it because exception happen, with a if it's just inserting or changing the test. Though nowadays I just pass a fonction or an object by reference, much cleaner.

  • @manofnorse
    @manofnorse4 ай бұрын

    First of all, use "gcc -O2 -S", and then analyze the resulting assembly code. The assembly code you have shown (the first one) most probably resulted from unoptimized compilation. my gcc 13.2.1 generates different code. Second, use non valued enums (not assigning values to the enumeration identifiers), and the result will even be better. And finally: switch was always supposed to be implemented by jump tables, but in some cases (like having only a few choices), the code generator could select a more appropriate (=faster) implementation.

  • @FalcoGer
    @FalcoGer22 күн бұрын

    enum class in c++ is nicer because it doesn't pollute your namespace std::array in c++ is nicer than char arr[4] because it has built in bounds checking without overhead. better still would be std::string, because that's the correct datatype for a string. i could go on. I see no reason to use c over c++ when it's mostly backwards compatible anyway and you can just use the nice, safe and fast features of c++ over the unsafe trash that you will inexplicably write when writing in pure C. That said, mixing C and C++ will yield terrible code, so might as well just write c++ and dump all the c junk. And yes, c++ works just fine for embedded.

  • @alexey4102
    @alexey41026 ай бұрын

    I read that just today in Bryant O’Hallaron “computer systems a programmer’s perspective” But as other people mentioned - switch really is faster but it is as well about balance between performance and readability Great video anyways

  • @informagico6331
    @informagico63317 ай бұрын

    This is so interesting that I used to avoid switch sentences in favor of hash maps (external or built my own) or array offset based options because I really thought the compiler was that stupid to make a sequential search, but honestly this video got me thinking...

  • @WarrenMarshallBiz

    @WarrenMarshallBiz

    6 ай бұрын

    Give the compiler more credit. They are REALLY good these days.

  • @diamondsmasher
    @diamondsmasher6 ай бұрын

    It also depends on the language. Some like VB compile a Select statement into a bunch of If/Else statements anyway, so you can lose the expected efficiency.

  • @SpiritmanProductions

    @SpiritmanProductions

    6 ай бұрын

    The IL might end up containing multiple If statements, but the compiler can still optimise that to a jump table in the case of an enumeration, which has known values.

  • @assetaden6662
    @assetaden66624 ай бұрын

    I had to refactor some code written in GO, and when I saw the looooong tree of if-else statements, I was baffled. Somebody wrote that, without even once thinking "Damn, this is getting ridiculously big, maybe there's a different way to do that". Now code looks compact, much more readable, and I don't even have proper experience in GoLang.

  • @Ribulose15diphosphat
    @Ribulose15diphosphat3 ай бұрын

    I think the best place to illustrate the Power of switch-statements is Windows-Applications. Any logical window (like a button or a static control) has a callback-function that processes Events in a large switch-statements. And Events can be very common things like "paint the window" or "mouse has moved". As much I dislike Microsoft, but Event-Driven-Programming that Windows uses is superior to the Object-Oriented programming that Gnome uses. Also the SDL-Backend has a Event-sytem for input, that typically is processed by a large switch-statement.

  • @HrHaakon
    @HrHaakon6 ай бұрын

    I think it's funny that in the more enterprise Java-land, if/else vs switch is used to communicate intent more than anything. Typically where I've worked (this could be different from place to place of course), an if is a check against something. if(isNull(blah)) or if(null == blah) is one example, or maybe if(!valid(blah)) and that sort of thing. An if/else is a quick check to make sure we can proceed. A switch typically means "We are now going to make a decision. Here are the rules we're using to make that decision." So if you see a switch, you're seeing the program thinking over something and considering how to proceed.

  • @ojotabe3
    @ojotabe36 ай бұрын

    I use switch for specific cases and if for ranges. I think it makes the code more readable.

  • @veritas7010
    @veritas70106 ай бұрын

    Honestly if you have 20 cases you should have a jump table of your own in the. I would also add that it makes more sense to talk about the reason why avoiding branch prediction is a good idea rather than o(n) vs o(1)

Келесі