Lines Matching refs:supervisor

545 	boolean_t       supervisor = FALSE;  in chudxnu_thread_get_callstack64_internal()  local
566 supervisor = ARM_SUPERVISOR_MODE(state->cpsr); in chudxnu_thread_get_callstack64_internal()
569 if (!user_only && !supervisor) { in chudxnu_thread_get_callstack64_internal()
599 buffer[bufferIndex++] = chudxnu_vm_unslide(currPC, supervisor); // save PC in position 0. in chudxnu_thread_get_callstack64_internal()
625 if (supervisor) { in chudxnu_thread_get_callstack64_internal()
663 buffer[bufferIndex++] = chudxnu_vm_unslide(pc, supervisor); in chudxnu_thread_get_callstack64_internal()
682 buffer[bufferIndex++] = chudxnu_vm_unslide(currLR, supervisor); in chudxnu_thread_get_callstack64_internal()
684 buffer[bufferIndex++] = chudxnu_vm_unslide(currSP, supervisor); in chudxnu_thread_get_callstack64_internal()
1050 #define VALID_STACK_ADDRESS(supervisor, addr, minKernAddr, maxKernAddr) (supervisor ? (addr>=minK… argument
1052 #define VALID_STACK_ADDRESS64(supervisor, addr, minKernAddr, maxKernAddr) \ argument
1053 (supervisor ? ((uint64_t)addr >= minKernAddr && (uint64_t)addr <= maxKernAddr) : \
1182 boolean_t supervisor) argument
1197 frames[ct++] = chudxnu_vm_unslide(currPC, supervisor);
1200 while (VALID_STACK_ADDRESS(supervisor, currFP, kernStackMin, kernStackMax)) {
1214 if (supervisor) {
1232 if (supervisor) {
1240 frames[ct++] = chudxnu_vm_unslide(currPC, supervisor);
1262 boolean_t supervisor) argument
1276 frames[ct++] = chudxnu_vm_unslide(currPC, supervisor);
1279 while (VALID_STACK_ADDRESS64(supervisor, currFP, kernStackMin, kernStackMax)) {
1294 if (supervisor) {
1310 if (supervisor) {
1316 if (VALID_STACK_ADDRESS64(supervisor, prevFP, kernStackMin, kernStackMax)) {
1317 frames[ct++] = chudxnu_vm_unslide(currPC, supervisor);
1342 boolean_t supervisor = FALSE; local
1369 supervisor = ((regs64->isf.cs & SEL_PL) != SEL_PL_U);
1373 supervisor = ((regs32->cs & SEL_PL) != SEL_PL_U);
1394 supervisor = TRUE;
1404 supervisor = ((regs64->isf.cs & SEL_PL) != SEL_PL_U);
1408 supervisor = ((regs32->cs & SEL_PL) != SEL_PL_U);
1414 if (supervisor) {