Searched refs:STACK_SIZE (Results 1 – 4 of 4) sorted by relevance
/DragonOS/kernel/crates/rbpf/src/ |
H A D | stack.rs | 1 use crate::{ebpf::STACK_SIZE, vec, Vec}; 19 frame: vec![0; STACK_SIZE], in new()
|
H A D | cranelift.rs | 25 BPF_JNE, BPF_JSET, BPF_JSGE, BPF_JSGT, BPF_JSLE, BPF_JSLT, BPF_X, STACK_SIZE, 204 size: STACK_SIZE as u32, in build_function_prelude() 207 let stack_addr = bcx.ins().stack_addr(addr_ty, ss, STACK_SIZE as i32); in build_function_prelude() 213 let stack_end = bcx.ins().stack_addr(addr_ty, ss, STACK_SIZE as i32); in build_function_prelude()
|
H A D | ebpf.rs | 31 pub const STACK_SIZE: usize = 512; constant
|
H A D | jit.rs | 532 self.emit_alu64_imm32(mem, 0x81, 5, RSP, ebpf::STACK_SIZE as i32); in jit_compile() 941 self.emit_alu64_imm32(mem, 0x81, 0, RSP, ebpf::STACK_SIZE as i32); in jit_compile()
|