/* * Copyright (c) 1999 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this * file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_LICENSE_HEADER_END@ */ #ifndef RLD #import void swap_hppa_integer_thread_state( struct hp_pa_integer_thread_state *regs, enum NXByteOrder target_byte_order) { regs->ts_gr1 = OSSwapInt32(regs->ts_gr1); regs->ts_gr2 = OSSwapInt32(regs->ts_gr2); regs->ts_gr3 = OSSwapInt32(regs->ts_gr3); regs->ts_gr4 = OSSwapInt32(regs->ts_gr4); regs->ts_gr5 = OSSwapInt32(regs->ts_gr5); regs->ts_gr6 = OSSwapInt32(regs->ts_gr6); regs->ts_gr7 = OSSwapInt32(regs->ts_gr7); regs->ts_gr8 = OSSwapInt32(regs->ts_gr8); regs->ts_gr9 = OSSwapInt32(regs->ts_gr9); regs->ts_gr10 = OSSwapInt32(regs->ts_gr10); regs->ts_gr11 = OSSwapInt32(regs->ts_gr11); regs->ts_gr12 = OSSwapInt32(regs->ts_gr12); regs->ts_gr13 = OSSwapInt32(regs->ts_gr13); regs->ts_gr14 = OSSwapInt32(regs->ts_gr14); regs->ts_gr15 = OSSwapInt32(regs->ts_gr15); regs->ts_gr16 = OSSwapInt32(regs->ts_gr16); regs->ts_gr17 = OSSwapInt32(regs->ts_gr17); regs->ts_gr18 = OSSwapInt32(regs->ts_gr18); regs->ts_gr19 = OSSwapInt32(regs->ts_gr19); regs->ts_gr20 = OSSwapInt32(regs->ts_gr20); regs->ts_gr21 = OSSwapInt32(regs->ts_gr21); regs->ts_gr22 = OSSwapInt32(regs->ts_gr22); regs->ts_gr23 = OSSwapInt32(regs->ts_gr23); regs->ts_gr24 = OSSwapInt32(regs->ts_gr24); regs->ts_gr25 = OSSwapInt32(regs->ts_gr25); regs->ts_gr26 = OSSwapInt32(regs->ts_gr26); regs->ts_gr27 = OSSwapInt32(regs->ts_gr27); regs->ts_gr28 = OSSwapInt32(regs->ts_gr28); regs->ts_gr29 = OSSwapInt32(regs->ts_gr29); regs->ts_gr30 = OSSwapInt32(regs->ts_gr30); regs->ts_gr31 = OSSwapInt32(regs->ts_gr31); regs->ts_sr0 = OSSwapInt32(regs->ts_sr0); regs->ts_sr1 = OSSwapInt32(regs->ts_sr1); regs->ts_sr2 = OSSwapInt32(regs->ts_sr2); regs->ts_sr3 = OSSwapInt32(regs->ts_sr3); regs->ts_sar = OSSwapInt32(regs->ts_sar); } void swap_hppa_frame_thread_state( struct hp_pa_frame_thread_state *frame, enum NXByteOrder target_byte_order) { frame->ts_pcsq_front = OSSwapInt32(frame->ts_pcsq_front); frame->ts_pcsq_back = OSSwapInt32(frame->ts_pcsq_back); frame->ts_pcoq_front = OSSwapInt32(frame->ts_pcoq_front); frame->ts_pcoq_back = OSSwapInt32(frame->ts_pcoq_back); frame->ts_psw = OSSwapInt32(frame->ts_psw); frame->ts_unaligned_faults = OSSwapInt32(frame->ts_unaligned_faults); frame->ts_fault_address = OSSwapInt32(frame->ts_fault_address); frame->ts_step_range_start = OSSwapInt32(frame->ts_step_range_start); frame->ts_step_range_stop = OSSwapInt32(frame->ts_step_range_stop); } void swap_hppa_fp_thread_state( struct hp_pa_fp_thread_state *fp, enum NXByteOrder target_byte_order) { fp->ts_fp0 = OSSwapInt64(fp->ts_fp0); fp->ts_fp1 = OSSwapInt64(fp->ts_fp1); fp->ts_fp2 = OSSwapInt64(fp->ts_fp2); fp->ts_fp3 = OSSwapInt64(fp->ts_fp3); fp->ts_fp4 = OSSwapInt64(fp->ts_fp4); fp->ts_fp5 = OSSwapInt64(fp->ts_fp5); fp->ts_fp6 = OSSwapInt64(fp->ts_fp6); fp->ts_fp7 = OSSwapInt64(fp->ts_fp7); fp->ts_fp8 = OSSwapInt64(fp->ts_fp8); fp->ts_fp9 = OSSwapInt64(fp->ts_fp9); fp->ts_fp10 = OSSwapInt64(fp->ts_fp10); fp->ts_fp11 = OSSwapInt64(fp->ts_fp11); fp->ts_fp12 = OSSwapInt64(fp->ts_fp12); fp->ts_fp13 = OSSwapInt64(fp->ts_fp13); fp->ts_fp14 = OSSwapInt64(fp->ts_fp14); fp->ts_fp15 = OSSwapInt64(fp->ts_fp15); fp->ts_fp16 = OSSwapInt64(fp->ts_fp16); fp->ts_fp17 = OSSwapInt64(fp->ts_fp17); fp->ts_fp18 = OSSwapInt64(fp->ts_fp18); fp->ts_fp19 = OSSwapInt64(fp->ts_fp19); fp->ts_fp20 = OSSwapInt64(fp->ts_fp20); fp->ts_fp21 = OSSwapInt64(fp->ts_fp21); fp->ts_fp22 = OSSwapInt64(fp->ts_fp22); fp->ts_fp23 = OSSwapInt64(fp->ts_fp23); fp->ts_fp24 = OSSwapInt64(fp->ts_fp24); fp->ts_fp25 = OSSwapInt64(fp->ts_fp25); fp->ts_fp26 = OSSwapInt64(fp->ts_fp26); fp->ts_fp27 = OSSwapInt64(fp->ts_fp27); fp->ts_fp28 = OSSwapInt64(fp->ts_fp28); fp->ts_fp29 = OSSwapInt64(fp->ts_fp29); fp->ts_fp30 = OSSwapInt64(fp->ts_fp30); fp->ts_fp31 = OSSwapInt64(fp->ts_fp31); } #endif /* !defined(RLD) */