Lines Matching full:t
15 ".pushsection .gnu.linkonce.intList.exc_" #vector "\n\t" \
16 ".long 1f\n\t" /* ISR_LIST.fnc */ \
17 ".long -1\n\t" /* ISR_LIST.irq */ \
18 ".long -1\n\t" /* ISR_LIST.priority */ \
19 ".long " STRINGIFY(vector) "\n\t" /* ISR_LIST.vec */ \
20 ".long " STRINGIFY(dpl) "\n\t" /* ISR_LIST.dpl */ \
21 ".long 0\n\t" /* ISR_LIST.tss */ \
22 ".popsection\n\t" \
33 /* Unfortunately, GCC extended asm doesn't work at toplevel so we need
47 ".pushsection .gnu.linkonce.t.exc_" STRINGIFY(vector) \
48 "_stub, \"ax\"\n\t" \
49 ".global " STRINGIFY(_EXCEPTION_STUB_NAME(handler, vector)) "\n\t" \
50 STRINGIFY(_EXCEPTION_STUB_NAME(handler, vector)) ":\n\t" \
51 "1:\n\t" \
53 "push $" STRINGIFY(handler) "\n\t" \
54 "jmp _exception_enter\n\t" \
55 ".popsection\n\t" \
60 * @brief Connect an exception handler that doesn't expect error code
69 __EXCEPTION_CONNECT(handler, vector, dpl, "push $0\n\t")