Two Ways To Do Dynamic Dispatch

Поделиться
HTML-код
  • Опубликовано: 28 сен 2024

Комментарии • 242

  • @AlecThilenius
    @AlecThilenius Год назад +229

    Rust is the only piece of tech I've used extensively that I continue to be MORE impressed with over time. Usually the cupcake-phase wears off and you start disliking the warts found in all technology, but somehow after years of using Rust, I love it even more than the day I first picked it up. Fantastic video, thank you for starting a channel geared towards experienced engineers, there are very few of them.

    • @dexio85
      @dexio85 10 месяцев назад +2

      How much value did you produce with RUST programming? I mean - software shipped, company earning money, etc?

    • @TheSast
      @TheSast 8 месяцев назад

      ​@@dexio85 Rust has fixed my financial situation, rehabilitated me from multiple addictions, revived my dog and found me a partner.😊

    • @nonotreallythx
      @nonotreallythx 7 месяцев назад +1

      Given that you probably spent most of "the day you picked it up" cursing the borrow checker, this isn't hugely surprising.... :)

    • @eamonburns9597
      @eamonburns9597 5 месяцев назад +1

      Great, now I have an image of a cupcake with warts in my brain. Thanks a lot

  • @jm-alan
    @jm-alan Год назад +35

    You did, in fact, blow my mind with static promotion 🤯

    • @APerson-jf2md
      @APerson-jf2md 2 месяца назад

      I had to unsubscribe, so I could subscribe again!

  • @quilan1
    @quilan1 Год назад +60

    Not gonna lie, I said out loud "wait, what?!!" when I saw you invoke &SpeakFunctions as 'static. That's certainly something new to me, and I love it (obviously, only for extremely specific circumstances).

    • @mariansalam
      @mariansalam Год назад +1

      C++: hold my variable templates

    • @kebien6020
      @kebien6020 11 месяцев назад

      @@mariansalam In terms of C++ this actually feels kind of similar to Temporary Lifetime Extension. Where you bind a const reference to an rvalue, and instead of the usual undefined behavior for binding a reference to an object that is about to be destroyed, the compiler automatically extends the lifetime to the end of the scope.
      auto main() -> int {
      auto const& x = 2 + 3; // Compiler error if you remove const
      std::printf("%d
      ", x); // Works just fine, no UB
      }

    • @stevenhe3462
      @stevenhe3462 11 месяцев назад

      It was just a &'static closure creation.

  • @natashavartanian
    @natashavartanian Год назад +331

    Inside of you there are two wolves: One that cannot wait for new Logan Smith content, and one that knows it must wait for quality videos. The wolves are lovers. Woof woof.

    • @catus7787
      @catus7787 Год назад +16

      feeling a lil goofy today arent you?

    • @natashavartanian
      @natashavartanian Год назад +32

      @@catus7787 You haven’t even SEEN goofy yet. I can and will bring a goof so goofy, so gooftacular… I will conjure a goof out of thin air-the likes of which the Logan Smith RUclips channel has never seen. Empires will crumble under the weight of my goof. Today, tomorrow, and always, I goof. Just for you.

    • @CuriousSpy
      @CuriousSpy Год назад +8

      @@natashavartanian woof

    • @lMINERl
      @lMINERl Год назад

      I cant remember where did i hear/see this bs before about inside of you 2 wolfs none sense.

    • @VivekYadav-ds8oz
      @VivekYadav-ds8oz Год назад +1

      What.

  • @szaszm_
    @szaszm_ Год назад +69

    I code in C++ most of the time. I could do the first approach similarly in C++ (with similarly large amounts of boilerplate), but the &dyn trait type is the kind of compiler magic that I'm envious of from Rust: I wish we had dynamic dispatch in C++ that doesn't entangle the implementation and the trait/interface/concept.

    • @szaszm_
      @szaszm_ Год назад +19

      @@anon_y_mousse That's compile-time/static, not runtime/dynamic dispatch. The video and my comment are about type erasure.

  • @Keavon
    @Keavon 9 дней назад

    I really hope you'll continue making your Rust explainers. They are, bar none, the best and most insightful videos about Rust on all of RUclips. You put all the other Rust-focused content creators to shame. Please keep making videos!

  • @BlackM3sh
    @BlackM3sh Год назад +41

    It was so cool seeing you implement vtables manually! It's something I have been curious about and always wanted to see someone do. Learned a lot too! Good stuff 😄

  • @henrahmagix
    @henrahmagix Год назад +7

    your explanations are SO clear and understandable!! I don't have any formal comp-sci education, the only strong-typed lang I've only worked in was Go for a year, and _all_ of this is making sense to me - your presentation skills are immense 🤩

  • @martingeorgiev999
    @martingeorgiev999 Год назад +8

    This was great. I hope you make a follow-up video about downcasting(or maybe all types of casting) in Rust vs C++.

  • @sapphie132
    @sapphie132 Год назад +4

    Man, I love your videos. I rarely ever _learn_ something new, but my understanding of the topic gets so much better.
    I was also wondering the entire time if you'd mention anyhow, and I'm glad you did

  • @basilefff
    @basilefff Год назад +8

    Very nice explanation, didn't realise this difference until now

  • @benreeves1908
    @benreeves1908 Год назад +6

    This is a really fantastic video. Well made, well rehearsed, and well taught. Kudos from a seasoned Rustacean!

  • @lesto12321
    @lesto12321 Год назад +11

    amazing explanation, clear and to the juice of the discussion

  • @notruff
    @notruff Год назад +1

    That "&SpeakFunctions" static reference promotion tho, so good

  • @Girugi
    @Girugi Год назад +11

    There is one important difference you didn't talk about. In C++, if you are in an instance of a class running a function on itself, it can call a virtual function on itself, and derived classes will then be able to override that. You don't have to keep a special pointer that knows what type it is you are calling, and the "this" pointer can not be an all encompassing wide pointer just for this potential case right?
    There are more cases of the same kind. Of course you can work around this in some ways, but somewhere you will get a hard time. If those are cases of actual value is another question entirely.
    I think having the option for both solutions would be ideal.
    Feels like making that kind of wide pointer and static v-table per type, would be not that hard with a template in C++. But it would not be quite as clean, and would be nice to have it built in.

    • @_noisecode
      @_noisecode  Год назад +6

      This is an interesting point! I agree it'd be hard to have a class call a virtual method on itself using wide pointers, unless you somehow made the `this` pointer itself wide. I'll point out that calling a method on yourself dynamically is mostly an inheritance/OOP pattern, and based on my own observations at least, wide pointers tend to "slice the other way" and be used more compositionally rather than in situations with hierarchy/inheritance (a good example being Rust which doesn't have inheritance at all), so this problem doesn't really come up as one that needs to be solved.
      I sketched out a C++ version of the Speak wide pointer, check it out: godbolt.org/z/zGxdsEsxd
      It's not a nightmare to write, but it's definitely got sharp edges. Having a way to get the compiler to write it for you instead would be great.

    • @daasdingo
      @daasdingo Год назад

      @@_noisecode This is beautiful in a weird way! Also reminded me I need to refresh on the latest news on C++, concepts are an actual thing now? I just remember the endless discussions about whether it should be in the standard ;-)

    • @classone7101
      @classone7101 11 месяцев назад +2

      ​@@_noisecodejust wanted to say tgat in c++ it's not realy 3 indirections because the offset is known at compile time so you can insert the addition of the offset to the call instruction and the compiler does that.

    • @_noisecode
      @_noisecode  11 месяцев назад +3

      @@classone7101I know, but I’m counting the indirect jump into the code at the end as one of the indirections (for both C++ and Rust). In C++, it’s dereference object -> dereference vptr (at known offset) to get the function pointer -> jump into that code. So 3. Rust is 2 since it doesn’t need to first dereference the object to get the vptr.

  • @carterthaxton
    @carterthaxton Год назад +2

    Very well done! I’ve been hoping you would make a clear and insightful video into this topic. I find your videos to actually provide real explanations for how things work. So many videos out there fail to get to the meat of the matter. Thank you for doing what you do!

  • @Theodorlei1
    @Theodorlei1 11 месяцев назад +3

    Explanation and visuals are absolute class.!!!

  • @reallyreason6354
    @reallyreason6354 Год назад +2

    Very nice video. You helped me solve a tough problem I've been working on where I want to do type-erased dynamic dispatch to methods _of generic structs_. So rather than calling the implementation of a trait, I want to call the monomorphised implementation of a generic struct method dynamically. The core idea in the first part of this video to bind the type information into a thunk closure is what finally cracked that problem for me. `dyn Trait` is not enough for my use-case (it is fundamentally unsafe and even abstracting the methods I want to dispatch into a special-purpose trait does not work), but the hand-written unsafe approach you demonstrate in the beginning of the video works perfectly for what I want to do.

    • @_noisecode
      @_noisecode  Год назад +2

      Sounds like a really interesting problem! I'm glad the video was helpful. Be careful with all that unsafe. ;)

  • @dog4ik
    @dog4ik Год назад +3

    I am so glad youtube recommended me this!

  • @zeroows
    @zeroows Год назад +7

    Thank you for the video, please keep them coming.

  • @GeorgeFosberry
    @GeorgeFosberry Год назад +5

    It's an excellent lecture overall. I liked it very much.

  • @wrong1029
    @wrong1029 Год назад +2

    I thought I understood dyn but apparently I didn't. Awesome video, was interesting beginning to end.

  • @some1and297
    @some1and297 Год назад +1

    9:15 learning rust and was hella struggling with why Box was required, this helped tonnes.

  • @volchonokilliR
    @volchonokilliR Год назад +1

    "for... Reasons" 10:37
    oh I love how inconspicuous that sounds and how deep it runs actually

  • @isaaccloos1084
    @isaaccloos1084 Год назад +2

    this notification made me pop my headphones in at work 🙏

  • @CarrotCakeMake
    @CarrotCakeMake Год назад +3

    The summary is: (1) to build a pointer to a vtable into the type itself, so that the type can't be used without vtable dispach on the flagged functions, as per C++, and (2) to build a wrapper around the type that uses a fat pointer to a vtable, as per Rust, so that the type can be used either way.

    • @siborgium9022
      @siborgium9022 Год назад +1

      In C++ you have "final" keyword, which disables dynamic dispatch. I.e. if you mark Derived as final, all calls via ptr/ref to Derived will be static, but calls to Base will still be dynamic.
      Then the optimizer comes in, but that's another story.
      And you can handcraft fat pointers, there are few neat libraries for that, such as AnyAny.

  • @TheJaguar1983
    @TheJaguar1983 4 месяца назад

    Talking about Rust and C++ in the same video without bagging one out as superior to the other? Inconceivable! 😂

  • @nyxalexandra-io
    @nyxalexandra-io Год назад +3

    new logan smith video dropped :O

  • @loganhodgsn
    @loganhodgsn Год назад +1

    Thank you so much for this! I needed a workaround to a dyn trait object, because I wanted to implement some runtime dynamic casting back and forth between trait objects (between sub and super traits), but the compiler wasn't able to turn one trait object into another, in case they weren't sized. (They are in my case, but I was struggling to tell the compiler so)

  • @P1taJ
    @P1taJ 11 месяцев назад

    Another to note when speaking about wide pointers is the "ThinBox" experimental rust type which stores the vtable pointer in the heap allocation.

  • @wallabra
    @wallabra Год назад +1

    It's so delightfully ironic that the guy at the end is called Sean Parent.

  • @BenjaminWheeler0510
    @BenjaminWheeler0510 Месяц назад

    huh. static/constant promotion actually makes perfect sense. cool

  • @rainerwahnsinn3262
    @rainerwahnsinn3262 9 месяцев назад +1

    A tangential question: IIUC static dispatch generates and selects the specific implementations for the concrete type at compile time just like if I had duplicated the code for each concrete type myself, while dynamic dispatch selects it at runtime.
    But when does dynamic dispatch generate the specific implementations? At runtime or at compile time? If at compile time, then why doesn't it increase binary size just like static dispatch? If at runtime, then why is this never mentioned as performance penalty besides the vtable lookup for the selection?

  • @Gennys
    @Gennys 4 месяца назад +1

    It's been very hard for me to decouple a lot of these very atomistic subjects from my original understanding of them coming from Java. All of these disparate concepts being baked in and "solved" with Java's particular inheritance model. The entire time I'm thinking to myself "Rust doesn't have simple interfaces?" xD
    I'm learning though, every day.

  • @fxbehr
    @fxbehr 8 месяцев назад

    7:21 I‘m not lying when I say, that my mind was completely blown away 😮

  • @skeleton_craftGaming
    @skeleton_craftGaming Год назад +1

    With concepts (which as I understand it are essentially C++'s way of doing interfaces) and if constexper (compile time executed if statements) in C++ there's very little reason to have polymorphism anymore, because you can have something like a can_speak concept and use that to constrain a non-member template function...

    • @_noisecode
      @_noisecode  Год назад +1

      I would say all those features essentially bring C++ pretty close to where Rust is now, where static polymorphism via generics is much more common, but dynamic dispatch still does come up here and there. It’s rarer but not totally obsolete, and it’s there when you need it.

    • @skeleton_craftGaming
      @skeleton_craftGaming Год назад

      ​@@_noisecodecan rust do that? That kinda spits in the face of the whole type safety thing

    • @_noisecode
      @_noisecode  Год назад +1

      Not sure I understand. I'm saying that (IME) the majority of Rust code does `fn foo() {}`, i.e. static polymorphism, but `&dyn Speak` is there when you need it.

    • @skeleton_craftGaming
      @skeleton_craftGaming Год назад

      @@_noisecode No I think I'm the one that's misunderstanding...

    • @antagonista8122
      @antagonista8122 11 месяцев назад

      Concepts have little to nothing to do with interfaces. That is the common misconception. Concepts are just fancy and more elegant way of doing SFINAE and checking compile time preconditions, but there is nothing more you can extract from concept checking than true/false boolean.

  • @sunimod1895
    @sunimod1895 Год назад +3

    Great video!

  • @SirBearingtonSupporter
    @SirBearingtonSupporter 11 месяцев назад

    I'm sure I'll get hate for this comment but Java's reflection can do a dynamic dispatch where we don't know if the animal has a speak function but we would like to call cat.speak and dog.speak. The cost for doing this is much higher than anything else shared in the video.
    The number of pointers / references needed to reach the "speak" method is at least 3 - I think it's actually 5 (it's been awhile since I needed to do this).
    For it to be fully flushed out, it requires polymorphism from the tokenizer. If you just want the base line features, it's non-intrusive. However, in either case the code to get there will rot your brain.
    And the CPU cost is much higher, but at least you can tokenize your generic (type) and remember it.
    The java reflection "vtable" is associated with the object and therefore not static, and is costly for each call.

  • @Nesdac-k1l
    @Nesdac-k1l Год назад +1

    wake up babe new logan smith video dropped

  • @gusslx
    @gusslx 26 дней назад

    0:38 > "I wanna try sketching out a type that's a reference that can refer to anything that implements the Speak trait"
    I immediately thought "oh yeah that's a Box"
    Man you have just validated my 5 times reading the Rust book 😭 thank you
    Also, i think in Rust, wide pointers are called "smart" pointers, or are they different stuff?

    • @_noisecode
      @_noisecode  25 дней назад

      “Smart pointers” usually refer to pointers that perform some additional semantics alongside just pointing, like Box which owns an allocation and automatically destroys it on drop, or Arc which manages a reference count.
      I’m not positive but I _believe_ the term originated in C++, where unique_ptr (Box), shared_ptr (Arc), and their friends, are collectively called “smart pointers.”
      I’ve seen some Rust texts also refer to Vec and String as smart pointers for slices, since (similar to Box) they manage a slice’s ownership. I’ve never heard this usage for the C++ equivalents (std::vector / std::string).

  • @meyou118
    @meyou118 4 месяца назад

    ty - i like rust more and more once things are explain ed like this

  • @migdalskiy
    @migdalskiy Год назад

    Usually there are many more pointers to things than things themselves in my data. But 2 fetches instead of 3 may be an important benefit depending on the usage

  • @John-yg1cq
    @John-yg1cq 8 месяцев назад

    Would be real interesting to have the D language mixed in with these 3.

  • @txpghost18
    @txpghost18 Год назад +1

    amazing content as always

  • @jaopredoramires
    @jaopredoramires Год назад +1

    What do you use to create your slides? Manim? Google Slides? The transitions are so smooth

    • @DrewTNaylor
      @DrewTNaylor Год назад +3

      The description says Manim for animating and Blender and Audacity for editing.

  • @angeld23
    @angeld23 Год назад +2

    Logan ur so goated

  • @virkony
    @virkony Год назад +2

    In Haskell it is probably:
    data AnySpeak = forall a. Speak a => AnySpeak a
    instance Speak AnySpeak where speak (AnySpeak x) = speak x

    • @PthariensFlame
      @PthariensFlame Год назад +4

      And, if you’re wondering, this is both the intrusive approach and the wide pointer approach at the same time. Haskell calls the vtable for a typeclass a “dictionary”, and it gets stored right alongside the normal data of that constructor in the existential you just wrote. However, Haskell values are all “lifted” by default, meaning they’re pointers anyway. In a sense this is the worst of both worlds (you have a pointer to a wide pointer), but it also lets you much more casually select which side you’re going for if you want to.
      Just make AnySpeak a newtype for a Rust-like wide pointer, or attach an UNBOX pragma to the data for a C++-like intrusive approach.

    • @virkony
      @virkony Год назад +1

      @@PthariensFlame I don't think it is possible to have existential constructor with newtype. Mentally I imagine that "forall a. " creates variance of constructors by type. And it is surprise that it works as thin pointer given that more common use is when you have all type information needed to reference concrete instance. But I agree that it is effectively 2 level thunks and either making inner part inlined (e.g. BangPatterns/StrictData) or making outer part thunk-less should somewhat flip between wide/think pointers. Not sure how, though.

  • @31redorange08
    @31redorange08 Год назад +1

    Parent speaking about inheritance.

  • @keerthiradhakrishnan5985
    @keerthiradhakrishnan5985 11 месяцев назад

    I HAVE BEEN DYING FOR AGES LOOKING FOR SOMETHING AKIN TO RVALUE PROMOTION...AHHHH!!!!
    Seriously, thank you for outlining the actual mappings of 'gee I wish I had this feature while writing C' to rust.

  • @multiHappyHacker
    @multiHappyHacker 6 месяцев назад

    Don't use virtual functions use concepts for compile time polymorphism and function function pointer wrapper(s) for runtime polymorphism.

  • @john.dough.
    @john.dough. Год назад +1

    amazing video!! thanks for sharing

  • @klasus2344
    @klasus2344 Год назад +1

    Could you cover FFI? How to call foreign functions

  • @bagel7860
    @bagel7860 7 месяцев назад +1

    Louis Dionne has a CppCon talk: ruclips.net/video/gVGtNFg4ay0/видео.html . In it, he talks about how one could implement dynamic dispatch other than classical inheritance and I think it's quite good. He also mentions dyno in it.

    • @_noisecode
      @_noisecode  7 месяцев назад +1

      +1, excellent talk. Watched it more than once while researching for this video. :)

  • @Speglritz
    @Speglritz Год назад

    Was the point using the compiler explorer to show that the code is valid and compiles?

    • @_noisecode
      @_noisecode  Год назад +1

      Fair question-I’m just in the habit of using CE as a quick “IDE” for stuff like this because it’s easily shareable and I like that it automatically compiles and runs when I finish typing.

  • @pramodjingade6581
    @pramodjingade6581 Год назад

    Loved it & loved your video with explanations❤, could you perhaps recommend a book / course that gives me more of these? Many courses / lessons I see only deal with the top of the iceberg that is Rust features 🙏🏻

    • @_noisecode
      @_noisecode  Год назад +1

      I’ll be working on cranking out more of these. :) In the meantime, I’d make sure to check out the Crust of Rust series from @jongjengset which is an amazing series of intermediate level deep dives into cool topics. The episode on dispatch and fat pointers was actually a great resource while I was working on this video!

    • @pramodjingade6581
      @pramodjingade6581 Год назад

      @@_noisecode thanks for that 👍🏻

  • @seftondepledge3658
    @seftondepledge3658 Год назад +1

    Amazing!

  • @fabricatorzayac
    @fabricatorzayac 11 месяцев назад

    The manually implemented interface struct reminds me of the way Zig's allocators work. This can even be done in C.

    • @fabricatorzayac
      @fabricatorzayac 11 месяцев назад +1

      Also a lot of Zig's comptime shenanigans is just constant promotion taken to it's logical extreme

    • @unflexian
      @unflexian 7 месяцев назад

      ​@@fabricatorzayaclike evaluating constexprs?

    • @fabricatorzayac
      @fabricatorzayac 7 месяцев назад

      ​@@unflexianpretty much anything, barring I/O can be called as comptime by the caller. It's kinda like if in C++ everything was constexpr by default, but I am not sure.

  • @SamualN
    @SamualN 4 месяца назад

    5:09 this breaks my brain

  • @stevenhe3462
    @stevenhe3462 11 месяцев назад

    Is that why so many software written in Cpp are unreasonably slow?

  • @Elite7555
    @Elite7555 10 месяцев назад

    There is a compiler optimization called de-virtualization. When the compiler decides that it knows what method to call at compile time, it can skip the vtable. Also, the C++ approach allows to have virtual and non-virtual methods at the same time, while with Rust either all your methods are static or virtual. Just some points to consider.

  • @peter9477
    @peter9477 Год назад

    Did the promised Rule of 3/5/0 part get cut with the other material, or did I just sleep through it somehow?

    • @_noisecode
      @_noisecode  Год назад +1

      I mention it very briefly during the part about virtual destructors. I do wanna dig into it more in a followup though.

    • @peter9477
      @peter9477 Год назад

      @@_noisecode Thanks, I'll rewatch that. I was less interested in the C++ part so I guess I didn't pay close enough attention. :-)

    • @peter9477
      @peter9477 Год назад

      Hah, I don't feel bad that I missed it now. :-) For one thing it's purely a C++ thing, not Rust, and I'll probably never write C++ again. For another, that sure was a quick mention of "rule of three" (no 5 or 0!) so I wasn't as asleep as I feared when i read that in the intro afterwards. :-) Thanks for the reply, and I appreciate your videos a lot!

    • @_noisecode
      @_noisecode  Год назад +1

      Hah, yeah, I might have oversold it in the description. Thanks for you detective work, will adjust it.

  • @SimplyChrisRLP
    @SimplyChrisRLP Год назад

    This was a great video 🤯

  • @stysner4580
    @stysner4580 Год назад +2

    The cross pollination Rust has caused is really palpable. std::any for C++ is basically std::any from Rust. The funny thing is most Rust things are copied from other languages, but Rust is turning heads because of the excellent conglomeration of good ideas, resulting in a lot of languages looking at copying the same things.

    • @_noisecode
      @_noisecode  Год назад +4

      It's definitely super interesting, and the influence of Rust on e.g. all the C++ "successor languages" (Carbon in particular) is especially striking.
      To give credit where it's due though, I will point out that std::any is actually the standardized version of boost::any, which predates Rust.

    • @_noisecode
      @_noisecode  Год назад +3

      @@anon_y_mousse Two rude comments in 10 minutes.... I'm going to ask you to either be more polite or take your opinions elsewhere.

    • @stysner4580
      @stysner4580 Год назад +3

      @@anon_y_mousse Found the fossil.

    • @Reydriel
      @Reydriel Год назад

      @@anon_y_mousse The irony of complaining about supposed "censorship" (where???) when you yourself are saying "not-see-ism" lmfao

  • @abhishekshah11
    @abhishekshah11 Год назад +1

    Help me understand please, when you say around 7:43 - 7:45 that the speak_thunk closure doesn't capture variables, but it does capture data from the Anything struct. How then can you claim that it's not capturing anything? Afaiu, capturing means whenever there's a reference or a move of a variable from the surrounding scope of a closure, and in this case there seems to be data being passed by ref to the closure.

    • @_noisecode
      @_noisecode  Год назад +1

      We actually take the data as an explicit parameter to the closure, and then pass in `self.data` at the call site. So the closure doesn't capture the 'outer data', it just uses the one we pass in to it (which happens to be that same 'outer data' when we eventually call the closure).
      I thought about naming the closure parameter something other than `data` in order to avoid exactly this confusion--but one good thing about giving it the same name is that we can't _accidentally_ capture the outer data, since the parameter name shadows it.

  • @itellyouforfree7238
    @itellyouforfree7238 Год назад

    Awesome video!

  • @sxxbxx2197
    @sxxbxx2197 3 месяца назад

    Rust indirections is three as well since functions need access to the object in 99.9% of cases.

    • @_noisecode
      @_noisecode  3 месяца назад

      It’s true, you do usually need to load the object ptr; but in the video I made the observation (that I only skimmed over briefly to be fair) that in C++ there’s a _data dependency_ where we need to finish loading the object before we even know where the vptr is pointing. In the Rust layout we have both the object ptr and the vptr right from the start and the CPU can pipeline the memory accesses and subsequent operations better.

  • @whydoineedausername1386
    @whydoineedausername1386 7 месяцев назад

    Great video, but you should've at least mentioned that in Rust land they're typically called fat pointers to help anyone who wants to google it further

    • @_noisecode
      @_noisecode  7 месяцев назад +1

      I think those people will be fine-googling “rust wide pointers” brings up a wealth of highly relevant results, including results that use the term ‘fat’ instead.
      I do appreciate the thought; I always make a very conscious effort to make sure that all terms are used in these videos are accurate and googleable. Thanks for watching!

  • @SimonClarkstone
    @SimonClarkstone Год назад

    If you have (e.g.) a Vec of references, is there a way to have the vtable pointer be part of the pointer inside the Vec, rather than being duplicated on each reference in the Vec?

    • @malbacato91
      @malbacato91 Год назад

      for Vec specifically this would have no benefit over `Vec where T: Trait`, because of `dyn Trait : Trait`
      last time I looked, the rust did not provide enough defined behaviour to implement your idea soundly. vtable pointer comparisons and unsafe casts happen to work, but may break with future optimizations in the compiler
      see also "DSTs Are Just Polymorphically Compiled Generics" by Gankra. I'd link, but youtube has a habit of silently erasing comments with links.

    • @_noisecode
      @_noisecode  Год назад

      Well (if I’m understanding correctly) each of the references in the Vec could be of different dynamic type, so they each need their own vptr.
      If you have a situation where you know for certain that all the types in the Vec have the same dynamic type, but don’t know that type at compile time, you could maybe optimize that by figuring how to store the vptr just once alongside a Vec, but you’d have to do some hand-rolled trickery for it.

  • @shooshx
    @shooshx Год назад +2

    Seems like implementing intrusive pointers in Rust is an ugly pain in the ass while implementing wide pointers in C++ would be pretty easy and even trivial

    • @_noisecode
      @_noisecode  Год назад

      The implementation of wide pointers in C++ is quite similar to the handwritten wide pointer in Rust. I wouldn't exactly call it trivial, although you might argue it's a smidge simpler than the Rust version since you don't have to think about unsafe, PhantomData, etc.
      Something like this. godbolt.org/z/zGxdsEsxd

  • @antonaparin
    @antonaparin 10 месяцев назад

    Love the video! The effort was worth it. One small thing: Can you please say standard function instead of stud function? thx

    • @_noisecode
      @_noisecode  10 месяцев назад +1

      Thanks for watching and the kind words, I really appreciate it! As for “stuhd”, that’s an overwhelmingly common way to pronounce ‘std’ when talking about C++, and you’ll hear it all the time in conversations, video content, podcasts, and conference talks. I’ll be sticking with it, since it’s short and ubiquitous.

    • @antonaparin
      @antonaparin 10 месяцев назад

      @@_noisecode It's just like you should say "mute" instead of "mutt"

  • @meowsqueak
    @meowsqueak Год назад

    It would be good to cover a comparison with static dispatch (via type erasure) too, which is more interesting, in both languages, IMO.

    • @_noisecode
      @_noisecode  Год назад

      Curious what you mean by “static dispatch via type erasure.” Are you just talking about comparing compile-time generics/templates between the two languages?
      This video does presuppose that you have a reason to reach for dynamic dispatch instead of static, and yeah, I didn’t cover the pros and cons of static vs dynamic.

    • @meowsqueak
      @meowsqueak Год назад

      @@_noisecodeI’m thinking mostly about heterogeneous collections that are dispatched without the use of “dyn”. I saw another comment that mentioned enum dispatch in Rust which is one way to do it (admittedly there’s a runtime dispatch involved of course but from the programmer’s point of view there’s no obvious “dynamic” dispatch). In C++ there are some interesting ideas by Klaus Iglberger on implementing static dispatch via type erasure, which avoids the use of a vtable by using a combination of the strategy / bridge / prototype patterns.

    • @_noisecode
      @_noisecode  Год назад

      I’d love a link to Klaus Iglberger’s work that you’re referring to. In his CppCon 2022 talk that I just watched, he appears to implement the exact same approach that I did in the first half of this video-a type erased interface that does dynamic dispatch internally inside a static interface (and there are vtables in play for sure).
      Anyway yeah! I could have covered enum dispatch / tagged unions in this video too; although since those are constrained to a fixed set of types, whereas “true” dynamic dispatch can handle an open set of types, I guess I sort of consider that to be a bit more of an apples-to-oranges comparison. Maybe I’ll tackle it anyway in the next one though. :)

    • @meowsqueak
      @meowsqueak Год назад

      @@_noisecode there are several, it's something he likes to revisit year on year:
      ruclips.net/video/4eeESJQk-mw/видео.html
      ruclips.net/video/qn6OqefuH08/видео.html
      But if you search for "klaus iglberger type erasure" you'll find a lot more.
      It's good to hear that it might be the same thing as what you implemented, it has been a while since I watched any of those videos and I didn't make the connection.
      One thing I thought was really useful in your video is to learn that "dyn" isn't as expensive as "virtual" in C++. I tend to avoid virtual functions as much as I can, and I was naturally steering away from Rust's dyn for similar reasons, but it sounds like it's not as bad. I might have to become more willing to use it, since sometimes it's exactly what's needed. I wonder how dyn benchmarks alongside enum dispatch? Time to write some code methinks...

    • @_noisecode
      @_noisecode  Год назад

      You’ll have to let me know what you find! My guess is that enum vs dyn will both outperform the other on different benchmarks. They each have strengths and weaknesses versus the other, and on the whole I’d wager they’re similar enough that there’s no sense avoiding dyn when it’s the right tool for the job.

  • @jlewwis1995
    @jlewwis1995 Год назад

    Hm I wonder if it's possible to do dynamic dispatch without vtables? Obviously you need at least 1 layer of indirection since you're doing dynamic calls but less indirections obviously = more fast so that only 1 layer of indirection is ideal ;) I was planning out how I would make a game I'm working on recently and for the entities I thought up a way I could possibly do that but idk how scalable it is since I haven't actually gotten around to trying it yet lol

    • @_noisecode
      @_noisecode  Год назад +1

      You do definitely need a layer of indirection, but as I showed before doing the SpeakFunctions refactor, you _can_ store your function pointers directly inline in the wide pointer (making it a sorta Very Wide Pointer) which removes a jump to the vtable.
      Here’s a Rust crate that does basically exactly that for cheaper dynamic dispatch with the Fn trait: docs.rs/simple-ref-fn/0.1.2/simple_ref_fn/
      The dyno library I mentioned at the end also (I believe) gives you a mechanism for inlining some or all of the vtable into the wide pointer itself.

    • @kennythegamer1
      @kennythegamer1 Год назад

      Inheritance that obeys the Liskov Substitution Principle (id est, that doesn't have overriding) can be implemented using the old C style way: a switch on a type id enumeration.

  • @redhawk3385
    @redhawk3385 Год назад +1

    I've been doing rust for 5 months full time and i cant even see the skill ceiling yet.

  • @danser_theplayer01
    @danser_theplayer01 8 дней назад

    Looks like a proxy. When you implement a new thing you do it through a proxy and the proxy acting as a portal can write down what you just implemented, and then the proxy itself can complete and get off that stack.
    Sorry I'm speaking javascript nonsense here.

  • @rsnively
    @rsnively Год назад +12

    No one should be able to use inheritance until they watch this video

    • @kennythegamer1
      @kennythegamer1 Год назад +2

      Certainly, it is a nice video on the topic of indirection, but if you mean because one should be aware of the indirection cost of using inheritance, that isn't the case. Inheritance with overriding needs vtables, but Inheritance alone does not.

  • @duckydude20
    @duckydude20 Год назад

    composition over inheritance...

  • @henrycgs
    @henrycgs Год назад +1

    what the hell, you just manually added polymorphism to the language!
    I wonder what kind of unholy abomination one could do with this knowledge. is it possible to have OOP-style virtual methods and inheritance? not that I think that's a good idea at all, I kinda just love the idea of it, in a sadistic way.

  • @dmaster20ify
    @dmaster20ify 3 месяца назад

    This is not how Cpp does dynamic dispatch. Cpp has no rules how polymorphism must be implemented.

  • @nicholas_obert
    @nicholas_obert Год назад

    You should zoom on the code a bit more. It's hard to read from a phone screen

    • @_noisecode
      @_noisecode  Год назад

      Thanks for pointing that out and sorry about that! I'll keep that in mind in the future. :)

  • @cemgecgel4284
    @cemgecgel4284 Год назад

    The discussion about the separation of dynamic dispatch from the definition of the interface forgets the fact that if an interface and its consumers are designed for dynamic dispatch using it staticly does not make sense and vice-versa. Furthermore, if an interface is designed to be used with dynamic dispatch, its performance characteristics restrict what the consumers can do with objects that implement that interface.

  • @Lemmy4555
    @Lemmy4555 Год назад +2

    i don't understand why can't you just call speak while having the trait "Speak" in the generic of a function, this looks like a lot of shady code to invoke a method.

    • @_noisecode
      @_noisecode  Год назад +5

      That would give you static dispatch, and if that's all you need, then yes--definitely prefer that approach! (Well, probably--though it can lead to code bloat.) But sometimes you need to dispatch on unknown types dynamically (hence the existence of language features like &dyn references, after all)--imagine trying to make a Vec of objects that all implement Speak, so you can call .speak() on all of them later in a loop--and in those cases you really need an approach like the ones I showed in the video.

    • @Lemmy4555
      @Lemmy4555 Год назад +1

      @@_noisecode thanks!

  • @dexio85
    @dexio85 10 месяцев назад

    Gezzus, when shown side by side RUST looks completly unreadable compared to C++.

    • @_noisecode
      @_noisecode  10 месяцев назад +2

      It’s so funny, I feel the exact opposite. Now that I’m quite familiar with both languages, to me, C++ syntax is full of extraneous ceremony and clutter and noise, and Rust syntax feels neat and expressive and elegant. I know Rust’s syntax is a turnoff to a lot of people though. To each their own.

    • @dexio85
      @dexio85 10 месяцев назад

      @@_noisecodeC/C++ syntax is more verbose and thus relies less on the "magic" in the compiler. After some years in programming the "magic" is exactly the thing that one starts to avoid going for clarity, which for me RUST doesn't provide. Also you talked about ceremony - but that's exactly rust, mut, as_ref(), Box, and all of the other "incantations" that you someetimes need to throw in a long chain just to get some basic stuff done. I think the Idea to use RUST to help with C and driver/OS level programming to make it more safe and "provable" made some sense, but when you go into the user-space code the whole cost of RUST vs the benefits completly vanishes.

    • @_noisecode
      @_noisecode  10 месяцев назад +2

      To each their own once again I guess. :) I actually feel that C++ does way, way more magic behind the scenes than Rust-implicit conversions, SMFs, invisible copy constructor calls, invisible address-of and dereference (when it comes to references), etc. In Rust, pretty much everything is fully explicit except for moves, which are just baked into the language semantics and the rules are simple so you get used to it. And as far as ceremony, due to wrongly-chosen defaults, just e.g. declaring a C++ function requires writing out constexpr, [[nodiscard]], noexcept, and all these decorators that are largely unnecessary in Rust because it got the defaults right.
      Anyway, fun seeing different perspectives on this. :) Super interesting hearing your opinion on this stuff.

  • @dmitriidemenev5258
    @dmitriidemenev5258 Год назад

    The trick starting at 1:06 is an anti-pattern! The problem was the violation of Interface segregation principle (I from SOLID). Speak should have remained Speak. If someone needed Speak + something, they needed a trait that would extend Speak. Additionally, one could argue that there was a violation of the Single Responsibility Principle (P from SOLID). In this case, the introduction of unsafe was unjustified.
    Also, I wish there was at least a mention of enum dispatch.

    • @_noisecode
      @_noisecode  Год назад +1

      I don't really understand this critique. I did keep Speak--I just layered another thing on top of it, AnythingSpeak, that provides dynamic dispatch for implementers of Speak. Same thing the Rust language itself gives you with &dyn Speak. And, unsafe code is necessary to implement dynamic dispatch in this way.

    • @dmitriidemenev5258
      @dmitriidemenev5258 Год назад

      ​​​@@_noisecodeMaybe you should've given a very explicit warning "Please don't use this in production".
      I also don't see a way to implement dynamic dispatch this way without unsafe. What I say is that this way brings more problems to the codebase than good. And usage of SOLID principles with &dyn Trait is better than this antipattern in all situations that I can imagine.
      The actual violation that I mentioned is at 5:11.

    • @_noisecode
      @_noisecode  Год назад +5

      I think I made it pretty clear that you should use &dyn Speak instead of handwriting this code (I said so multiple times). It was an exercise to show what happens under the hood, not necessarily advice for real code… although as I also showed later in the video, knowing how to implement dynamic dispatch by hand is a useful tool for your toolkit.
      I guess at the timestamp you mention, you’re saying it’s bad that I added another method to Speak because that violates SOLID. If that’s the case, I think you missed the point of what I was saying. This video is not about best practices for designing a trait. Adding the .yell() method was specifically just to demonstrate that our wide pointer type, as written, had a size in bytes that was `O(number of trait methods)`.

  • @rsalmei
    @rsalmei Год назад

    Awesome video, thank you.
    Only I'd prefer a Rust video, I don't care about C++ so I had to skip its parts manually. Trying to win the graces of both audiences, you might end up losing both.

    • @_noisecode
      @_noisecode  Год назад +1

      I hope you watch the C++ parts next time! These two language communities both have lots to learn from each other (that was one of the main points of the video.. did you catch the anyhow example?). I personally love both languages and will likely keep making content involving both. But-even if you are only interested in Rust, one of the best ways to gain deeper insight into Rust is to learn about how Rust differs from other languages, especially a close neighbor like C++. To know what Rust is, you also need to know what it isn’t.

  • @whoopsimsorry2546
    @whoopsimsorry2546 Год назад

    The C++ does this using something called a vtable. So you pretty much implemented what C++ does under the hood, except in rust.

    • @sledgex9
      @sledgex9 Год назад +8

      You didn't finish the video, did you?

    • @whoopsimsorry2546
      @whoopsimsorry2546 Год назад +1

      @@sledgex9 well, it is what it is. I'll have to live in shame I guess

  • @twoolie
    @twoolie Год назад

    A pointer to a struct of function pointers... 🤔
    Congratulations, you just re-invented Haskell's typeclass dictionaries 😂

  • @pokefreak2112
    @pokefreak2112 Год назад

    This video would not be necessary if people would just program in C. In C you will naturally build the right abstraction for your use case instead of blindly relying on "useful" features that obfuscate what's going on under the hood.

  • @maximus1172
    @maximus1172 10 месяцев назад

    Welp, this is too high level for me, I got lost at PhantomData haha, gonna read more then come back to this video :)

  • @JaconSamsta
    @JaconSamsta Год назад +56

    Incredible stuff you are putting out.
    For me, there isn't much new information, but you always manage to present a slightly different way of looking at things, which has so far always been valuable.
    Your animations are spot on as well and make your videos an excellent resource that I'm eager to pass on.
    Keep it up!

  • @kinositajona
    @kinositajona Год назад +17

    Watching the metrics of this channel since it started putting out Rust content has been fun.
    You should upload a video on April 1st that explains how to do something in Rust the game, but explain it as if you are explaining some technical topic about Rust the programming language.

  • @KohuGaly
    @KohuGaly Год назад +30

    I wish Rust had better support for manually constructing vtables (ie. at runtime) that interfaces smoothly with dyn pointers. There are even places in standard library where they kinda had to awkwardly fudge it (looking at you std::task::RawWaker).

    • @conradludgate
      @conradludgate Год назад +6

      RawWaker exists because Rust has no concept of 'Owned Pointers' in core. There's no way to implement a Waker trait with a owned `wake(self)` function without assuming it's a Box or an Arc. (the Wake trait assumes it's an Arc)
      IIRC, the `*dyn Trait` concept that was floated around before is intended to fix this concept. But there's alternative ideas like `&own T`

  • @antonpieper
    @antonpieper Год назад +9

    19:40 I like that last quote
    class Inheritance { }
    class Evil : Inheritance { }

  • @nevokrien95
    @nevokrien95 Год назад +7

    Alot of the time when I make a c++ virtual I am going to use it only as a virtual.
    And probably going to be using it alot. So having that be less stack memory for abit extra heap memory is not the worse idea

  • @anushervontabarov8568
    @anushervontabarov8568 Год назад +9

    i didn't understand most of the video, but it sounds very interesting! hope someday I will be able to rewatch it and comprehend it fully :)

    • @_noisecode
      @_noisecode  Год назад +25

      This is such an awesome (and important) place to start; I have the same exact experience OFTEN when I'm exposed to brand new material I'm not comfortable with, and I truly believe it's a great way to "jumpstart" learning about a particular topic, even if you don't take much away on your first watch. It will plant seeds that will blossom later. Plus, after time passes and you later come back and find you understand things, it's an awesome, tangible marker of how much you've learned and grown in the meantime. Thanks so much for watching and I hope you really do come back sometime and share what now clicks that didn't the first time!

    • @nagarajankrishnamurthy3193
      @nagarajankrishnamurthy3193 Год назад +1

      ​@@_noisecodeI am 48 and out of industry for few years. Have done a bit of programming in other languages but mostly in javascript. Learning rust now. I know I can do it. I find almost every rust video such as this one has very useful and overwhelming at the same time. I wonder if there is a single source of information that can provide some sort of insight into possible complexity of grammer that the rust language allows. I have read The Book and understood all of it. But the moment I come across videos such as this one I find them to be at an entirely different depths. Hmm. I guess the only way to keep going is just to keep going.

    • @DFPercush
      @DFPercush Год назад +1

      The main takeaway is that there are two places you can store a vtable pointer: 1. In every reference to an object, or 2. in the object itself.

  • @JkaBG
    @JkaBG Год назад +3

    now I know why I should use anyhow in rust

  • @meanmole3212
    @meanmole3212 Год назад +3

    Gotta say it's been a long time since I have been this excited about watching a new youtube video.

  • @nerdycatgamer
    @nerdycatgamer 6 месяцев назад +1

    I remember actually coming up with the wide-pointer approach myself when leraning C after learning Java. I started thinking about how things are actually laid out in memory, and I wanted to design a way to do method calls on null objects because in java it would be really convenient if I could say 'foo.bar()' and have bar() check for null, rather than have to do 'if (foo != null) foo.bar()'. the polymorphism/dynamic dispatch was sorta an afterthought, and I really preferred it because, to me, it seemed like an implementation that very logically followed from interfaces, and not from inheritance (and I much prefer interfaces over inheritance).
    I suppose there isn't null in rust, so that benefit I thought of wouldn't be present here (though rust's null handling is obviously better). My only questioning now is how it is handled if a type implements multiple traits. is there an additional vtable pointer included in the wide pointer for each trait, or are they packaged together somehow?

    • @_noisecode
      @_noisecode  6 месяцев назад +2

      Because the trait/vtable is associated with the wide pointer, not the source object, there's no problem with multiple traits--if a type T implements both Foo and Bar, coercing it to a `dyn Foo` will create a wide pointer holding a vptr with Foo's methods, and coercing it to a `dyn Bar` will point to Bar's methods instead. A `dyn Foo` doesn't need to contain any information about Bar at all. So in other words, T basically has a separate vtable for each trait it implements, and the one that gets used is the one relevant to the wide pointer it is being coerced to.
      Rust supports combining multiple traits through trait "inheritance", e.g. `trait Baz: Foo + Bar`. If you then implement Baz for T and then coerce a T to a `dyn Baz`, you will get a pointer to a Baz vtable, which yes, will itself have Foo and Baz "sub-vtables" combined together in some way that the compiler deems best.

  • @richmondgnu
    @richmondgnu Год назад +3

    amazing details. thank you.

  • @Verrisin
    @Verrisin Год назад +1

    I still don't understand how OO implements interfaces ... You need a different vtable based on which Interface one is using it through ... but how are they all the same pointer in the instance?
    - I find the Rust approach much more sensible and easy to understand... - Probably the only drawback is atomic operations on a singe pointer work, and on a wide pointer? Who knows, probably not...

    • @_noisecode
      @_noisecode  Год назад +1

      In OO, you implement an interface by inheriting from it. In C++, if you have a class C that inherits from both A and B, the compiler puts A and B “subobjects” inside of C, and so if both A and B have vptrs, C ends up having two vptrs inside of it, one inherited from A and one inherited from B. The ‘main’ one is the one inherited from A (assuming A is first in the list of base classes), and in C’s constructor, it fills in that ‘main’ vptr with a vtable containing info about both A and B. But, when you upcast a C* to a B*, it’s B’s vtable that ends up getting used for virtual calls on that B*, which only contains info about B’s methods. (Interestingly, those methods will be “thunked” to offset the B* back into a C* before calling, basically by subtracting the offset of the B subobject.)
      This gets more complicated by virtual inheritance but we shall not speak of such evils here.
      Anyway yeah, this is another con of intrusive vptrs-you end up with even more vptr bloat when you use multiple inheritance, and that bloat is then transitive to anyone who inherits from you too. I remember once untangling a class hierarchy full of _empty_ classes that were using virtual functions and many base classes for some “cute” function composition stuff, and the leaves down at the bottom had like half a KB of vptrs, no joke.

    • @Verrisin
      @Verrisin Год назад

      ​@@_noisecode Thank you. Very interesting. So A* and B* are different pointers (!?) to different offsets of the struct ... This explains multiple inheritance in C++ in general, I guess - I never realized the pointer itself changes on cast...
      - Somehow, each time I learn a new thing about C++, it makes me like it less and less 😅 (your Rust usefulness example for this approach is good, but adding 100 pointers of bloat to an empty struct as you said it can ... just shows how bad of an idea it is if used by default...)
      - This makes me wonder how it works in Java etc. ... I think they are always the same pointer, regardless of interface...

    • @_noisecode
      @_noisecode  Год назад +1

      Yep, a pointer might need to be offset during a derived-to-base conversion (or vice versa) when multiple inheritance is involved. As a corollary, you *must* use static_cast or dynamic_cast (or implicit conversions where possible) for these types of conversions, since they are aware of this fact; reinterpret_cast or rogue C-style casts* will ignore it and just type-pun the address directly without offsetting, and will then lead to UB.
      I have no idea how Java implements this stuff; I pray it somehow avoids some of this mess. :)
      *C-style casts do the right thing when they select static_cast from the list of things they try; but if something goes awry (esp during refactoring) and they fall back to reinterpret_cast, you get UB. This is a big reason it’s a best practice to avoid them.

  • @Fjifjdjfkfjdhfijvu2
    @Fjifjdjfkfjdhfijvu2 Год назад +1

    3-4 days before, I asked question about dynamic dispacth in rust to chatgpt. And it gives cat, Dog and speak example :).