Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

111 lines
2.8 KiB

// TITLE("Set Jump")
//++
//
// Copyright (c) 1993 Microsoft Corporation
// Copyright (c) 1993 Digital Equipment Corporation
//
// Module Name:
//
// setjmp.s
//
// Abstract:
//
// This module implements the Alpha acc compiler specific routine to
// perform a setjmp.
//
// N.B. This module conditionally provides UNSAFE handling of setjmp and
// which is NOT integrated with structured exception handling. The
// determination is made based on whether an uninitialized variable
// has been set to a nonzero value.
//
// Author:
//
// David N. Cutler (davec) 7-Apr-1993
//
// Environment:
//
// Any mode.
//
// Revision History:
//
// Thomas Van Baak (tvb) 22-Apr-1993
//
// Adapted for Alpha AXP.
//
//--
#include "ksalpha.h"
//
// Define variable that will cause setjmp/longjmp to be safe or unsafe with
// respect to structured exception handling.
//
.globl _setjmpexused
.comm _setjmpexused, 4
SBTTL("Set Jump - acc version")
//++
//
// int
// setjmp (
// IN jmp_buf JumpBuffer
// )
//
// Routine Description:
//
// This function saves the current nonvolatile register state in the
// specified jump buffer and returns a function value of zero.
//
// Arguments:
//
// JumpBuffer (a0) - Supplies the address of a jump buffer to store the
// jump information.
//
// Return Value:
//
// A value of zero is returned.
//
//--
LEAF_ENTRY(setjmp)
ldl v0, _setjmpexused // get value of switch variable
bne v0, 10f // if ne, provide safe setjmp
//
// Provide unsafe handling of setjmp.
//
stt f2, JbFltF2(a0) // save floating registers f2 - f9
stt f3, JbFltF3(a0) //
stt f4, JbFltF4(a0) //
stt f5, JbFltF5(a0) //
stt f6, JbFltF6(a0) //
stt f7, JbFltF7(a0) //
stt f8, JbFltF8(a0) //
stt f9, JbFltF9(a0) //
stq s0, JbIntS0(a0) // save integer registers s0 - s6/fp
stq s1, JbIntS1(a0) //
stq s2, JbIntS2(a0) //
stq s3, JbIntS3(a0) //
stq s4, JbIntS4(a0) //
stq s5, JbIntS5(a0) //
stq fp, JbIntS6(a0) //
ldil t0, 1 // get unsafe setjmp flag
stl t0, JbType(a0) // set jump buffer context type
stq sp, JbIntSp(a0) // save stack pointer
stq ra, JbFir(a0) // get setjmp return address
mov zero, v0 // set zero return value
ret zero, (ra) // return
//
// Provide safe handling of setjmp.
//
10: jmp zero, (v0) // finish in _setjmpex code
.end setjmp