코딩Coding/Rust❤️메모리Memory관리_기초상식
-
Working with strings in Rust코딩Coding/Rust❤️메모리Memory관리_기초상식 2023. 9. 6. 19:21
Working with strings in Rust https://fasterthanli.me/articles/working-with-strings-in-rust Working with strings in RustThere's a question that always comes up when people pick up the Rust programming language: why are there two string types? Why is there String , and &str ? My Declarati...fasterthanli.me
-
Rust way of dealing with memory allocation코딩Coding/Rust❤️메모리Memory관리_기초상식 2023. 9. 6. 19:19
Rust way of dealing with memory allocation So I'm following [this]( https://cstack.github.io/db_tutorial/How Does a Database Work?Writing a sqlite clone from scratch in Ccstack.github.io ) tutorial as a kind of side project. But instead of building it in C, like the author did, I'm trying to build it in rust. In [part 3](https://cstack.github.io/db_tutorial/parts/part3.html), they allocate 4kb c..
-
How could I check if my memory allocation is correct?코딩Coding/Rust❤️메모리Memory관리_기초상식 2023. 9. 6. 19:17
How could I check if my memory allocation is correct? https://stackoverflow.com/questions/65459338/how-could-i-check-if-my-memory-allocation-is-correct How could I check if my memory allocation is correct?I'm trying to do my own memory allocation with the alloc crate. The way I implemented it, and if I understand how the Layout works, the below line should get the size I want to allocate in byte..
-
JavaScript❤️v8엔진 Garbage Collector이해하기. 파편화된 메모리가 문제구나. 조각 모음할 수도 없고 ㅡㅡ코딩Coding/Rust❤️메모리Memory관리_기초상식 2023. 4. 23. 12:06
https://seunghyeokleedev.tistory.com/2 v8엔진 Garbage Collector 이란?해당 포스팅은 Javascript Modern Deep Dive 4장을 읽는 와중에 메모리 관리 기법에 관심이 생겨서 작성하였습니다. 모던 딥 자바스크립트를 모딥다로 줄여서 이야기하겠습니다. 모딥다 4장 내용은 변수seunghyeokleedev.tistory.com
-
objdump❤️사용법코딩Coding/Rust❤️메모리Memory관리_기초상식 2022. 8. 26. 22:13
https://gyeongje.tistory.com/m/302 objdump 사용법 objdump의 파일명은 architecture 별로 상이할 수 있으며, 주로 이용되는 사용법은 다음과 같다. objdump [-d] [-S] [-l] [obj 파일명] > [output 파일명] -d 옵션은 disassemble, 즉 어셈블리어 코드 목록을.. gyeongje.tistory.com objdump 명령어 옵션 정리❤️ https://pororiri.tistory.com/entry/objdump objdump 명령어 옵션 정리 대표적인 바이너리 분석 툴 objdump. 포너블을 할때 유용하게 쓰이는 툴이기 때문에 명령어 옵션을 정리해 보겠다. 사용 방법은 "objdump 옵션 파일이름" 이다. -objdum..
-
macOS_lldb 사용법 Rust❤️코딩Coding/Rust❤️메모리Memory관리_기초상식 2022. 6. 25. 23:16
https://github.com/ImageOptim/mozjpeg-rust/issues/21 Encoding fails on macOS arm64 (bus error) · Issue #21 · ImageOptim/mozjpeg-rust Hi, I'm working on an HDR-to-SDR conversion utility and am using mozjpeg to write output JPEGs; it's working well on most systems I've tested including macOS x86_64 and Linux arm64, but... github.com ❤️