17c478bd9Sstevel@tonic-gate/* 27c478bd9Sstevel@tonic-gate * CDDL HEADER START 37c478bd9Sstevel@tonic-gate * 47c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 5*9a70fc3bSMark J. Nelson * Common Development and Distribution License (the "License"). 6*9a70fc3bSMark J. Nelson * You may not use this file except in compliance with the License. 77c478bd9Sstevel@tonic-gate * 87c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 97c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 107c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 117c478bd9Sstevel@tonic-gate * and limitations under the License. 127c478bd9Sstevel@tonic-gate * 137c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 147c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 157c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 167c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 177c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 187c478bd9Sstevel@tonic-gate * 197c478bd9Sstevel@tonic-gate * CDDL HEADER END 207c478bd9Sstevel@tonic-gate */ 217c478bd9Sstevel@tonic-gate/* 227c478bd9Sstevel@tonic-gate * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 237c478bd9Sstevel@tonic-gate * Use is subject to license terms. 247c478bd9Sstevel@tonic-gate */ 257c478bd9Sstevel@tonic-gate 267c478bd9Sstevel@tonic-gate/* 277c478bd9Sstevel@tonic-gate * The following c routine has appropriate interface semantics 287c478bd9Sstevel@tonic-gate * for the chaining combination template. On the sparc architecture 297c478bd9Sstevel@tonic-gate * the assembly routine is further tuned to make it tail recursive. 307c478bd9Sstevel@tonic-gate * 317c478bd9Sstevel@tonic-gate * void 327c478bd9Sstevel@tonic-gate * prb_chain_entry(void *a, void *b, void *c) 337c478bd9Sstevel@tonic-gate * { 347c478bd9Sstevel@tonic-gate * prb_chain_down(a, b, c); 357c478bd9Sstevel@tonic-gate * prb_chain_next(a, b, c); 367c478bd9Sstevel@tonic-gate * } 377c478bd9Sstevel@tonic-gate */ 387c478bd9Sstevel@tonic-gate 39*9a70fc3bSMark J. Nelson .file "i386_assm.s" 407c478bd9Sstevel@tonic-gate .data 417c478bd9Sstevel@tonic-gate .align 4 427c478bd9Sstevel@tonic-gate .globl prb_callinfo 437c478bd9Sstevel@tonic-gateprb_callinfo: 447c478bd9Sstevel@tonic-gate .4byte 1 /* offset */ 457c478bd9Sstevel@tonic-gate .4byte 0 /* shift right */ 467c478bd9Sstevel@tonic-gate .4byte 0xffffffff /* mask */ 477c478bd9Sstevel@tonic-gate 487c478bd9Sstevel@tonic-gate .text 497c478bd9Sstevel@tonic-gate .align 4 507c478bd9Sstevel@tonic-gate .globl prb_chain_entry 517c478bd9Sstevel@tonic-gate .globl prb_chain_down 527c478bd9Sstevel@tonic-gate .local chain_down 537c478bd9Sstevel@tonic-gate .globl prb_chain_next 547c478bd9Sstevel@tonic-gate .local chain_next 557c478bd9Sstevel@tonic-gate .globl prb_chain_end 567c478bd9Sstevel@tonic-gateprb_chain_entry: 577c478bd9Sstevel@tonic-gate#if defined(__amd64) 587c478bd9Sstevel@tonic-gate /* XX64 -- fix me */ 597c478bd9Sstevel@tonic-gate#else 607c478bd9Sstevel@tonic-gate pushl %ebp 617c478bd9Sstevel@tonic-gate movl %esp, %ebp 627c478bd9Sstevel@tonic-gate pushl %edi 637c478bd9Sstevel@tonic-gate pushl %esi 647c478bd9Sstevel@tonic-gate pushl %ebx 657c478bd9Sstevel@tonic-gate movl 16(%ebp), %ebx 667c478bd9Sstevel@tonic-gate pushl %ebx 677c478bd9Sstevel@tonic-gate movl 12(%ebp), %edi 687c478bd9Sstevel@tonic-gate pushl %edi 697c478bd9Sstevel@tonic-gate movl 8(%ebp), %esi 707c478bd9Sstevel@tonic-gate pushl %esi 717c478bd9Sstevel@tonic-gate#endif 727c478bd9Sstevel@tonic-gateprb_chain_down: 737c478bd9Sstevel@tonic-gatechain_down: 747c478bd9Sstevel@tonic-gate#if defined(__amd64) 757c478bd9Sstevel@tonic-gate /* XX64 -- fix me */ 767c478bd9Sstevel@tonic-gate#else 777c478bd9Sstevel@tonic-gate call chain_down 787c478bd9Sstevel@tonic-gate addl $12, %esp 797c478bd9Sstevel@tonic-gate pushl %ebx 807c478bd9Sstevel@tonic-gate pushl %edi 817c478bd9Sstevel@tonic-gate pushl %esi 827c478bd9Sstevel@tonic-gate#endif 837c478bd9Sstevel@tonic-gateprb_chain_next: 847c478bd9Sstevel@tonic-gatechain_next: 857c478bd9Sstevel@tonic-gate#if defined(__amd64) 867c478bd9Sstevel@tonic-gate /* XX64 -- fix me */ 877c478bd9Sstevel@tonic-gate#else 887c478bd9Sstevel@tonic-gate call chain_next 897c478bd9Sstevel@tonic-gate addl $12, %esp 907c478bd9Sstevel@tonic-gate popl %ebx 917c478bd9Sstevel@tonic-gate popl %esi 927c478bd9Sstevel@tonic-gate popl %edi 937c478bd9Sstevel@tonic-gate leave 947c478bd9Sstevel@tonic-gate#endif 957c478bd9Sstevel@tonic-gate ret 967c478bd9Sstevel@tonic-gateprb_chain_end: 977c478bd9Sstevel@tonic-gate nop 98