Home
last modified time | relevance | path

Searched refs:VECSIZE (Results 1 – 5 of 5) sorted by relevance

/linux-6.15/arch/loongarch/mm/
H A Dtlb.c263 extern long exception_handlers[VECSIZE * 128 / sizeof(long)];
283 set_handler(i * VECSIZE, exception_table[i], VECSIZE); in setup_tlb_handler()
308 csr_write64(pcpu_handlers[cpu] + 80*VECSIZE, LOONGARCH_CSR_TLBRENTRY); in setup_tlb_handler()
/linux-6.15/arch/loongarch/kernel/
H A Dunwind_prologue.c34 if (entry_offset >= EXCCODE_INT_START * VECSIZE) in scan_handlers()
37 idx = entry_offset / VECSIZE; in scan_handlers()
38 offset = entry_offset % VECSIZE; in scan_handlers()
H A Dtraps.c1125 long exception_handlers[VECSIZE * 128 / sizeof(long)] __aligned(SZ_64K);
1130 tlbrentry = (unsigned long)exception_handlers + 80*VECSIZE; in configure_exception_vector()
1141 setup_vint_size(VECSIZE); in per_cpu_trap_init()
1156 set_handler(i * VECSIZE, handle_reserved, VECSIZE); in per_cpu_trap_init()
1193 set_handler(i * VECSIZE, handle_vint, VECSIZE); in trap_init()
1197 set_handler(i * VECSIZE, exception_table[i], VECSIZE); in trap_init()
H A Dunwind_orc.c368 if (ra >= eentry && ra < eentry + EXCCODE_INT_END * VECSIZE) { in bt_address()
370 unsigned long type = (ra - eentry) / VECSIZE; in bt_address()
371 unsigned long offset = (ra - eentry) % VECSIZE; in bt_address()
/linux-6.15/arch/loongarch/include/asm/
H A Dsetup.h13 #define VECSIZE 0x200 macro