Searched refs:stack_offset (Results 1 – 4 of 4) sorted by relevance
/freebsd/sys/powerpc/ps3/ |
H A D | ps3-hv-asm.awk | 17 stack_offset = 32; 26 printf("\tstdu %%r1,-%d(%%r1)\n", stack_offset+8*outs); 34 printf("\tld %%r11,%d(%%r1)\n", stack_offset+8*outs + stack_offset + 8*(i+ins)); 35 printf("\tstd %%r11,%d(%%r1)\n", stack_offset+8*i); 37 printf("\tstd %%r%d,%d(%%r1)\n", 3+ins+i, stack_offset+8*i); 46 printf("\tld %%r11,%d(%%r1)\n", stack_offset+8*i);
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/UnwindAssembly/x86/ |
H A D | x86AssemblyInspectionEngine.cpp | 963 int stack_offset, insn_len; in GetNonCallSiteUnwindPlanFromAssembly() local 1139 else if (mov_reg_to_local_stack_frame_p(machine_regno, stack_offset) && in GetNonCallSiteUnwindPlanFromAssembly() 1153 regloc.SetAtAFAPlusOffset(-(stack_offset + fa_value_ptr->GetOffset())); in GetNonCallSiteUnwindPlanFromAssembly() 1155 regloc.SetAtCFAPlusOffset(-(stack_offset + fa_value_ptr->GetOffset())); in GetNonCallSiteUnwindPlanFromAssembly() 1162 else if (sub_rsp_pattern_p(stack_offset)) { in GetNonCallSiteUnwindPlanFromAssembly() 1163 current_sp_bytes_offset_from_fa += stack_offset; in GetNonCallSiteUnwindPlanFromAssembly() 1170 else if (add_rsp_pattern_p(stack_offset)) { in GetNonCallSiteUnwindPlanFromAssembly() 1171 current_sp_bytes_offset_from_fa -= stack_offset; in GetNonCallSiteUnwindPlanFromAssembly() 1188 else if (lea_rsp_pattern_p(stack_offset)) { in GetNonCallSiteUnwindPlanFromAssembly() 1189 current_sp_bytes_offset_from_fa -= stack_offset; in GetNonCallSiteUnwindPlanFromAssembly() [all …]
|
/freebsd/contrib/jemalloc/src/ |
H A D | tcache.c | 418 size_t stack_offset = 0; in tcache_init() local 425 stack_offset += tcache_bin_info[i].ncached_max * sizeof(void *); in tcache_init() 432 (void **)((uintptr_t)avail_stack + (uintptr_t)stack_offset); in tcache_init() 435 stack_offset += tcache_bin_info[i].ncached_max * sizeof(void *); in tcache_init() 437 (void **)((uintptr_t)avail_stack + (uintptr_t)stack_offset); in tcache_init() 439 assert(stack_offset == stack_nelms * sizeof(void *)); in tcache_init() 488 size_t size, stack_offset; in tcache_create_explicit() local 493 stack_offset = size; in tcache_create_explicit() 505 (void *)((uintptr_t)tcache + (uintptr_t)stack_offset)); in tcache_create_explicit()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/PowerPC/ |
H A D | ABISysV_ppc64.cpp | 163 uint64_t stack_offset; in PrepareTrivialCall() local 165 stack_offset = 24; in PrepareTrivialCall() 167 stack_offset = 40; in PrepareTrivialCall() 170 (uint64_t)(sp + stack_offset), (int)stack_offset, in PrepareTrivialCall() 172 if (!process_sp->WritePointerToMemory(sp + stack_offset, reg_value, error)) in PrepareTrivialCall() 246 uint64_t stack_offset; in GetArgumentValues() local 248 stack_offset = 32; in GetArgumentValues() 250 stack_offset = 48; in GetArgumentValues() 253 addr_t current_stack_argument = sp + stack_offset; in GetArgumentValues()
|