alloc
alloc
์ ์ฌ์ฉํ๋ ค๋ฉด ์ ์ญ (ํ) ํ ๋น์๋ฅผ ๊ตฌํํด์ผ ํฉ๋๋ค.
#![no_main] #![no_std] extern crate alloc; extern crate panic_halt as _; use alloc::string::ToString; use alloc::vec::Vec; use buddy_system_allocator::LockedHeap; #[global_allocator] static HEAP_ALLOCATOR: LockedHeap<32> = LockedHeap::<32>::new(); static mut HEAP: [u8; 65536] = [0; 65536]; pub fn entry() { // Safe because `HEAP` is only used here and `entry` is only called once. unsafe { // Give the allocator some memory to allocate. HEAP_ALLOCATOR .lock() .init(HEAP.as_mut_ptr() as usize, HEAP.len()); } // Now we can do things that require heap allocation. let mut v = Vec::new(); v.push("A string".to_string()); }
buddy_system_allocator
๋ ๊ฐ๋จํ ๋ฒ๋ ์์คํ ํ ๋น์๋ฅผ ๊ตฌํํ๋ ์๋ ํํฐ ํฌ๋ ์ดํธ์ ๋๋ค. ์ด ์ธ์๋, ๋ค๋ฅธ ํฌ๋ ์ดํธ๋ฅผ ์ฌ์ฉํ๊ฑฐ๋, ์ง์ ํ ๋น์๋ฅผ ๋ง๋ค๊ฑฐ๋, ์ด๋ฏธ ์กด์ฌํ๋ ๋ค๋ฅธ ํ ๋น์์ ํํนํ ์ ์์ต๋๋ค.LockHeap
ํ์ ์ const ๋งค๊ฐ๋ณ์๋ ํ ๋น์์ ์ต๋ ํฌ๊ธฐ๋ฅผ 2์ง์๋ก ํํํ์ ๋์ ์๋ฆฟ์์ ๋๋ค. ์ฆ, ์ด ๊ฒฝ์ฐ์ฒ๋ผ 32์ธ ๊ฒฝ์ฐ ์ต๋ 2**32๋ฐ์ดํธ ํฌ๊ธฐ์ ์์ญ์ ๋ค๋ฃฐ ์ ์์ต๋๋ค.- ํ ๋ฐ์ด๋๋ฆฌ์์
alloc
์ ์์กดํ๋ ํฌ๋ ์ดํธ๊ฐ ํ๋๋ผ๋ ์๋ค๋ฉด ๋ฐ์ด๋๋ฆฌ ์ ์ฒด์์ ์ ์ญ ํ ๋น์๊ฐ ๋ฐ๋์ ํ๋ ์กด์ฌํด์ผ ํฉ๋๋ค. ์ผ๋ฐ์ ์ผ๋ก ์ ์ญ ํ ๋น์๋ฅผ ์ ์ธํ๋ ์์ ์ ์ต์์ ๋ฐ์ด๋๋ฆฌ ํฌ๋ ์ดํธ์์ ์ด๋ฃจ์ด์ง๋๋ค. panic_halt
ํฌ๋ ์ดํธ๊ฐ ์ฐ๊ฒฐ๋์ด ํจ๋ ํธ๋ค๋ฌ๋ฅผ ๊ฐ์ ธ์ค๋๋ก ํ๋ ค๋ฉดextern crate panic_halt as _
๊ฐ ํ์ํฉ๋๋ค.- ์ด ์์ ์ฝ๋๋ ๋น๋๋ ๋์ง๋ง, ์ง์ ์ ์ด ์๊ธฐ ๋๋ฌธ์ ์คํ๋์ง๋ ์์ต๋๋ค.