Garbage Collection (Mark & Sweep) - Computerphile

แชร์
ฝัง
  • เผยแพร่เมื่อ 17 พ.ค. 2024
  • How does memory management work? In C you had to manage things yourself, but modern languages take care of a lot of it for you - Laurence Tratt of Kings College London explains.
    More about Laurie: bit.ly/C_LaurenceTratt
    Laurence recommends the book 'The Garbage Collection
    Handbook: The Art of Automatic Memory Management' (2nd ed.) for those
    interested in exploring this subject in more detail.
    / computerphile
    / computer_phile
    This video was filmed and edited by Sean Riley.
    Computer Science at the University of Nottingham: bit.ly/nottscomputer
    Computerphile is a sister project to Brady Haran's Numberphile. More at www.bradyharan.com

ความคิดเห็น • 448

  • @pfefferle74
    @pfefferle74 ปีที่แล้ว +540

    As a C# programmer you often don't spend much time thinking about garbage collection because it just works silently in the background - until you start interfacing with native unmanaged code, and then you go though a hard school of troubleshooting, having to learn how the runtime actually manages your objects in memory and why it constantly keeps moving them around.

    • @syjwg
      @syjwg ปีที่แล้ว +6

      Finding thread local storage use in managed code was a pain because the GC is running in a separate thread than the allocating one.

    • @MZZenyl
      @MZZenyl ปีที่แล้ว +27

      True, it is surprising how long you can go without ever having to learn how the GC works, the differences between reference types and value types, as well as the entire topic of unmanaged memory (Marshal class, unsafe, pointers, stackalloc, Span/Memory, P/Invoke, etc.).
      In my experience, most C#/.NET development ends up being for the sake of a web service, in which case efficient memory management really doesn't matter, as any speed improvements you can make are outdone a hundred times over due to response times over the web. But when you do have a project where memory usage improvements do make a difference, boy can it make a difference. Even something as simple as using StringBuilder instead of string, and using it properly, can yield massive improvements.

    • @bbq1423
      @bbq1423 ปีที่แล้ว +2

      Sounds like you're referring to List etc, tip: instead of using pointers to elements, use an index instead, even if the pointers change, arr[42] will still be arr[42] (unless we remove/insert elements in middle).

    • @toby9999
      @toby9999 ปีที่แล้ว +24

      As a C and C++ programmer, memory management is always something to be considered from the get go. It's just an integral part of the development process. Never seen it as a problem.

    • @rreece90
      @rreece90 ปีที่แล้ว +9

      @@toby9999 With modern C++ memory management has become very intuitive. With full support for the RAII technique ('move' operators etc.), there is still no garbage collector (so no performance burden) and yet it feels like it's automatic, because there is almost never the need to manually clear memory anymore. It just gets freed, when a variable using it falls out of scope.

  • @exaaltare1170
    @exaaltare1170 ปีที่แล้ว +358

    This Gent has ability of explaining complex topics, in extremely simplified way, which is phenomenal. Please, 🙏 do more videos with him, diving in all possible topics.Respect

    • @vfryhn2
      @vfryhn2 ปีที่แล้ว +2

      Absolutely I loved every part of this man explaining such a complex topic

    • @rudiklein
      @rudiklein ปีที่แล้ว +1

      Even I understood and that's telling.

  • @njdarda
    @njdarda ปีที่แล้ว +55

    i love the clarity of Laurence's examples and explanations

  • @circuit10
    @circuit10 ปีที่แล้ว +103

    You didn't mention what people normally say is the main disadvantage of garbage collection which is that it pauses the program every now and then (but there are some clever ones that can run on a different thread)

    • @mr_waffles_the_dog
      @mr_waffles_the_dog ปีที่แล้ว +24

      That’s only true for stop the world allocators. There are numerous examples of concurrent collectors and interuptible collectors that can have hard real time requirements. In principle you can induce pathological behaviour from any GC, but you can do the same with refcounting or malloc.

    • @circuit10
      @circuit10 ปีที่แล้ว +2

      @@mr_waffles_the_dog I did say there were ones that can run on a different thread, I know there are incremental ones too but I guess those still technically stop the program, just for less time (but then so does malloc)

    • @greatwolf.
      @greatwolf. ปีที่แล้ว +3

      yea, the term used for that is 'stop the world' I believe.

    • @LickItTM
      @LickItTM ปีที่แล้ว +4

      Something I noticed playing big modpacks for Minecraft Java edition. It just stops for a few frames from time to time and allocating more ram than needed makes this problem way worse.

    • @9e7exkbzvwpf7c
      @9e7exkbzvwpf7c ปีที่แล้ว

      @@mr_waffles_the_dog "but there are some clever ones that can run on a different thread"

  • @coreymartin9630
    @coreymartin9630 ปีที่แล้ว +30

    Love that laptop, I've got one as well (It's called a Framework and is designed to be customizable and repairable)

  • @marksilverman
    @marksilverman ปีที่แล้ว +133

    Most modern computers maintain a virtual address space for each process. That means that pointers aren't really a direct reference to a "physical part of the chip". Inside the CPU, the address translation hardware converts the virtual address to a physical one. Pages of memory are swapped in and out as needed, so a process can use more memory than is physically present on the machine. That makes programming vastly easier in some ways and vastly more difficult when things go wrong.

    • @annyone3293
      @annyone3293 ปีที่แล้ว +37

      Laurence mentioned that they were simplifying that part. The video is about software after all.

    • @yonatanbeer3475
      @yonatanbeer3475 ปีที่แล้ว +13

      Yes. C is often called "close to the metal" when this is not really true.

    • @connorclark8945
      @connorclark8945 ปีที่แล้ว +19

      @@annyone3293 Fair, but he did also say that a double-free would cause other "good citizen" programs to malfunction, which just isn't very applicable to 99%+ of programs.

    • @gljames24
      @gljames24 ปีที่แล้ว +3

      @@yonatanbeer3475 It is if you're compiling for the processor directly instead of an operating system. OSes and microprocessors often use baremetal C/++ and Rust.

    • @phizc
      @phizc ปีที่แล้ว

      @@connorclark8945 and I also thought that read after free would cause a segmentation fault.. At least I think that would happen if the program tries to read memory that isn't allocated any more, but since malloc uses OS allocation methods under the hood, maybe the memory page is still "allocated" from the OS if there are multiple sub-allocations on that page. I don't know the nitty-gritty details of memory allocations.. I usually stick with C# 😅

  • @navalenigma
    @navalenigma ปีที่แล้ว +10

    32768 is 32k, 32678 isn't. I'm a right pedantic arse for pointing that out on this excellent video. A typo under pressure of typing on a live video. Oh I feel grubby pointing this out. I'll go write some code using GOTO as punishment.

  • @jvcmarc
    @jvcmarc ปีที่แล้ว +51

    this was really fun, i always wondered how garbage collectors work but never searched for it
    could you guys maybe do a video on different memory management strategies? like Rust's borrow checker?

  • @sanderbos4243
    @sanderbos4243 ปีที่แล้ว +10

    Laurence is probably my favorite person on the channel, he's able to simplify and explain things so incredibly well with a lot of humor

    • @ocamlmail
      @ocamlmail ปีที่แล้ว

      Hi, Laurence!

    • @meme-vw1vi
      @meme-vw1vi ปีที่แล้ว

      @@ocamlmail lol

  • @scbtripwire
    @scbtripwire ปีที่แล้ว +13

    15:56 Note: Turning off and on again is the time tested workaround for memory leaks, but definitely not a fix in itself, that's up to the developer. (I know this is what he meant, I'm just clarifying for others who might not know better.)

  • @paxrsi
    @paxrsi ปีที่แล้ว +80

    There are also some downsides to the garbage collection. In many cases, esp. smaller programs the user will not notice them. I am maintaining an enterprise application written in Java which needs to run on a machine with 1 TB of RAM (yes, terabyte) and there I did experience some problems. For example, the GC did sometimes run for more than an hour (yes, more than 60 minutes) and all connections to the outside world including the database ran into timeouts, because of the "stop the world" nature of the GC. That's the reason why the GC has all these fuzzy parameters to get control of those situations but as an user, you are just buying an application and you want to use it and not get an expert in Java GC to run it. It gets even more complicated with all these different JVMs available. The IBM JVM runs different to the Oracle JVM and the GCs have different parameters. So if someone is able to solve this in Oracle JVM with some cool parameter settings you may still struggle with the problem because these parameters simply do not exist in IBM JVM. Someone might argue to choose hard- and software from different vendors than IBM, but then Java is not write once run everywhere. In my opinion the GC is a tool to make the life of the programmer easier but in some circumstances the price is it will make the life of the user harder. However the user is the last one who should deal with memory management of the application.
    There are also other problems e.g. you cannot take advantage of CPU memory access optimization like prefetch.

    • @raterix2
      @raterix2 ปีที่แล้ว

      I'm curious. Is there any reason you would use a machine with 1TB RAM instead of multiple machines with smaller RAM, like 64GB?

    • @robocombo
      @robocombo ปีที่แล้ว +6

      I'm picturing you with a "thousand yard stare" like a combat stress victim

    • @flapjack9495
      @flapjack9495 ปีที่แล้ว +8

      @@raterix2 It's simpler. There's no running network interconnects between the systems and worrying if they're fast enough, building a communications subsystem for your software, etc. You just throw money at the problem. 1 TB sounds like a lot but it's really not - I managed relatively inexpensive ($20K?) systems at a small college that had a quarter terabyte of RAM each and could have taken more.

    • @aenguswright7336
      @aenguswright7336 ปีที่แล้ว +2

      I wouldn't go as far as to say that GC makes life harder for the user. Some programs would never have been written if it wasn't for java, javascript, go etc. However I would say that there are some applications where GC just isn't appropriate.

    • @sjzara
      @sjzara ปีที่แล้ว +3

      The GC is vital these days. Manual management of shared memory in multi-threaded applications is a total nightmare.
      As for the pause problem, commercial solutions for this have been available for a long time: check Azul’s products.
      These days the ZGC in standard Java solves these problems.

  • @mahdizarepoor8964
    @mahdizarepoor8964 ปีที่แล้ว +62

    I literally love your channel , the way you create videos, the instructors and the topics you make video about are just awesome . thanks for your serve to the community

  • @MladenMijatov
    @MladenMijatov ปีที่แล้ว +21

    So nice seeing framework laptop in the wild. Good job man! Excellent choice.

  • @Luredreier
    @Luredreier ปีที่แล้ว +32

    Sounds like a excellent time to address Rusts memory management.

    • @djazz0
      @djazz0 ปีที่แล้ว +4

      Or Nim’s ARC/ORC

  • @janblaha2023
    @janblaha2023 ปีที่แล้ว +4

    really happy to see the framework laptop

  • @Richardincancale
    @Richardincancale ปีที่แล้ว +41

    Really good account! Underneath there’s another story that’s also interesting - how should the operating system allocate memory - this was a subject of debate in the early days of OS design when memory was much more limited. Donald Knuth analysed three options: first fit (take the first free chunk that’s greater than the size needed), best fit (take the chunk that’s nearest in size to the desired amount) or a binary chop method called the buddy system. Somewhat non-intuitively the first fit works better than best fit for long term stability!

    • @warlockpaladin2261
      @warlockpaladin2261 ปีที่แล้ว +2

      I want to know more about "binary chop".

    • @oblivion_2852
      @oblivion_2852 ปีที่แล้ว

      I'm guessing that binary chop is because it's easier to find two blocks that fit the memory size than just 1

    • @Richardincancale
      @Richardincancale ปีที่แล้ว +11

      @@warlockpaladin2261 One key problem with memory allocation is fragmentation of memory - where you have memory divided up I to loads of bits that are too small individually to meet the demands being made. This is why first fit is better than best fit - it leaves pieces that might be useful for something else whereas best fit tends to leave a load of small useless bits. When memory is fragmented you can try and coalesce adjacent unused pieces to make larger more useful chunks. For a first fit or best fit this requires traversing a data structure along the whole length looking for places where addresses of the end of one block and the start of another are sequential. Using the buddy/binary chop method memory is repeated divided in two to get a piece just bigger than the size requested. The coalescing is much more efficient though as it requires traversing a binary tree rather than a linear search, which is much faster.

    • @DFPercush
      @DFPercush ปีที่แล้ว +2

      Fragmentation isn't really an issue on 64 bit machines. The OS can stitch together a bunch of 64K physical pages into a contiguous range in user space, and on 64 bit systems the address space will always have room to accommodate. If you look at the implementation of malloc, any request over 128K goes directly to the OS, so large allocations are going to be hardware mapped.
      The discussion of different strategies is interesting though. I've tried my hand at writing my own user mode allocator, where I basically do one large malloc to get a big block of memory from the OS then hand it out as needed. My strategy was, instead of keeping one linked list or tree of free chunks, I divided them into 64 buckets based on their size. Each bucket has the head of a linked list of free space blocks (or a nullptr). Free space will be added to the slot that's the highest power of 2 less than its size. So initially, perhaps only slot 20 has a 1 MB buffer available. As this is chopped up by allocations, it will start putting the remaining free space in the smaller buckets. When an allocation is requested, it looks at the bucket for the lowest power of 2 that's able to hold it, or greater. Link the blocks, make the new free block of leftover space the head of the linked list, and store in the appropriate bucket for its new size. Whenever a block is freed, it tries to consolidate it into a larger block. It looks at the metadata structures immediately before and after its address range. If it sees another free block, it consolidates them into one. The metadata struct also has a first and last marker, and if the newly consolidated free block has both the first and last flags, then the entire range can be returned to the OS. You'll notice that nowhere in that description did I mention searching through a list or a tree of blocks. Everything is constant time, except maybe finding a populated bucket, but that's at least in a cache friendly structure. It just pops the head off the list, pushes the leftovers at the head of another list, bing bang boom.
      P.S. The motivation for this was wanting to run C++ code in web assembly without the overhead of a huge runtime like emscripten. Wasm allows you to grow the size of the heap, which acts as the initial malloc.

    • @Richardincancale
      @Richardincancale ปีที่แล้ว

      @@DFPercush Agreed, this is really only a problem on machines not using virtual memory, and especially with extremely large address spaces.

  • @superjimnz
    @superjimnz ปีที่แล้ว +7

    Never is a strong word; there are many programs where you do know exactly what you'll need and never perform dynamic allocation, or at least only on the stack... no heap allocation. This is especially true in embedded programming.

    • @boagz3
      @boagz3 ปีที่แล้ว

      I would also argue that in many programs there are plenty of situations where you also know exactly how much memory you need or at least the upper bounds of the memory needed. This happens all the time in games for example

    • @harshsason3725
      @harshsason3725 5 วันที่ผ่านมา

      Yup

  • @danielbrenot5173
    @danielbrenot5173 ปีที่แล้ว +9

    I immediately noticed the framework laptop. Nice to see other people using them, especially in more popular videos like this one!

  • @hasan_haja
    @hasan_haja 5 หลายเดือนก่อน +1

    On a completely unrelated point to garbage collection, I love seeing Framework laptops and Neovim in the wild!

  • @TheBigBemaster
    @TheBigBemaster ปีที่แล้ว +22

    You guys should speak to an expert about Rust memory management. It’s a fascinating way to do memory management without traditional GC

    • @DanCojocaru2000
      @DanCojocaru2000 ปีที่แล้ว +2

      I mean, it’s just reference counting except limiting the count to 1.

    • @Aidiakapi
      @Aidiakapi ปีที่แล้ว +13

      ​@@DanCojocaru2000 Not only is that technically seen inaccurate (it's not a limit to 1, each value has exactly 1 owner at any time, and therefore no references need to get counted), it's also stating the problem, preventing 0 or more than 1 "owners" that free a resource (in other words, memory leaks or double frees), as if that's the solution used.
      The "novel" technique in Rust isn't that it keeps a single owner though (C++ does exactly the same with its RAII), it's the way it tracks object lifetimes, and the way it (dis)allows aliasing and unchecked mutation.

    • @zactron1997
      @zactron1997 ปีที่แล้ว

      @@DanCojocaru2000 Yeah that's about as unhelpful a statement as saying a computer is just angry sand. Rust's lifetime system is (to my knowledge) entirely unique and non-trivial to reproduce in another language (especially at compile time!). Combined with the borrow checker (unlimited read-only references XOR one mutable reference), and the ownership system (similar to RAII from C++), Rust is able to provide basically the highest quality statically analyzed code you could write in C/++, but as a basic feature of the language guaranteed to be performed.

  • @IHateHandlesWayTooMuch
    @IHateHandlesWayTooMuch ปีที่แล้ว +7

    Noticed they're using a framework laptop. Props to them, go-go pro-repair community

  • @DennisKovacich
    @DennisKovacich ปีที่แล้ว +6

    My first experience with garbage collection was in AppleSoft BASIC on an Apple II+ circa 1982. I was working on a program that read text from a file and put it onscreen, but it had to find where words ended and insert returns so no words were split at the end of one line and the beginning of the next. AppleSoft programs sit at the bottom of RAM, and numeric variables are stored from the end of the program up while strings are stored from the top of RAM down. As strings are changed, the old value stays where it was and the new value is added. This program (which my boss had written) ran fine for a while, but would periodically pause for a couple minutes while producing a screen of text. It turned out AppleSoft had run out of RAM, and was moving all the current string values back to the top to clear out the old values that weren’t being used anymore. And the way it was written, building a word one character at a time until it found a space, there were A LOT of old strings! We solved the problem by using AppleSoft’s command to trigger garbage collection manually at the end of a page before printing “Press RETURN to continue.” That was fun to figure out, considering I barely even knew what a computer was two years earlier.

    • @kc9scott
      @kc9scott ปีที่แล้ว +1

      Another Applesoft user here. That type of garbage collection also gets rid of fragmentation, something not discussed in this video. It relocates all the existing objects to be together at one end of memory, which is why it tended to take so long.

    • @DennisKovacich
      @DennisKovacich ปีที่แล้ว

      @@kc9scott, well, when we started doing it manually, it took a lot less time, presumably because there was less to move.

    • @kc9scott
      @kc9scott ปีที่แล้ว +1

      @@DennisKovacich Same experience here. You quickly learn to routinely call the garbage collector as a preventive measure. Even then, it would take some time, like a second or two.

    • @DennisKovacich
      @DennisKovacich ปีที่แล้ว

      @@kc9scott, that’s why we put it at the end of a page/screen. A few seconds with a full screen to read was a lot better than a few minutes halfway through displaying it! I believe ProDOS had its own garbage collection that was faster than AppleSoft’s when it came out later.

  • @greatwolf.
    @greatwolf. ปีที่แล้ว +4

    would have like to see him go into RAII techniques used in modern C++ and how that contrasts with gc approach of memory management.

  • @_azterisk
    @_azterisk 6 วันที่ผ่านมา

    Finally understand the basics of memory leaks
    Great video, thanks

  • @BiggFanDDD
    @BiggFanDDD ปีที่แล้ว +4

    Great video! I've always wondered how garbage collection worked. Thanks!

  • @Waschlack
    @Waschlack ปีที่แล้ว

    Really interesting topic and awesome explanation!
    I personally only knew about the ref counter and didn't imagine there to be such an interesting and better option out there

  • @lilwilly5839
    @lilwilly5839 หลายเดือนก่อน

    This is the most helpful video I've seen in a long time, thank you

  • @tan.nicolas
    @tan.nicolas ปีที่แล้ว +10

    Computerphile is such a gem! cheers from Chile and thanks for all the top content you share!

  • @jeremiahblum7833
    @jeremiahblum7833 ปีที่แล้ว +1

    I was just studying this in my Java course and this answered all my questions, thanks!

  • @Syntax753
    @Syntax753 ปีที่แล้ว +2

    Brilliant! Thanks for covering a subject misunderstood by so many devs these days

  • @dopplereffect7325
    @dopplereffect7325 ปีที่แล้ว

    thanks, i like the way you explained everything , C was my first programming language, we only talked about memory , when we were dealing with pointers and variables , i had some understanding but this is new knowledge, a million thanks

  • @msclrhd
    @msclrhd ปีที่แล้ว +16

    Garbage collection is useful for memory management, and can also be helpful w.r.t. performance if allocating a lot of objects and releasing them at the same time. It is less helpful for other resources (database connections, file handles, etc.). There are techniques to help make resource management easier in garbage collected languages (closeable objects, scope blocks/scoped try, etc.), but I prefer the C++ approach of closing the resource in the destructor, which happens when the object goes out of scope (typically at the end of the function). It would be interesting to see if a programming language has both in a way that is easier to use -- I quite like Kotlin's "use" extension method, but it can get complicated with using multiple resources in a single function.

    • @NuclearCraftMod
      @NuclearCraftMod ปีที่แล้ว +2

      As others have mentioned in other comment threads, I recommend giving Rust a go. It can feel a bit awkward and restrictive at first, but it’s worth the time.

    • @AntonyMBenedict
      @AntonyMBenedict ปีที่แล้ว +4

      I agree. I do find C++ RAII and reference counting to be much better and predictable compared to GC. That is why it is still preferred in computationally intensive applications.

    • @NuclearCraftMod
      @NuclearCraftMod ปีที่แล้ว +1

      @@AntonyMBenedict When you don't need to be completely optimal though, a GC allowing you to not have to think about it, even at the relatively simple level of RAII, can be quite nice :P

    • @stereopolex
      @stereopolex ปีที่แล้ว

      Yeah, but there's problem when destructor has to do IO and it can block a thread or crush. C# has a "using " statement/block which marks when the "destructor " executes or "await using" which does same but in multithreaded environment

  • @owlmostdead9492
    @owlmostdead9492 ปีที่แล้ว +5

    +1 for framework

  • @onlyeyeno
    @onlyeyeno ปีที่แล้ว +3

    Thanks for another great "little video" on a "giant topic" :) And I can only agree with all the other commenters who have "said" that You have here got (another) great presenter and explainer!
    And I would also love to see him present more topics that he finds interesting.
    Best regards.

  • @slayerofyounglings66
    @slayerofyounglings66 ปีที่แล้ว +2

    You all should check out CJDNS and how Delisle sets up a fairly complex and mostly accurate inheritance-based memory system. It even does a decent job at error handling. It's mostly in C and python with more rust being added over time.

  • @silverchairsg
    @silverchairsg ปีที่แล้ว +2

    Speaking of the turning off and on trick, here's a joke.
    There are four engineers traveling in a car; a mechanical engineer, a chemical engineer, an electrical engineer and a computer engineer. The car breaks down.
    “Sounds to me as if the pistons have seized. We’ll have to strip down the engine before we can get the car working again”, says the mechanical engineer.
    "Well”, says the chemical engineer, “it sounded to me as if the fuel might be contaminated. I think we should clear out the fuel system.”
    “I thought it might be a grounding problem”, says the electrical engineer, “or maybe a faulty plug lead.”
    They all turn to the computer engineer who has said nothing and say: “Well, what do you think?”
    He thinks for a moment. “I know!" he says. "Let's all get out of the car and get back in again.”

  • @duxoakende
    @duxoakende ปีที่แล้ว +2

    Finally a video on this topic! Been waiting so long!

  • @marsgal42
    @marsgal42 ปีที่แล้ว +12

    I've spent a lot of time tracking down memory leaks in C programs. I'm currently doing some C# development. With user interface code, databases and REST APIs I'm spraying objects and memory all over the place, but it doesn't (usually...) get confused.

  • @olivierbegassat851
    @olivierbegassat851 ปีที่แล้ว +2

    I enjoy this guy's style

  • @dokie8260
    @dokie8260 ปีที่แล้ว +2

    There is also Rust, which prevents that kind of errors(doesn’t need malloc/free) and doesn’t have a garbage collector.

  • @7guitarlover
    @7guitarlover ปีที่แล้ว

    I wish Laurence Tratt was my teacher ! So simple and Lucid explanation.

  • @fahnub
    @fahnub 4 หลายเดือนก่อน

    Explained in simplest way possible

  • @vincentouwendijk3746
    @vincentouwendijk3746 ปีที่แล้ว

    Great video, which explains some annoying and hard to explain problems I experienced in the past :)

  • @a_maxed_out_handle_of_30_chars
    @a_maxed_out_handle_of_30_chars ปีที่แล้ว +1

    wow, simple and to the point

  • @-.._.-_...-_.._-..__..._.-.-.-
    @-.._.-_...-_.._-..__..._.-.-.- ปีที่แล้ว

    I'm a hobbyist game designer using Unity. When I switched to C# from C++ years ago, I thought memory management was something I'd never need to worry about again. Then I ran into lag caused by garbage collection and learned memory management was still my responsibility. It's simple, though: you just need to reduce the amount of garbage created. With C#, garbage is created every time the _new_ keyword is used (except with struts). So, in regards to efficiency, best practice is to keep the _new_ keyword (besides with struts) outside of loops and frequently called methods.
    It's cool to see how garbage collection works behind the scenes. I'm always learning. If anyone has any corrections or tips, please clue me in.

  • @pokemaniac3977
    @pokemaniac3977 ปีที่แล้ว +3

    Thanks for the video

  • @marcelijankowski9593
    @marcelijankowski9593 6 หลายเดือนก่อน

    Great explanation!

  • @sambenjamin7515
    @sambenjamin7515 ปีที่แล้ว

    Great video! Thanks for it.

  • @TheUglyGnome
    @TheUglyGnome ปีที่แล้ว +10

    1:18 Yes. You are really simplifying it. "malloc" and "free" are not interface to the operating system, but to clib. clib then does ir's own housekeeping and calls OS services as required ("brk" system call in Unix-like systems). And even OS service is not allocating chip memory in any modern OS, but virtual memory.

    • @capability-snob
      @capability-snob ปีที่แล้ว +1

      Libc is traditionally considered "part of the operating system" in the same way the shell is. Each libc bakes in some expectations on the kernel and system services in use. It's a fairly modern concept to have more than one libc target the same system.

    • @stensoft
      @stensoft ปีที่แล้ว +1

      And in modern operating systems, a program can't free memory of another program, programs going haywire are detected and dealt with (e.g. by refusing to give it more memory), Android even can restart the program while trying to look like nothing happened. But these are still only tools to limit the impact when things go wrong.

    • @Aidiakapi
      @Aidiakapi ปีที่แล้ว +1

      Everything in this video is simplified to a trivial point, but if you were to go in-depth on every point, this video would be at least dozens of hours long.

    • @steve_j_grundon
      @steve_j_grundon ปีที่แล้ว

      *Yes* ... I also had to grit my teeth and try to just "let it go", for the sake of brevity and "clarity of concept" (for the average viewer). Argh! It hurt. 😀😀

  • @patdbean
    @patdbean ปีที่แล้ว +4

    Many early digital CCTV systems would reboot once every 24 hours (the user could pick the time) so that the system would not run out of memory.

  • @seedmole
    @seedmole ปีที่แล้ว

    My last memory leak was from leaving the text viewing window open in Pure Data when using a nonquantized midi looper I built. Didn't expect it to, but apparently any memory used to store text is retained once that text is replaced if the window for viewing it is still open. Found myself staring at several gigabytes from just kilobytes of text data.
    And yeah, always turn off and on again. Last night I booted up all my synths too quickly (my retrospective take) and one of them was responding veeery strangely to midi signals -- somehow it was behaving as if it was receiving Control Change and Program Change signals when I was only sending Note, Pitch Bend, and Modulation Wheel signals. Sure enough, a quick off-and-on-again cleared that right up (though not until after I checked some other things first... by turning them on and off).

  • @MiniArts159
    @MiniArts159 ปีที่แล้ว +1

    Shoutouts to the Framework laptop!!!!

  • @yogiturtleseraph8208
    @yogiturtleseraph8208 ปีที่แล้ว

    The simpler mechanism used for memory management is to open/close scope and declare variables in that scope.
    Then another mechanism is to call a function.
    Most programs could in theory be written using only these two mechanisms, although it might be a bit clunky; and a continuation mechanic doesn't hurt either.

  • @reddcube
    @reddcube ปีที่แล้ว +7

    I like that he is using a Framework laptop

  • @ZedaZ80
    @ZedaZ80 ปีที่แล้ว +1

    The syntax highlighting and color scheme is so pretty 😍

  • @ecdhe
    @ecdhe ปีที่แล้ว +6

    Python is using the reference counting method for its objects, but is using a GC for orphan reference cycles.

    • @mr_waffles_the_dog
      @mr_waffles_the_dog ปีที่แล้ว

      Yeah, I came to say: isn’t Python refcounts with a cycle breaker?

    • @barneylaurance1865
      @barneylaurance1865 ปีที่แล้ว

      I think PHP does the same - except that most PHP programs are so short lived that there's no need to actually run the GC to collect cycles. They must all be be collected automatically at the end of the PHP script (even if the actual process is continuing, PHP objects not traditionally shared between separate script invocations)

    • @capability-snob
      @capability-snob ปีที่แล้ว

      That's a great description of cpython. Other python implementations often do variations on mark&sweep.

    • @barneylaurance1865
      @barneylaurance1865 ปีที่แล้ว

      @blot Yes, PHP is mostly run inside a web server, but in the most common setup the web server launches a separate invocation of the PHP 'script' in response to each web request from the browser. When that request is dealt with either PHP's shutdown routine, or the web server that PHP is running inside will I think free all memory allocated by that script. Objects are not shared from one script invocation to another.

  • @elliotmacneille3446
    @elliotmacneille3446 11 หลายเดือนก่อน

    I would have liked to see some mention of the Big O complexity of garbage collection and why we expect programs running malloc and free to be fundamentally faster than programs with automatic garbage collection. This can be a major factor in choosing programming languages; languages that allow you access to 'bare metal' memory management are typically be better options for high performance programs.

  • @ShALLaX
    @ShALLaX ปีที่แล้ว +1

    Non-determinism is usually a bigger problem than messing up forgetting a root. If you want to write high-performance software, you can usually see random dips in performance when garbage collection occurs. This is because the garbage collection routine is usually blocking.

    • @darkengine5931
      @darkengine5931 ปีที่แล้ว

      We avoid it in my industry (real-time computer graphics) partially for that reason. The other reason is that it's actually very easy to create logical memory leaks using GC. For example, a scene might have a shader that wants to reference a texture so the programmer naively stores a strong reference to it. Then the user requests to remove the texture from the scene at which point the texture memory should be freed (these could be ultra high-res HDR textures with 32-bit channels taking hundreds of megabytes of DRAM), but it's not freed because that particular shader is still storing a strong reference to it and failed to also handle that user event even the scene properly handled the event and removed the texture reference. Then the memory for that texture only gets properly freed when the user removes not only the texture but also the shader when merely removing the texture should have sufficed.
      In a language like C, there would be no memory leak in this context. Instead we get a dangling pointer crash, and that might sound worse than a memory leak but in real-time applications, the hard crash is often preferable because logical leaks are disastrous for performance and also extremely difficult to detect (they're like stealth bugs eluding our unit and integration tests and we don't have tools like valgrind to point them out to us). Meanwhile a segfault is trivial to detect and reproduce consistently, especially with sound testing procedure.

  • @csibesz07
    @csibesz07 8 หลายเดือนก่อน

    We need to write a garbage collector that finds corrupted politicians.

  • @bishan_8617
    @bishan_8617 ปีที่แล้ว +1

    I respect the C with vim on the framework

  • @sixpooltube
    @sixpooltube ปีที่แล้ว

    God bless you for this video and channel

  • @martijn3151
    @martijn3151 ปีที่แล้ว +1

    As a concept GC works wonderful. And in a lot of practical applications as well. But as with most concepts: there is always a downside. And with GC there is a big one: speed. When a speed and frame rates are to be considered, GC is usually terrible. Your game runs fine and super smooth and all of a sudden bam! GC kicks in and gone is your frame rate.

  • @gfrewqpoiu
    @gfrewqpoiu ปีที่แล้ว +10

    Maybe Nim would actually be an interesting case study here, since they have multiple switchable Garbage Collectors or manual memory management and it transpiles to C code.

    • @PouriyaJamshidi
      @PouriyaJamshidi ปีที่แล้ว

      Nim indeed is special

    • @capability-snob
      @capability-snob ปีที่แล้ว

      Tratt works on pypy, which comes with loads of collectors and collector options. It's a gc engineers abstract dream.

    • @FrankHarwald
      @FrankHarwald ปีที่แล้ว

      Indeed. Recent Java, Python versions have these too, as well as many C++ dynamic memory management libraries, & Nim reuses what its C/C++ or JavaScript back-end compiler provides & exports as memory allocators through compile flags.

  • @michamaj6290
    @michamaj6290 ปีที่แล้ว +1

    Very nice Framework laptop!

  • @blenderpanzi
    @blenderpanzi ปีที่แล้ว +5

    Another problem is that the garbage collector needs to stop the program while it is marking and sweeping. There are optimizations on that, so that it will maybe only stop on a per thread basis and only for a very short amount of time, but it still can introduce tiny stutters in certain very high performance real time applications, which is why some engineers don't like to use such languages for such applications (or at least not for certain parts of such applications).

    • @rudiklein
      @rudiklein ปีที่แล้ว +1

      I was wondering about that ("what if something changes between marking an sweeping?") and you answered my question.

  • @585ghz
    @585ghz ปีที่แล้ว

    thanks!! nice lesson

  • @krazymir
    @krazymir 8 หลายเดือนก่อน

    Super cool laptop! Go Framework!

  • @tablettablete186
    @tablettablete186 ปีที่แล้ว +2

    Now we need one with Reference Counting! (5:20)

    • @DanCojocaru2000
      @DanCojocaru2000 ปีที่แล้ว

      The compiler inserts hidden code that increases or decreases the count. That’s basically it.

  • @PixelOutlaw
    @PixelOutlaw ปีที่แล้ว +1

    Like most ideas in computing, the origin is lost to modern trends. But we can look back to Lisp for the first garbage collectors. And quite a few other things.

  • @sashapetrenko74
    @sashapetrenko74 ปีที่แล้ว +2

    Great video, as always! I'd like to get a better grasp as to why developers over time have had a love-hate relationship with GCs. When I learned about it, garbage collection was almost a naughty phrase, but it seems that even problems arising from GCs come from developer abuse just as much as with with manual memory management. I see GCs as a tool just as anything else that has its uses depending on the application.

    • @dylan2452
      @dylan2452 ปีที่แล้ว +1

      I think that because garbage collection is so tied to the language, it’s not a tool you can choose to use or not use. If you don’t have it you wish you did at times, but if you do you end up fighting it sometimes.

  • @carpediemcotidiem
    @carpediemcotidiem 12 วันที่ผ่านมา

    00:00 Garbage collection automates memory management
    02:12 Memory management can go wrong in several ways
    04:14 Automatic memory management simplifies programming
    06:13 Garbage collection is a common automatic memory management technique.
    08:29 Garbage collection algorithms automatically deallocate memory.
    10:32 Garbage collection is a process of freeing up memory
    12:33 Dynamic memory allocation allows programs to allocate memory as needed.
    14:24 Garbage collectors optimize memory usage
    Crafted by Merlin AI.

  • @DetectiveConan990v3
    @DetectiveConan990v3 13 วันที่ผ่านมา

    that was a lot more simple that I thought

  • @quillaja
    @quillaja ปีที่แล้ว +1

    Is that a Framework laptop? Nice!

  • @Gooberslot
    @Gooberslot ปีที่แล้ว +2

    Garbage collection definitely has a performance impact though.

    • @warlockpaladin2261
      @warlockpaladin2261 ปีที่แล้ว

      Which is why it's best to run in the background.

  • @edwardpurwanto7787
    @edwardpurwanto7787 ปีที่แล้ว +3

    I feel like this video really needed an example where reference counting fails but mark and sweep works.

    • @mandolinic
      @mandolinic ปีที่แล้ว

      Create two objects, each one pointing at the other. Then set both root pointers to null. Both objects should be swept away but because each one is being referenced by the other their ref counters are 1 instead of 0, so neither gets cleared away. 🙄

  • @pierreabbat6157
    @pierreabbat6157 ปีที่แล้ว +3

    Can you explain how memory management works in Haskell (it's GC, but with immutable data) and Rust?
    How does a garbage collector know what in an allocated block of memory is a pointer? In C++, pointers, 8-byte integers, and 8-byte reals can be in any order, and a bunch of bits could be valid as more than one of them.

    • @bluesillybeard
      @bluesillybeard ปีที่แล้ว

      Rust doesn't manage memory at runtime using a garbage collector or anything (unless the programmer implements it themself)
      The Rust compiler enforces some extra rules that make it harder to accidentally forget something.
      Languages with a garbage collector add information about which variables are pointers into the compiled output, so the garbage collector knows what's a pointer and what isn't.

    • @capability-snob
      @capability-snob ปีที่แล้ว

      The original paper on the Spineless Tagless G-Machine outlines the original memory layout for Haskell: the mark procedure for a function is referenced from each thunk. There have been some cool changes since then, but it's a great read.

    • @FrankHarwald
      @FrankHarwald ปีที่แล้ว

      Haskell is a different beast entirely. Not just is (safe Haskell) it a functional language, but it is also lazy-evaluating everything per default. This means nothing, except for references to functions & definitions (called thunks), is evaluated (computed) just because it is used anywhere _until_ something also requires the result, recursively from the outside inwards, & not just for memory management but for all function evaluations (computations) unless some function is explicitly marked as evaluate, is a bang pattern or uses strict data types. Getting that program semantic to transpile to a (stateful) machine-executable form requires different kinds of compiler-abstractions than most imperative languages (C/C++/Java/Python): In particular the Glasgow Haskell compiler is based on an intermediate language/abstract programming model called "The Spineless Tagless G-machine" which works differently to tree- or DAG-based IL used in compilers for imperative languages and does even more things & transformations internally than imperative compilers do which means it's really difficult to say how a Haskell program relates to the actually used memory allocations operations of both the operating system as well as runtime libraries it's running on except for a few synthetic cases until it is actually running.

    • @FrankHarwald
      @FrankHarwald ปีที่แล้ว

      Rust's dynamic (which is what this video is about) memory management (heap allocator, Box-ed in Rust speak) doesn't work so differently to how heap alloctors in other languages work. What Rust does differently to almost all other languages is its static memory allocation, that is, when the memory management usage is fully known at compile-time.

  • @n0kodoko143
    @n0kodoko143 ปีที่แล้ว

    Awesome 👍

  • @NoahSpurrier
    @NoahSpurrier ปีที่แล้ว

    When I was a C programmer I used static arrays whenever possible. It wasted a bit of memory, but my code never had memory leaks.

  • @PaulWilkinsNZ
    @PaulWilkinsNZ ปีที่แล้ว +5

    1:48 It doesn't really matter for his example, but 32768 is the figure that would normally be used instead of 32678

    • @jhonbus
      @jhonbus ปีที่แล้ว +2

      Haha, that one sprung out at me too. I said "You spelled 32K wrong!" before realising "spelling" wasn't quite the right word.

  • @sigstackfault
    @sigstackfault ปีที่แล้ว +2

    Oh hey it's a Framework!

  • @manon-gfx
    @manon-gfx 2 หลายเดือนก่อน

    Another downside of garbage collection is performance issues in real-time applications.
    In games you can see a couple millisecond longer frame due to the garbage collector, resulting in frame spikes. This is why most games still use manual memory management.
    Although you can see a shift happening to reference counted memory management happening in the less performance critical parts of the code.

  • @user-ht7yl5lt9q
    @user-ht7yl5lt9q หลายเดือนก่อน

    Use Delphi to programming , don't need to manage the memory by you, it can auto manage. But the video is explain it how to works, it is good

  • @cgazzz
    @cgazzz ปีที่แล้ว +1

    Didn't really mention the C++ way of using movable unique_ptr lvalues and reference rvalues. No reference counting, no explicit freeing, as long as data structures are acyclic

  • @guilherme5094
    @guilherme5094 ปีที่แล้ว

    Really nice👍

  • @AllExistence
    @AllExistence 10 หลายเดือนก่อน

    Freeing someone else's memory sounds absolutely hilarious.

  • @nagesh007
    @nagesh007 ปีที่แล้ว

    Amazing 😍

  • @pdform
    @pdform ปีที่แล้ว

    They should definitely make a video about RAII for contrast

  • @lukaswerner4390
    @lukaswerner4390 ปีที่แล้ว +5

    What program was used to draw in the screen?

  • @420nyk
    @420nyk ปีที่แล้ว

    Marvellous insight.. great content.thanks

  • @blablubb1234
    @blablubb1234 ปีที่แล้ว

    An then there’s Rust, which doesn’t have a garbage collector nor reference counting, but still does safe memory management for you.

  • @henrycgs
    @henrycgs ปีที่แล้ว +3

    obligatory “rust devs laughing in the back” comment.

  • @jongeduard
    @jongeduard ปีที่แล้ว +4

    Not mentioned in the video, but the concept of all those tracing garbage collectors of Java and C# is getting somewhat obsolete as well (even though they are amazing technologies nevertheless). What Rust 🦀 does is kind of going back to the C/C++ way, but then everything is now compiler generated, combined with, more importantly, a ton of language rules: memory ownership and mutability rules.
    The most amazing part is that Rust solves 2 categories of problems at the same time: memory management and concurrency management.
    Just think about the double free example (which can also be caused by 2 threads using the same block of memory). This won't byte you in Rust at all, because you simply can't make that mistake, because of all the borrowing rules.
    Those guys who invented what's in Rust language are very, very smart people. Amazing programming language.

  • @ajonescouk
    @ajonescouk 10 หลายเดือนก่อน

    Just wondering how the "double free" situation would free memory for a different task on any sort of modern architecture? Surely the memory allocated by malloc will be virtual and the OS knows which process is calling free.
    I can see why it would possibly happen for a thread on the same process.

  • @spotandjake1008
    @spotandjake1008 ปีที่แล้ว

    Reference counting can handle cycles its just a harder problem to solve that requires some more compile time analysis.

  • @juansolo1617
    @juansolo1617 ปีที่แล้ว

    Memory leaks don't happen if you're aware of the control pathways and make sure to release unused memory. The overhead of the garbage collector isn't necessary, really, other than Rapid Application Development where someone's trying to pump out code quickly without thinking about the hardware aspect. In a way it can be faster than heap allocation but overall I think the heap wins out for efficiency. Often times with GC you need to use handles to memory, locking memory before local use. With direct allocation and management that's not a thing... you just have a direct real pointer to data, and there's no sweeping cycles (or calculations made for initiating the sweep).

  • @laughingvampire7555
    @laughingvampire7555 2 หลายเดือนก่อน

    and he doesn't talks about the really most common garbage collector, arenas, this is used with php, the most dominant backend language in the internet, and Go is trying them. Erlang has independent runtimes per green thread so when one of those dies all its stack is collected, so technically, it is a type of arenas that do reference counting.

  • @rob876
    @rob876 ปีที่แล้ว +1

    Minor point - 1:57 32678 bytes is not 32 KB, 32768 is.

  • @tristanwegner
    @tristanwegner ปีที่แล้ว +3

    I get that the Operating system cannot free memory a program claimed, because it has no insight what the program wants to do with it. But what I don't understand is how the OS can allow program A to wrongly "free" memory that now belongs to program B. Isn't the OS supposed to say "sorry A", this memory is not allocated to you right now, so you have no rights to it. ? Isn't it one of the central task of an operating system?

  • @microcolonel
    @microcolonel ปีที่แล้ว +4

    Really like the Rust memory model. Better than malloc+free but not unpredictable like GC.

  • @andregeraldo6556
    @andregeraldo6556 ปีที่แล้ว

    So coooooool!