1*7c478bd9Sstevel@tonic-gate/* 2*7c478bd9Sstevel@tonic-gate * CDDL HEADER START 3*7c478bd9Sstevel@tonic-gate * 4*7c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 5*7c478bd9Sstevel@tonic-gate * Common Development and Distribution License, Version 1.0 only 6*7c478bd9Sstevel@tonic-gate * (the "License"). You may not use this file except in compliance 7*7c478bd9Sstevel@tonic-gate * with the License. 8*7c478bd9Sstevel@tonic-gate * 9*7c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10*7c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 11*7c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 12*7c478bd9Sstevel@tonic-gate * and limitations under the License. 13*7c478bd9Sstevel@tonic-gate * 14*7c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 15*7c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16*7c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 17*7c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 18*7c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 19*7c478bd9Sstevel@tonic-gate * 20*7c478bd9Sstevel@tonic-gate * CDDL HEADER END 21*7c478bd9Sstevel@tonic-gate */ 22*7c478bd9Sstevel@tonic-gate/* 23*7c478bd9Sstevel@tonic-gate * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 24*7c478bd9Sstevel@tonic-gate * Use is subject to license terms. 25*7c478bd9Sstevel@tonic-gate */ 26*7c478bd9Sstevel@tonic-gate 27*7c478bd9Sstevel@tonic-gate/* 28*7c478bd9Sstevel@tonic-gate * The following c routine has appropriate interface semantics 29*7c478bd9Sstevel@tonic-gate * for the chaining combination template. On the sparc architecture 30*7c478bd9Sstevel@tonic-gate * the assembly routine is further tuned to make it tail recursive. 31*7c478bd9Sstevel@tonic-gate * 32*7c478bd9Sstevel@tonic-gate * void 33*7c478bd9Sstevel@tonic-gate * prb_chain_entry(void *a, void *b, void *c) 34*7c478bd9Sstevel@tonic-gate * { 35*7c478bd9Sstevel@tonic-gate * prb_chain_down(a, b, c); 36*7c478bd9Sstevel@tonic-gate * prb_chain_next(a, b, c); 37*7c478bd9Sstevel@tonic-gate * } 38*7c478bd9Sstevel@tonic-gate */ 39*7c478bd9Sstevel@tonic-gate 40*7c478bd9Sstevel@tonic-gate .ident "%Z%%M% %I% %E% SMI" 41*7c478bd9Sstevel@tonic-gate .file "%M%" 42*7c478bd9Sstevel@tonic-gate .data 43*7c478bd9Sstevel@tonic-gate .align 4 44*7c478bd9Sstevel@tonic-gate .globl prb_callinfo 45*7c478bd9Sstevel@tonic-gateprb_callinfo: 46*7c478bd9Sstevel@tonic-gate .4byte 1 /* offset */ 47*7c478bd9Sstevel@tonic-gate .4byte 0 /* shift right */ 48*7c478bd9Sstevel@tonic-gate .4byte 0xffffffff /* mask */ 49*7c478bd9Sstevel@tonic-gate 50*7c478bd9Sstevel@tonic-gate .text 51*7c478bd9Sstevel@tonic-gate .align 4 52*7c478bd9Sstevel@tonic-gate .globl prb_chain_entry 53*7c478bd9Sstevel@tonic-gate .globl prb_chain_down 54*7c478bd9Sstevel@tonic-gate .local chain_down 55*7c478bd9Sstevel@tonic-gate .globl prb_chain_next 56*7c478bd9Sstevel@tonic-gate .local chain_next 57*7c478bd9Sstevel@tonic-gate .globl prb_chain_end 58*7c478bd9Sstevel@tonic-gateprb_chain_entry: 59*7c478bd9Sstevel@tonic-gate#if defined(__amd64) 60*7c478bd9Sstevel@tonic-gate /* XX64 -- fix me */ 61*7c478bd9Sstevel@tonic-gate#else 62*7c478bd9Sstevel@tonic-gate pushl %ebp 63*7c478bd9Sstevel@tonic-gate movl %esp, %ebp 64*7c478bd9Sstevel@tonic-gate pushl %edi 65*7c478bd9Sstevel@tonic-gate pushl %esi 66*7c478bd9Sstevel@tonic-gate pushl %ebx 67*7c478bd9Sstevel@tonic-gate movl 16(%ebp), %ebx 68*7c478bd9Sstevel@tonic-gate pushl %ebx 69*7c478bd9Sstevel@tonic-gate movl 12(%ebp), %edi 70*7c478bd9Sstevel@tonic-gate pushl %edi 71*7c478bd9Sstevel@tonic-gate movl 8(%ebp), %esi 72*7c478bd9Sstevel@tonic-gate pushl %esi 73*7c478bd9Sstevel@tonic-gate#endif 74*7c478bd9Sstevel@tonic-gateprb_chain_down: 75*7c478bd9Sstevel@tonic-gatechain_down: 76*7c478bd9Sstevel@tonic-gate#if defined(__amd64) 77*7c478bd9Sstevel@tonic-gate /* XX64 -- fix me */ 78*7c478bd9Sstevel@tonic-gate#else 79*7c478bd9Sstevel@tonic-gate call chain_down 80*7c478bd9Sstevel@tonic-gate addl $12, %esp 81*7c478bd9Sstevel@tonic-gate pushl %ebx 82*7c478bd9Sstevel@tonic-gate pushl %edi 83*7c478bd9Sstevel@tonic-gate pushl %esi 84*7c478bd9Sstevel@tonic-gate#endif 85*7c478bd9Sstevel@tonic-gateprb_chain_next: 86*7c478bd9Sstevel@tonic-gatechain_next: 87*7c478bd9Sstevel@tonic-gate#if defined(__amd64) 88*7c478bd9Sstevel@tonic-gate /* XX64 -- fix me */ 89*7c478bd9Sstevel@tonic-gate#else 90*7c478bd9Sstevel@tonic-gate call chain_next 91*7c478bd9Sstevel@tonic-gate addl $12, %esp 92*7c478bd9Sstevel@tonic-gate popl %ebx 93*7c478bd9Sstevel@tonic-gate popl %esi 94*7c478bd9Sstevel@tonic-gate popl %edi 95*7c478bd9Sstevel@tonic-gate leave 96*7c478bd9Sstevel@tonic-gate#endif 97*7c478bd9Sstevel@tonic-gate ret 98*7c478bd9Sstevel@tonic-gateprb_chain_end: 99*7c478bd9Sstevel@tonic-gate nop 100