demystifying the secret structure you've been using all along

  Рет қаралды 91,183

Low Level Learning

Low Level Learning

Күн бұрын

Programming is amazing. Computers allow us to do things that otherwise would be impossible. But sometimes, the code that we write feels like MAGIC. How does all of this stuff work?
Let's talk about how stacks work.
🏫 COURSES 🏫 Check out my new courses at lowlevel.academy
📰 NEWSLETTER 📰 Sign up for our newsletter at mailchi.mp/lowlevel/the-low-down
🛒 GREAT BOOKS FOR THE LOWEST LEVEL🛒
Blue Fox: Arm Assembly Internals and Reverse Engineering: amzn.to/4394t87
Practical Reverse Engineering: x86, x64, ARM, Windows Kernel, Reversing Tools, and Obfuscation : amzn.to/3C1z4sk
Practical Malware Analysis: The Hands-On Guide to Dissecting Malicious Software : amzn.to/3C1daFy
The Ghidra Book: The Definitive Guide: amzn.to/3WC2Vkg
🔥🔥🔥 SOCIALS 🔥🔥🔥
Low Level Merch!: lowlevel.store/
Follow me on Twitter: / lowleveltweets
Follow me on Twitch: / lowlevellearning
Join me on Discord!: / discord

Пікірлер: 136
@RedStone576
@RedStone576 5 ай бұрын
im in foo rwar xd
@styx1024
@styx1024 5 ай бұрын
teehee im in main
@ehrenmann69
@ehrenmann69 5 ай бұрын
int z = foo();
@user-by7rx8ud5w
@user-by7rx8ud5w 5 ай бұрын
I like feet (I'm heterosexual)
@ttmso
@ttmso 5 ай бұрын
}
@stefans.6858
@stefans.6858 5 ай бұрын
How does it look?
@mytechnotalent
@mytechnotalent 5 ай бұрын
I always recommend my students to your channel the way you break down the basics are so valuable for building blocks.
@cancername
@cancername 5 ай бұрын
The content is often subtly wrong, but mostly fine.
@Basement_crusader
@Basement_crusader 4 ай бұрын
That’s a lowkey self own. While it’s good you recognize your own limitations in teaching, you’re kind of getting in your students way. The professors I’ve hated the most were the ones that couldn’t bother themselves to lecture coherently and put that burden on some KZbinr.
@petrlaskevic1948
@petrlaskevic1948 5 ай бұрын
For me as a beginner to assembly, this was a bit too fast paced, but I believe that for more experienced assembly people this video is very good
@maxmuster7003
@maxmuster7003 5 ай бұрын
The calling convention is to push values to the stack to call a subroutine and the subroutine pop the values from the stack. Personaly i like to put values into register and/or into the data segment to call a subroutine. So my stack if filled with return addresses only for calling subroutines and return to the caller next instruction. We can read the values of the data segment from inside any nested subroutines multiple times without to care where the stack pointer is pointing to. PUSH and POP instructions are slower than mov&mov instructions on x86 befor Pentium 4 was made.
@DaveAxiom
@DaveAxiom 5 ай бұрын
The heap grows up into increasing memory addresses and the stack grows from a high memory address down into decreasing memory addresses. It's a remnant of when an x86 program worked within one segment of memory (16k). And not to forget about real mode too. It would have been best if the stack diagrams in this video grew from top down and that the stack registers were rsp and rbp since everything is 64-bit today.
@lordhelmet6691
@lordhelmet6691 5 ай бұрын
That is exactly how I was tought to think about the stack for this very reason.
@cyrilemeka6987
@cyrilemeka6987 5 ай бұрын
I thought the growth of the stack was dependent on the architecture's processor.
@DaveAxiom
@DaveAxiom 5 ай бұрын
@@cyrilemeka6987 The focus of the video is only the x86 architecture.
@cyrilemeka6987
@cyrilemeka6987 5 ай бұрын
@@DaveAxiom my bad, I replied to your comment before I got to watch the video
@BrandyBalloon
@BrandyBalloon 4 ай бұрын
What I find interesting is that it seems to be convention to visually map memory vertically, with high addresses at the top. I'm more inclined to visualize it horizontally, with higher addresses to the right. I find the horizontal way makes it easier to visualize more complex memory structures and algorithms, because it's more like a number line.
@Mempler
@Mempler 5 ай бұрын
Maybe you should cover UEFI or BIOS boot loading process at one point. UEFI is effectively used everywhere, even ARM. and ofc newer X64 Systems BIOS is also used in ARM but usually on very embedded systems and ofc on older X86 based systems. and i've seen some arm systems actually "emulating" uefi by basically just wrapping bios syscalls into uefi
@AntonioZL
@AntonioZL 5 ай бұрын
I've been programming for 5 years now. Recently I've been getting into embedded programming and computer graphics with OpenGL, and your videos have been really valuable for me to clarify some CS fundamentals. Thanks for the amazing job you do!
@m4rt_
@m4rt_ 5 ай бұрын
The nice thing with having some surface level Assembly understanding and experience is that you kinda already understand how things like this works. I'm exited to see what more there is to learn, and what I missed.
@zeez7777
@zeez7777 5 ай бұрын
Pretty cool! Small feedback: Saying every function has their own stack at the beginning could be a bit misleading/confusing for people not understanding the stack yet, soon after that you correctly say it has its own stack frame that is part of THE stack of the current thread. I find it incredible important to use extremely precise language when teaching/talking about fundamentals, even if it was clear what was meant to someone who already understood the topic. Otherwise it just kinda obfuscates the whole thing again for the learner. Also not sure if im a fan of mystifying the ret instruction by saying "ret is a whole magic instruction that i made a whole video about because its so complex". It really isnt complex at all and very tightly related to the stack, so couldve just spent 1 extra minute to explain it. Anyway thats just some pedantic feedback, no offense intended.
@orz4050
@orz4050 5 ай бұрын
-Wpedantic -Wno-offense
@christopheriman4921
@christopheriman4921 5 ай бұрын
Yeah I implemented a basic CPU architecture in a game with call and return instructions, essentially a call instruction is just a push instruction with the memory address of the next instruction along with a jump instruction that goes to the address of the beginning of the function being called and the return instruction would just pop that value of the next instruction off the stack and jump back to that address. I don't know if it works exactly like that on modern CPUs but at least the basic idea behind what is going on is very simple.
@2wr633
@2wr633 5 ай бұрын
@@christopheriman4921 found the Turing Complete player
@cyrilemeka6987
@cyrilemeka6987 5 ай бұрын
@@orz4050 🤣🤣😂
@KangJangkrik
@KangJangkrik 5 ай бұрын
​​@@orz4050 Error: -Wno-offense flag is not allowed in pedantic mode
@DoronOverflow
@DoronOverflow 5 ай бұрын
KZbin's algorithm for some reason led me to this video, anyway a few comments I think you should have added and talked about: caller-callee, arguments, locals, calling convention, return address, return value, EIP register, red zone (x64), initialization of the area, cleaning the area and more...
@duality4y
@duality4y 5 ай бұрын
you have the best videos i love em. these kind of videos especially
@LukeAvedon
@LukeAvedon 5 ай бұрын
I am very excited to learn that you have an entire video on the ret instruction.
@mates5D
@mates5D 5 ай бұрын
I will be writing an exam on assembler and how it works with stacks soon and this together with your assembler vids, they helped me to understand, thank you.
@jessegador
@jessegador 12 күн бұрын
I've been watching your videos for some time but this particular one made me subscribe to your channel. Thanks for making these difficult videos.
@Naparajith
@Naparajith 3 ай бұрын
I am a full stack engineer, but I can always appreciate a high quality video that makes it easy to understand low level concepts.
@MoneroGuy
@MoneroGuy 5 ай бұрын
awesome video as always
@louisparry-mills9132
@louisparry-mills9132 5 ай бұрын
Between you, ben eater, and chatGPT, I am having an unbelievable time learning about how computers work. This is so much fun omg
@LowLevelLearning
@LowLevelLearning 5 ай бұрын
That’s awesome to hear I love that
@warlockonthespot
@warlockonthespot 5 ай бұрын
Yeah this channel is so great, I've just had one of my first "sparks" a few days ago when learning about memory and automatically linked the stack to the scope of variables and functions in my head. That felt so good so had to go to gpt to ask if my assumption was right and it confirmed it but now the chad just uploaded this and I'm so happy to have more confirmation and a more in depth explantion on this.
@batteryjuicy4231
@batteryjuicy4231 4 ай бұрын
this channels is pure gold!
@NoOne-ev3jn
@NoOne-ev3jn 5 ай бұрын
To reason why the sp “grows” towards the negative is because the stack is actually a reverse stack, its bottom is in higher addresses and it grows towards lower ones (a new variable address is less than older variable address)
@jemo_hack
@jemo_hack 5 ай бұрын
cool, I really enjoy your videos, I would recommend compiler explorer for better representation of the assembly code, or make sure you use -O option… Looking forward to the next one.
@ikhlasulkamal5245
@ikhlasulkamal5245 5 ай бұрын
Great video, i always wonder how the hell a stack pointer retrace it tracks to the previous stack. it turns out they just save the ebp below the stack lol
@fhudufin
@fhudufin 5 ай бұрын
another low level learning video, another happy day
@sweep-
@sweep- 4 ай бұрын
I guess I never paid attention to this stuff at college… but this low level stuff is really interesting to me nowadays.
@BrandyBalloon
@BrandyBalloon 4 ай бұрын
I started with the low level stuff out of my own interest, simply because it was interesting, logical and intuitive. I had a Z80 based machine and quickly became frustrated with the limitation of BASIC, so I found a book on Z80 assembly language at the library and taught myself. The assembly was written and compiled to machine code with pen and paper. Nothing to do with school, I just enjoyed it. Computer science these days is much harder than it was 30 or 40 years ago, because there's too much to learn and it can be overwhelming.
@ngortheone
@ngortheone 5 ай бұрын
More videos on assmebly please!
@EUPThatsMe
@EUPThatsMe 5 ай бұрын
The fact that the stack is maintained using pointers and the data between them is not erased upon return leave a security hole that is processor expensive to clean up. The reason the stack grows negative is that it used to be set at the top of memory to start. The program was at bottom of ram and the heap in between - while the heap grew up the stack grew down to maximize memory usage. If you want to prevent stack over/under flows from blowing up the process just don't map a page of virtual memory on either end of the stack and put in an un mapped memory access exception handler.
@Jay-fn2fo
@Jay-fn2fo 5 ай бұрын
Phenomenal content
@EinSatzMitX
@EinSatzMitX 3 ай бұрын
4:13 my earrssss
@TheosTechTime
@TheosTechTime 5 ай бұрын
That is windows 10 with the XP wallpaper, an open shell taskbar skin and a start button skin
@jeffcauhape6880
@jeffcauhape6880 5 ай бұрын
Is there any performance difference when accessing data held on the stack vs data held in heap memory? If so, which operations are fastest in which environment?
@jokerphotos644
@jokerphotos644 2 ай бұрын
so one question. does the stackpointer moving for every push instruction? i'm not quite sure.
@lobsterfork
@lobsterfork 2 ай бұрын
3s into the video, “is that fucking windows xp?”
@uuu12343
@uuu12343 5 ай бұрын
A full Stack Computer Architecture video?? Looks like the Haskell has hit hard
@andrey730
@andrey730 3 ай бұрын
I'm curious how does it know where to `push` and where to `pop` value from? It seems there should be some other register to store that pointer on the stack and this register should update automatically on `pop` and `push`.
@Xnight-X
@Xnight-X 5 ай бұрын
Hi, i’ve been seeing your videos and they’re quite interesting, so i decided to start learning c again, can you recommend any ressources, and thank you.
@charleslegates9231
@charleslegates9231 25 күн бұрын
i'm having difficulty getting how ebp knows where the bottom of the outer stack frame is if i've got three frames, how does it find the bottom of stack two after i return out of layer 3 is it storing previous ebp at the bottom of the stack frame?
@LanBui-ek1qo
@LanBui-ek1qo 5 ай бұрын
Why is esp subtracted by 0x14, is there any 4-byte data residing above varible x?
@Yupppi
@Yupppi 5 ай бұрын
Sick dude. Thanks for the answer! Only recently I heard stack might not be "real" and was thoroughly surprised because as I've been to C++ classes or heard people talk about C++, people talk like stack was a separate physical memory thing. This explained a lot of what's going on. What about languages that don't have/use stack the same way as C, I understand that happens as well? So what about when you start a new program and I understand it requests a certain size of memory filled with zeroes. Who does the clearing/writing of zeroes and when? Can it happen that the memory is NOT actually clear when requested clean memory? Maybe for a bug or cybersecurity issue. Where do you get that appointed memory? Stack? Heap?
@Njinx_
@Njinx_ 5 ай бұрын
To answer your first question, the stack is concept specific to computer architecture, not just programming languages. Function calls in any language will typically utilize the stack because the machine code they compile into relies on the stack to do calls. Try writing a simple program that calls a function and returns a value. Compile and disassemble it to language agnostic use of the stack. Onto your second question. The OS is typically responsible for clearing the memory, although this doesn't apply in most of the embedded world.
@sagedoesstuff588
@sagedoesstuff588 5 ай бұрын
Why are variables 'x' and 'y' saved on the stack rather than in data segment? Is it so that the amount of memory needed for a function call is "allocated" dynamiclly for that call or is there some other reason such as to better allow for rucursion? I've only worked with intel 8080 and z80 assemblies, both of which are much more minimal than these modern cpu's, so sorry if it's a dumb question
@sagedoesstuff588
@sagedoesstuff588 5 ай бұрын
no matter the reason, found a way to create a function in i8080 assembly though it takes a bit of work being the Stack pointer is harder to interface with. writing to the pointer is fine, we got SPHL, but to read it you gotta use the Double-Addition instruction (DAD SP) with HL set to 0. rereating the foo function in the video (minus the printing) could look like this. also x,y,z are going to be 8 bit values for simplicity and the architure foo: ; L = 0x01 = x variable (base stack offset of +0) ; H = 0x02 = y variable (base stack offset of +1) LXI H, 0102H ; push (16bit) HL onto stack PUSH H ; load variable x into Reg. A ; load the variable offset into HL, in this case 0 LXI H, 0 ; move HL to the variables position in the stack DAD SP ; store value pointed to by HL into A MOV A,M ; repeat for variable y and Reg. B ; load the variable offset into HL, in this case +1 LXI H, 1 ; move HL to the variables position in the stack DAD SP ; store value pointerd to by HL into B MOV B,M ; do our calculation (result stored in A) ADD B ; move SP back to origonal position by either method 1 or 2 depending on how many pushes you made in the beginning ; method #1 (equal POP's to that of PUSHes in the beginning, speed varies based on # of POPS) POP H ... ; method #2 ( constant speed, may be faster if many PUSHes were made in the beginning) ; load total function offset (# of PUSHES in the beggining multiplied by 2) LXI H,function_offset ; calculate the new value of the stack pointer after "POP"ing the functino variables of the stack DAD SP ; store the calculated value back into the stack pointer SPHL ; And after all that, we return from the procedure ("function") call RET Please note this code is untested, dont quote me
@olhoTron
@olhoTron 5 ай бұрын
If they were saved on the data segment they would be shared by multiple calls, just like globals and variables declared static They are alocated on the stack so that each call has its own private copy of the local vars, even if the function is called recursively
@JohnP55
@JohnP55 5 ай бұрын
At 4:24, it's the function epilogue that collapses the stack frame.
@markopetek9419
@markopetek9419 5 ай бұрын
"Also, why am I stuck here in Windows XP?" I feel you.
@c.m.obrecht
@c.m.obrecht 4 ай бұрын
By the way, Exx registers are in 32bit systems, as today most is 64bit the registers are named Rxx (RAX and so on)
@ignaciogil947
@ignaciogil947 5 ай бұрын
Hey, i really like how your Vim looks, can you provide the vimrc configuration?
@bgill7475
@bgill7475 5 ай бұрын
ebp is extended base pointer, not bottom thanks for the video
@Hexecc1
@Hexecc1 3 ай бұрын
I have absolutely no ide what i just watched, but I won't be saying that in 6 months! 💪
@abacaabaca8131
@abacaabaca8131 5 ай бұрын
I could be wrong but the stack is just literally our main function where it can call other functions to do their own things. If it needs to call other function, it will save the return address to the main function so that after the function being called by main has finished, it can go back to where the main function is in RAM. When calling a function, main will stop and allocate memory on the stack for that function to perform its work, after its done, it will dellocates memory automatically from the stack and give back the control to main to call other function as well until main function exits. The question of where the stack is for a particular program is depending on operating system. For example, if at a particular time, there is 10 programs are executed at the same time on a computer. It means that in RAM, there is 10 main functions executing calling it's own other functions. It means all the stacks (the main functions) are all aligned next to each other. If one of the main functions requires allocation on the heap, that means the OS needs to find a memory address outside of this range of address. I.e the heap memory region cannot be overlapped with the stack region. Even if there is availability of memory in stack region.
@olhoTron
@olhoTron 5 ай бұрын
The stack can be anywhere, the OS prealocates a region, but theres nothing stopping you from malloc'ing some memory and setting esp to the last byte in that region in Go for example, each goroutine has it's own stack that is just alocated on the heap like any other allocation (IIRC it still uses the stack provided by the OS for signal handlers and cgo calls)
@anon_y_mousse
@anon_y_mousse 5 ай бұрын
I would have preferred you describe the stack the way it's laid out instead of symbolizing it. After all, you subtract from the stack pointer because when you're first given a stack you are pointing to the end of the stack. Every push instruction essentially subtracts the amount of space for whatever object you're about to add so that you can move it into place where the new position of the stack pointer points. If you really want to get in depth, it'd be nice to explain how the loader sets up the stack for your program.
@GeoffryGifari
@GeoffryGifari 5 ай бұрын
For a function like foo here, how "tall" is the provided stack? would it change if local variables x and y are floating point numbers instead of integers?
@GeoffryGifari
@GeoffryGifari 5 ай бұрын
And if a function foo1 calls another function foo2 (both having their own local variables), would the stacks just stack on top of each other? main > foo1 >foo2
@newkg3591
@newkg3591 4 ай бұрын
Am no expert but i think In assembly the stack's size is that of the segment(i forgot how big), and the size of the stack elements are i think 32 or 64bit by default(again am not expert i just dabbled in it before.) And as for the foo calling foo2 its basically the same thing foo2 returns from the adress that is poped from the stack back to foo1 and return of foo1 returns to main by popping adress from stack
@user-hd3pz2ow1b
@user-hd3pz2ow1b Ай бұрын
5:06 thanks
@aspectparadox6654
@aspectparadox6654 5 ай бұрын
At 5:57 wouldn’t ebp - 0xc be lower on the stack than ebp - 0x10? So why did you draw it corresponding to x, which is higher on the stack?
@anon_y_mousse
@anon_y_mousse 5 ай бұрын
He represented it symbolically which is probably the wrong way to demonstrate it. The stack grows downward and every push operation subtracts from the stack pointer by the size of the operand and then moves it into place where the pointer now points.
@namdao2672
@namdao2672 2 ай бұрын
do you have a video about heap?
@elbeardo149
@elbeardo149 5 ай бұрын
Why does main always get called in a C program? How does the OS give over control to the process?
@hydroUNI
@hydroUNI 5 ай бұрын
Titan-tier thumbnail
@cyrilemeka6987
@cyrilemeka6987 5 ай бұрын
I died when you said you got banished here cuz you coded in haskell🤣😂🤣
@totheknee
@totheknee 4 күн бұрын
5:55 - Why does it sub 0x14 and not 0x18? Two 64-bit registers and two 32-bit ints = 0x18 bytes. So esp points to y in your diagram?
@saipranavvenkatakrishnan3429
@saipranavvenkatakrishnan3429 5 ай бұрын
Bro gave major Big Tugg vibes at the beginning 👀
@locutusofborg
@locutusofborg 5 ай бұрын
You look tired but also explain things in much more detail than any books I have read. (not counting the assembly for dummies books :) )
@okeanos8081
@okeanos8081 5 ай бұрын
whats ur font
@robimnoore
@robimnoore 4 ай бұрын
The ebx value that is retained across the call to foo() - what is that? How does that relate to the code we see in main()?
@Brad_Script
@Brad_Script 4 ай бұрын
ebx (the register) might have been modified by foo(), that's why you put ebx (the value that was stored in the stack) back into ebx (the register) before returning to main, main might have used ebx before calling foo() and might use it after the call of foo(). This video is a bit confusing when he uses the same name of the registers and their values copied on the stack.
@theangelofspace155
@theangelofspace155 5 ай бұрын
As a js developer, I got lost after the windows background went away.
@anonion6821
@anonion6821 5 ай бұрын
im quite new to this domain, but doesn't the stack grow downwards?
@_orangutan
@_orangutan 5 ай бұрын
It's called a descending stack but why it's implemented to be so depends on the CPU architecture but essentially one rational was to simplify indexing into the stack.
@VivekYadav-ds8oz
@VivekYadav-ds8oz 5 ай бұрын
I guess it's how you imagine the memory layout. I always imagine 0x000... at the top and 0xFFFF... at the bottom, so for me the graphic made sense.
@anonion6821
@anonion6821 5 ай бұрын
@@VivekYadav-ds8oz fair enough, thanks everyone
@jeffreyepiscopo
@jeffreyepiscopo 5 ай бұрын
This video feels like a precursor to buffer overflows 👀 are we seeing that soon?
@jeffreyepiscopo
@jeffreyepiscopo 5 ай бұрын
Oh whoops that already happened a year ago. Somehow I missed it. kzbin.info/www/bejne/p6Hcg61rodCFoKcsi=YwzJCQFLYlp9B4en
@Codeaholic1
@Codeaholic1 5 ай бұрын
Repeat after me, "the stack grows down"
@machina123
@machina123 4 ай бұрын
Ben Eater of programming in low level
@kzl1nus648
@kzl1nus648 5 ай бұрын
Anyone know what font and colorscheme that is?
@dflyboy420
@dflyboy420 5 ай бұрын
colorscheme is solarized dark
@arashiryuu1624
@arashiryuu1624 5 ай бұрын
@@dflyboy420 No not the one you're using but the one from the video, which looks more like One Dark or some variation on it.
@dflyboy420
@dflyboy420 5 ай бұрын
@@arashiryuu1624 he uses solarized in his i3 shell and the solarized vim colorscheme
@francislalhmuakliana766
@francislalhmuakliana766 5 ай бұрын
I'm always intrique by naming the function as 'foo'. It should've been 'fool'.
@NovaH00
@NovaH00 5 ай бұрын
*bold* of you to assume I use the stack at all
@jackssrt
@jackssrt Ай бұрын
0:13 that is windows 10 with a windows xp skin
@DonAlcohol
@DonAlcohol 5 ай бұрын
it might have been worth it to include , where the stack is located , (physically) and maybe more important where its not located,... and what its limits are. both in how big it can get (why it might be a bad idea to throw heaps of data onto the stack , :P) , and in terms of how its parts are accessed (why its actually called a stack
@newkg3591
@newkg3591 4 ай бұрын
As far as i know. Its just an allocated segment in memory(ram). And for the size as far as i know am not sure its between 16ko-10ko. But i think it could theoratically go higher but its not neccesary most of the time
@DonAlcohol
@DonAlcohol 4 ай бұрын
@@newkg3591 I meant as worthwhile mentioning in the video, don't know what ko is can you clarify. Stack size (varies but) on Linux default 10mb , on windows 1mb , but with l3 cache just as big , memory much bigger, where does it go , if the heap grows backward what's the maximum and where do I get more, is it contiguous, can you pick a spot. Why does heap must be a pointer. If malloc chooses? But you can write your own allocator is it set or up to the programmer ?Is it lang dependant are just some if the things I think a starter would be curious about, I know I had to look up most of them at one point. And I still have many questions, hehe,Something I still haven't found an answer to that is satisfieing isthe CPU I'm programming for in my brain is still a z80 6502 hybrid simplification, but it always runs at 100% no Mather what , what makes a modern CPU to only have 20% load on a core or even clock back when in my mind it should be processing the next instruction as fast as possible, especially because I don't program allot of nops, or have routines triggered by interrupts. So for me its black magic.atm
@newkg3591
@newkg3591 4 ай бұрын
@@DonAlcohol tbh i honestly dont have concrete answers to your questions sorry. Am mostly familiarnwith 8086 and 80 architecture those are the ones i actually used but modern ones i am not that into it sorry. But your questions are interesting i really hope he covers them in his videos!
@DonAlcohol
@DonAlcohol 4 ай бұрын
@@newkg3591 yeah ive not found much eiter wich is weird cause it seems kind of important somehow:)
@younesmdarhrialaoui643
@younesmdarhrialaoui643 5 ай бұрын
It seems that this only applied to x86 assembly and not to ARM
@travisharnish1921
@travisharnish1921 Ай бұрын
You seem like you were teaching in the harvard cs50 class too?
@stapler942
@stapler942 5 ай бұрын
I wonder if anybody has done a stack frames lecture using Lego and address labels. 🙂
@Mempler
@Mempler 5 ай бұрын
Just a reverse queue
@DogeOfWar
@DogeOfWar 5 ай бұрын
windows xp hell yeah
@AK-vx4dy
@AK-vx4dy 5 ай бұрын
"So that why page is called StackOverflow..."... comments season started 😉
@karwszpl5117
@karwszpl5117 5 ай бұрын
Don't mind my comment, it's just to boost your popularity. Keep learning us at low level
@ProtoByte
@ProtoByte 5 ай бұрын
You guys use stacks? As a Chad firmware engineer I inline everything.
@maxmuster7003
@maxmuster7003 5 ай бұрын
I don’t like to use the calling convention.
@VivekYadav-ds8oz
@VivekYadav-ds8oz 5 ай бұрын
I'm assuming when you said "not only does it subtract esp to bring it where ebp is, it also pops ebp, which means now ebp points back to the start of the main", you meant now it sets the value of ebp to the popped value? Sorry if that sounds obvious but assembly is too nuanced for me to not ask such trivial but clarifying questions.
@chbrules
@chbrules 5 ай бұрын
Beautiful! Could you do a tutorial (probably a series worth) on OpenMP for C? I want to write a game for Linux and Windows with minimal code changes, and it looks like OpenMP is an industry supported standard library for multi-threaded programming in C/C++.
@BetaNegative
@BetaNegative 4 ай бұрын
I'll never understand why people feel this entitled: "Hey you, kind stranger who made this video, give me more."
@chbrules
@chbrules 4 ай бұрын
@@BetaNegative "Entitled?" Holy hell, your perspective on reality is warped. This is asking someone who is looking to start a YT channel on teaching on a topic for more content that others would find valuable too. It's a win-win.
@Mempler
@Mempler 5 ай бұрын
I would also appreciate an deepdive into loading ELF executables, or MACH-O or PE32+. although ELF is much more documented
@rickyrico80
@rickyrico80 5 ай бұрын
Meh the only stack that matters is page 1, 256 bytes, all you need.
@and_I_am_Life_the_fixer_of_all
@and_I_am_Life_the_fixer_of_all 5 ай бұрын
pls keep making low level programming videos, your the best content creator in this area
@rishiraj2548
@rishiraj2548 5 ай бұрын
👍👍
@guilherme5094
@guilherme5094 5 ай бұрын
👍
@staticobjx7232
@staticobjx7232 5 ай бұрын
obligatory first... or whatever
@hoteny
@hoteny 5 ай бұрын
Hi xp guy
@joltedjon
@joltedjon 4 ай бұрын
I feel like this would have made more sense to people if you explained it as it growing down. You saying "As SP goes up, the value goes more negative" is just confusing. Just my preference ig
@Brad_Script
@Brad_Script 4 ай бұрын
If you think about it, why do stack overflows happen ? if the address actually increases then the size of the stack is your entire memory which makes no sense, stack are very small in size.
@joltedjon
@joltedjon 4 ай бұрын
@@Brad_ScriptThink you're replying to the wrong dude my guy
@vk8a8
@vk8a8 5 ай бұрын
0:22 what the Fuck was that? don’t do that.
@caiman1188
@caiman1188 5 ай бұрын
bro is MAD
@3ckortreat
@3ckortreat 5 ай бұрын
bold font looks bad
@sed4454
@sed4454 5 ай бұрын
whats yer vim setup
@krisitak
@krisitak 5 ай бұрын
What determines the size of the stack frame?
@BrandyBalloon
@BrandyBalloon 4 ай бұрын
The compiler does, based on the size of local variables.
a strange but powerful interview question
7:01
Low Level Learning
Рет қаралды 263 М.
Did you find it?! 🤔✨✍️ #funnyart
00:11
Artistomg
Рет қаралды 120 МЛН
КАХА и Джин 2
00:36
К-Media
Рет қаралды 3,9 МЛН
the truth about ChatGPT generated code
10:35
Low Level Learning
Рет қаралды 206 М.
Webinar Replay: How to Get Started with Rust for Robotics
39:05
Tangram Vision
Рет қаралды 2,9 М.
the cleanest feature in C that you've probably never heard of
8:13
Low Level Learning
Рет қаралды 124 М.
you will never ask about pointers again after watching this video
8:03
Low Level Learning
Рет қаралды 2 МЛН
i cant stop thinking about this exploit
8:40
Low Level Learning
Рет қаралды 325 М.
Mastering Dynamic Programming - How to solve any interview problem (Part 1)
19:41
15 crazy new JS framework features you don’t know yet
6:11
Fireship
Рет қаралды 335 М.
Why Israel is in deep trouble: John Mearsheimer with Tom Switzer
1:35:01
Centre for Independent Studies
Рет қаралды 2,1 МЛН
🤔Почему Samsung ПОМОГАЕТ Apple?
0:48
Technodeus
Рет қаралды 441 М.
Power up all cell phones.
0:17
JL FUNNY SHORTS
Рет қаралды 48 МЛН
Very Best And Good Price Smart Phone
0:42
SDC Editing Zone 9K
Рет қаралды 217 М.