1*7c478bd9Sstevel@tonic-gate# Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T 2*7c478bd9Sstevel@tonic-gate# All Rights Reserved 3*7c478bd9Sstevel@tonic-gate 4*7c478bd9Sstevel@tonic-gate# 5*7c478bd9Sstevel@tonic-gate# CDDL HEADER START 6*7c478bd9Sstevel@tonic-gate# 7*7c478bd9Sstevel@tonic-gate# The contents of this file are subject to the terms of the 8*7c478bd9Sstevel@tonic-gate# Common Development and Distribution License, Version 1.0 only 9*7c478bd9Sstevel@tonic-gate# (the "License"). You may not use this file except in compliance 10*7c478bd9Sstevel@tonic-gate# with the License. 11*7c478bd9Sstevel@tonic-gate# 12*7c478bd9Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 13*7c478bd9Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing. 14*7c478bd9Sstevel@tonic-gate# See the License for the specific language governing permissions 15*7c478bd9Sstevel@tonic-gate# and limitations under the License. 16*7c478bd9Sstevel@tonic-gate# 17*7c478bd9Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each 18*7c478bd9Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 19*7c478bd9Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the 20*7c478bd9Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying 21*7c478bd9Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner] 22*7c478bd9Sstevel@tonic-gate# 23*7c478bd9Sstevel@tonic-gate# CDDL HEADER END 24*7c478bd9Sstevel@tonic-gate# 25*7c478bd9Sstevel@tonic-gate 26*7c478bd9Sstevel@tonic-gate# 27*7c478bd9Sstevel@tonic-gate# University Copyright- Copyright (c) 1982, 1986, 1988 28*7c478bd9Sstevel@tonic-gate# The Regents of the University of California 29*7c478bd9Sstevel@tonic-gate# All Rights Reserved 30*7c478bd9Sstevel@tonic-gate# 31*7c478bd9Sstevel@tonic-gate# University Acknowledgment- Portions of this document are derived from 32*7c478bd9Sstevel@tonic-gate# software developed by the University of California, Berkeley, and its 33*7c478bd9Sstevel@tonic-gate# contributors. 34*7c478bd9Sstevel@tonic-gate# 35*7c478bd9Sstevel@tonic-gate 36*7c478bd9Sstevel@tonic-gate#pragma ident "%Z%%M% %I% %E% SMI" 37*7c478bd9Sstevel@tonic-gate 38*7c478bd9Sstevel@tonic-gate/ #ident "@(#)vi:port/ovdoprnt.s 1.5" 39*7c478bd9Sstevel@tonic-gate/ C library -- conversions 40*7c478bd9Sstevel@tonic-gate/ Overlay modification -- wfj 8/80 41*7c478bd9Sstevel@tonic-gate/ stack frame is one word larger... 42*7c478bd9Sstevel@tonic-gate/ 43*7c478bd9Sstevel@tonic-gate 44*7c478bd9Sstevel@tonic-gate/ width=-8. 45*7c478bd9Sstevel@tonic-gate/ formp=-10. 46*7c478bd9Sstevel@tonic-gate/ rjust=-12. 47*7c478bd9Sstevel@tonic-gate/ ndfnd=-14. 48*7c478bd9Sstevel@tonic-gate/ ndigit=-16. 49*7c478bd9Sstevel@tonic-gate/ zfill=-18. 50*7c478bd9Sstevel@tonic-gatewidth=-10. 51*7c478bd9Sstevel@tonic-gateformp=-12. 52*7c478bd9Sstevel@tonic-gaterjust=-14. 53*7c478bd9Sstevel@tonic-gatendfnd=-16. 54*7c478bd9Sstevel@tonic-gatendigit=-18. 55*7c478bd9Sstevel@tonic-gatezfill=-20. 56*7c478bd9Sstevel@tonic-gate.globl __doprnt 57*7c478bd9Sstevel@tonic-gate 58*7c478bd9Sstevel@tonic-gate.globl __strout 59*7c478bd9Sstevel@tonic-gate.globl csv 60*7c478bd9Sstevel@tonic-gate.globl cret 61*7c478bd9Sstevel@tonic-gate 62*7c478bd9Sstevel@tonic-gate__doprnt: 63*7c478bd9Sstevel@tonic-gate jsr r5,csv 64*7c478bd9Sstevel@tonic-gate sub $128.+12.,sp 65*7c478bd9Sstevel@tonic-gate mov 4(r5),formp(r5) / format 66*7c478bd9Sstevel@tonic-gate mov 6(r5),r4 67*7c478bd9Sstevel@tonic-gateloop: 68*7c478bd9Sstevel@tonic-gate mov sp,r3 69*7c478bd9Sstevel@tonic-gate mov formp(r5),r1 70*7c478bd9Sstevel@tonic-gate2: 71*7c478bd9Sstevel@tonic-gate movb (r1)+,r2 72*7c478bd9Sstevel@tonic-gate beq 2f 73*7c478bd9Sstevel@tonic-gate cmp r2,$'% 74*7c478bd9Sstevel@tonic-gate beq 2f 75*7c478bd9Sstevel@tonic-gate movb r2,(r3)+ 76*7c478bd9Sstevel@tonic-gate br 2b 77*7c478bd9Sstevel@tonic-gate2: 78*7c478bd9Sstevel@tonic-gate mov r1,formp(r5) 79*7c478bd9Sstevel@tonic-gate cmp r3,sp 80*7c478bd9Sstevel@tonic-gate beq 2f 81*7c478bd9Sstevel@tonic-gate mov sp,r0 82*7c478bd9Sstevel@tonic-gate mov 8(r5),-(sp) 83*7c478bd9Sstevel@tonic-gate clr -(sp) 84*7c478bd9Sstevel@tonic-gate mov r3,-(sp) 85*7c478bd9Sstevel@tonic-gate sub r0,(sp) 86*7c478bd9Sstevel@tonic-gate mov r0,-(sp) 87*7c478bd9Sstevel@tonic-gate jsr pc,__strout 88*7c478bd9Sstevel@tonic-gate add $8,sp 89*7c478bd9Sstevel@tonic-gate2: 90*7c478bd9Sstevel@tonic-gate tst r2 91*7c478bd9Sstevel@tonic-gate bne 2f 92*7c478bd9Sstevel@tonic-gate jmp cret 93*7c478bd9Sstevel@tonic-gate2: 94*7c478bd9Sstevel@tonic-gate mov sp,r3 95*7c478bd9Sstevel@tonic-gate2: 96*7c478bd9Sstevel@tonic-gate clr rjust(r5) 97*7c478bd9Sstevel@tonic-gate clr ndigit(r5) 98*7c478bd9Sstevel@tonic-gate mov $' ,zfill(r5) 99*7c478bd9Sstevel@tonic-gate cmpb *formp(r5),$'- 100*7c478bd9Sstevel@tonic-gate bne 2f 101*7c478bd9Sstevel@tonic-gate inc formp(r5) 102*7c478bd9Sstevel@tonic-gate inc rjust(r5) 103*7c478bd9Sstevel@tonic-gate2: 104*7c478bd9Sstevel@tonic-gate cmpb *formp(r5),$'0 105*7c478bd9Sstevel@tonic-gate bne 2f 106*7c478bd9Sstevel@tonic-gate mov $'0,zfill(r5) 107*7c478bd9Sstevel@tonic-gate2: 108*7c478bd9Sstevel@tonic-gate jsr r3,gnum 109*7c478bd9Sstevel@tonic-gate mov r1,width(r5) 110*7c478bd9Sstevel@tonic-gate clr ndfnd(r5) 111*7c478bd9Sstevel@tonic-gate cmp r0,$'. 112*7c478bd9Sstevel@tonic-gate bne 1f 113*7c478bd9Sstevel@tonic-gate jsr r3,gnum 114*7c478bd9Sstevel@tonic-gate mov r1,ndigit(r5) 115*7c478bd9Sstevel@tonic-gate1: 116*7c478bd9Sstevel@tonic-gate mov $swtab,r1 117*7c478bd9Sstevel@tonic-gate1: 118*7c478bd9Sstevel@tonic-gate mov (r1)+,r2 119*7c478bd9Sstevel@tonic-gate bne 2f 120*7c478bd9Sstevel@tonic-gate movb r0,(r3)+ 121*7c478bd9Sstevel@tonic-gate jmp prbuf 122*7c478bd9Sstevel@tonic-gate2: 123*7c478bd9Sstevel@tonic-gate cmp r0,(r1)+ 124*7c478bd9Sstevel@tonic-gate bne 1b 125*7c478bd9Sstevel@tonic-gate jmp (r2) 126*7c478bd9Sstevel@tonic-gate .data 127*7c478bd9Sstevel@tonic-gateswtab: 128*7c478bd9Sstevel@tonic-gate decimal; 'd 129*7c478bd9Sstevel@tonic-gate octal; 'o 130*7c478bd9Sstevel@tonic-gate hex; 'x 131*7c478bd9Sstevel@tonic-gate charac; 'c 132*7c478bd9Sstevel@tonic-gate string; 's 133*7c478bd9Sstevel@tonic-gate longorunsg; 'l 134*7c478bd9Sstevel@tonic-gate longorunsg; 'L 135*7c478bd9Sstevel@tonic-gate unsigned; 'u 136*7c478bd9Sstevel@tonic-gate remote; 'r 137*7c478bd9Sstevel@tonic-gate long; 'D 138*7c478bd9Sstevel@tonic-gate loct; 'O 139*7c478bd9Sstevel@tonic-gate lhex; 'X 140*7c478bd9Sstevel@tonic-gate lunsigned; 'U 141*7c478bd9Sstevel@tonic-gate 0; 0 142*7c478bd9Sstevel@tonic-gate .text 143*7c478bd9Sstevel@tonic-gate 144*7c478bd9Sstevel@tonic-gatelongorunsg: 145*7c478bd9Sstevel@tonic-gate movb *formp(r5),r0 146*7c478bd9Sstevel@tonic-gate inc formp(r5) 147*7c478bd9Sstevel@tonic-gate cmp r0,$'o 148*7c478bd9Sstevel@tonic-gate beq loct 149*7c478bd9Sstevel@tonic-gate cmp r0,$'x 150*7c478bd9Sstevel@tonic-gate beq lhex 151*7c478bd9Sstevel@tonic-gate cmp r0,$'d 152*7c478bd9Sstevel@tonic-gate beq long 153*7c478bd9Sstevel@tonic-gate cmp r0,$'u 154*7c478bd9Sstevel@tonic-gate beq lunsigned 155*7c478bd9Sstevel@tonic-gate dec formp(r5) 156*7c478bd9Sstevel@tonic-gate br unsigned 157*7c478bd9Sstevel@tonic-gate 158*7c478bd9Sstevel@tonic-gateoctal: 159*7c478bd9Sstevel@tonic-gate clr r0 160*7c478bd9Sstevel@tonic-gate br 1f 161*7c478bd9Sstevel@tonic-gateloct: 162*7c478bd9Sstevel@tonic-gate mov (r4)+,r0 163*7c478bd9Sstevel@tonic-gate1: 164*7c478bd9Sstevel@tonic-gate mov $8.,r2 165*7c478bd9Sstevel@tonic-gate br 2f 166*7c478bd9Sstevel@tonic-gate 167*7c478bd9Sstevel@tonic-gatehex: 168*7c478bd9Sstevel@tonic-gate clr r0 169*7c478bd9Sstevel@tonic-gate br 1f 170*7c478bd9Sstevel@tonic-gate 171*7c478bd9Sstevel@tonic-gatelhex: 172*7c478bd9Sstevel@tonic-gate mov (r4)+,r0 173*7c478bd9Sstevel@tonic-gate1: 174*7c478bd9Sstevel@tonic-gate mov $16.,r2 175*7c478bd9Sstevel@tonic-gate2: 176*7c478bd9Sstevel@tonic-gate mov (r4)+,r1 177*7c478bd9Sstevel@tonic-gate br compute 178*7c478bd9Sstevel@tonic-gate 179*7c478bd9Sstevel@tonic-gatedecimal: 180*7c478bd9Sstevel@tonic-gate mov (r4)+,r1 181*7c478bd9Sstevel@tonic-gate sxt r0 182*7c478bd9Sstevel@tonic-gate bmi 3f 183*7c478bd9Sstevel@tonic-gate br 2f 184*7c478bd9Sstevel@tonic-gate 185*7c478bd9Sstevel@tonic-gateunsigned: 186*7c478bd9Sstevel@tonic-gate clr r0 187*7c478bd9Sstevel@tonic-gate br 1f 188*7c478bd9Sstevel@tonic-gate 189*7c478bd9Sstevel@tonic-gatelong: 190*7c478bd9Sstevel@tonic-gate mov (r4)+,r0 191*7c478bd9Sstevel@tonic-gate bge 1f 192*7c478bd9Sstevel@tonic-gate mov (r4)+,r1 193*7c478bd9Sstevel@tonic-gate3: 194*7c478bd9Sstevel@tonic-gate neg r0 195*7c478bd9Sstevel@tonic-gate neg r1 196*7c478bd9Sstevel@tonic-gate sbc r0 197*7c478bd9Sstevel@tonic-gate movb $'-,(r3)+ 198*7c478bd9Sstevel@tonic-gate br 2f 199*7c478bd9Sstevel@tonic-gate 200*7c478bd9Sstevel@tonic-gatelunsigned: 201*7c478bd9Sstevel@tonic-gate mov (r4)+,r0 202*7c478bd9Sstevel@tonic-gate1: 203*7c478bd9Sstevel@tonic-gate mov (r4)+,r1 204*7c478bd9Sstevel@tonic-gate2: 205*7c478bd9Sstevel@tonic-gate mov $10.,r2 206*7c478bd9Sstevel@tonic-gate 207*7c478bd9Sstevel@tonic-gate/ 208*7c478bd9Sstevel@tonic-gate/ Algorithm courtesy Keith Davis 209*7c478bd9Sstevel@tonic-gate/ 210*7c478bd9Sstevel@tonic-gatecompute: 211*7c478bd9Sstevel@tonic-gate mov r5,-(sp) 212*7c478bd9Sstevel@tonic-gate mov r4,-(sp) 213*7c478bd9Sstevel@tonic-gate mov r0,r4 214*7c478bd9Sstevel@tonic-gate mov ndigit(r5),r0 215*7c478bd9Sstevel@tonic-gate mov r1,r5 216*7c478bd9Sstevel@tonic-gate ashc $0,r4 217*7c478bd9Sstevel@tonic-gate beq 1f 218*7c478bd9Sstevel@tonic-gate tst r0 219*7c478bd9Sstevel@tonic-gate beq 1f 220*7c478bd9Sstevel@tonic-gate movb $'0,(r3)+ 221*7c478bd9Sstevel@tonic-gate1: 222*7c478bd9Sstevel@tonic-gate jsr pc,1f 223*7c478bd9Sstevel@tonic-gate mov (sp)+,r4 224*7c478bd9Sstevel@tonic-gate mov (sp)+,r5 225*7c478bd9Sstevel@tonic-gate br prbuf 226*7c478bd9Sstevel@tonic-gate 227*7c478bd9Sstevel@tonic-gate1: 228*7c478bd9Sstevel@tonic-gate clr r0 229*7c478bd9Sstevel@tonic-gate mov r4,r1 230*7c478bd9Sstevel@tonic-gate beq 2f 231*7c478bd9Sstevel@tonic-gate div r2,r0 232*7c478bd9Sstevel@tonic-gate mov r0,r4 233*7c478bd9Sstevel@tonic-gate mov r1,r0 234*7c478bd9Sstevel@tonic-gate2: 235*7c478bd9Sstevel@tonic-gate mov r5,r1 236*7c478bd9Sstevel@tonic-gate asl r2 237*7c478bd9Sstevel@tonic-gate div r2,r0 238*7c478bd9Sstevel@tonic-gate asr r2 239*7c478bd9Sstevel@tonic-gate asl r0 240*7c478bd9Sstevel@tonic-gate cmp r2,r1 241*7c478bd9Sstevel@tonic-gate bgt 2f 242*7c478bd9Sstevel@tonic-gate sub r2,r1 243*7c478bd9Sstevel@tonic-gate inc r0 244*7c478bd9Sstevel@tonic-gate2: 245*7c478bd9Sstevel@tonic-gate mov r1,-(sp) 246*7c478bd9Sstevel@tonic-gate mov r0,r5 247*7c478bd9Sstevel@tonic-gate bne 2f 248*7c478bd9Sstevel@tonic-gate tst r4 249*7c478bd9Sstevel@tonic-gate beq 1f 250*7c478bd9Sstevel@tonic-gate2: 251*7c478bd9Sstevel@tonic-gate jsr pc,1b 252*7c478bd9Sstevel@tonic-gate1: 253*7c478bd9Sstevel@tonic-gate mov (sp)+,r0 254*7c478bd9Sstevel@tonic-gate add $'0,r0 255*7c478bd9Sstevel@tonic-gate cmp r0,$'9 256*7c478bd9Sstevel@tonic-gate ble 1f 257*7c478bd9Sstevel@tonic-gate add $'a-'0-10.,r0 258*7c478bd9Sstevel@tonic-gate1: 259*7c478bd9Sstevel@tonic-gate movb r0,(r3)+ 260*7c478bd9Sstevel@tonic-gate rts pc 261*7c478bd9Sstevel@tonic-gate 262*7c478bd9Sstevel@tonic-gatecharac: 263*7c478bd9Sstevel@tonic-gate mov $' ,zfill(r5) 264*7c478bd9Sstevel@tonic-gate mov (r4)+,r0 265*7c478bd9Sstevel@tonic-gate bic $!377,r0 266*7c478bd9Sstevel@tonic-gate beq prbuf 267*7c478bd9Sstevel@tonic-gate movb r0,(r3)+ 268*7c478bd9Sstevel@tonic-gate br prbuf 269*7c478bd9Sstevel@tonic-gate 270*7c478bd9Sstevel@tonic-gatestring: 271*7c478bd9Sstevel@tonic-gate mov $' ,zfill(r5) 272*7c478bd9Sstevel@tonic-gate mov ndigit(r5),r1 273*7c478bd9Sstevel@tonic-gate mov (r4),r2 274*7c478bd9Sstevel@tonic-gate mov r2,r3 275*7c478bd9Sstevel@tonic-gate bne 1f 276*7c478bd9Sstevel@tonic-gate mov $nulstr,r2 277*7c478bd9Sstevel@tonic-gate mov r2,r3 278*7c478bd9Sstevel@tonic-gate mov r2,(r4) 279*7c478bd9Sstevel@tonic-gate1: 280*7c478bd9Sstevel@tonic-gate tstb (r2)+ 281*7c478bd9Sstevel@tonic-gate beq 1f 282*7c478bd9Sstevel@tonic-gate inc r3 283*7c478bd9Sstevel@tonic-gate sob r1,1b 284*7c478bd9Sstevel@tonic-gate1: 285*7c478bd9Sstevel@tonic-gate mov (r4)+,r2 286*7c478bd9Sstevel@tonic-gate br prstr 287*7c478bd9Sstevel@tonic-gate 288*7c478bd9Sstevel@tonic-gateremote: 289*7c478bd9Sstevel@tonic-gate mov (r4)+,r4 290*7c478bd9Sstevel@tonic-gate mov (r4)+,formp(r5) 291*7c478bd9Sstevel@tonic-gate jmp loop 292*7c478bd9Sstevel@tonic-gate 293*7c478bd9Sstevel@tonic-gateprbuf: 294*7c478bd9Sstevel@tonic-gate mov sp,r2 295*7c478bd9Sstevel@tonic-gateprstr: 296*7c478bd9Sstevel@tonic-gate sub r2,r3 297*7c478bd9Sstevel@tonic-gate mov width(r5),r1 298*7c478bd9Sstevel@tonic-gate sub r3,r1 299*7c478bd9Sstevel@tonic-gate bge 1f 300*7c478bd9Sstevel@tonic-gate clr r1 301*7c478bd9Sstevel@tonic-gate1: 302*7c478bd9Sstevel@tonic-gate tst rjust(r5) 303*7c478bd9Sstevel@tonic-gate bne 1f 304*7c478bd9Sstevel@tonic-gate neg r1 305*7c478bd9Sstevel@tonic-gate1: 306*7c478bd9Sstevel@tonic-gate mov zfill(r5),-(sp) 307*7c478bd9Sstevel@tonic-gate mov 8(r5),-(sp) 308*7c478bd9Sstevel@tonic-gate mov r1,-(sp) 309*7c478bd9Sstevel@tonic-gate mov r3,-(sp) 310*7c478bd9Sstevel@tonic-gate mov r2,-(sp) 311*7c478bd9Sstevel@tonic-gate jsr pc,__strout 312*7c478bd9Sstevel@tonic-gate add $10.,sp 313*7c478bd9Sstevel@tonic-gate jmp loop 314*7c478bd9Sstevel@tonic-gate 315*7c478bd9Sstevel@tonic-gategnum: 316*7c478bd9Sstevel@tonic-gate clr ndfnd(r5) 317*7c478bd9Sstevel@tonic-gate clr r1 318*7c478bd9Sstevel@tonic-gate1: 319*7c478bd9Sstevel@tonic-gate movb *formp(r5),r0 320*7c478bd9Sstevel@tonic-gate inc formp(r5) 321*7c478bd9Sstevel@tonic-gate sub $'0,r0 322*7c478bd9Sstevel@tonic-gate cmp r0,$'*-'0 323*7c478bd9Sstevel@tonic-gate bne 2f 324*7c478bd9Sstevel@tonic-gate mov (r4)+,r0 325*7c478bd9Sstevel@tonic-gate br 3f 326*7c478bd9Sstevel@tonic-gate2: 327*7c478bd9Sstevel@tonic-gate cmp r0,$9. 328*7c478bd9Sstevel@tonic-gate bhi 1f 329*7c478bd9Sstevel@tonic-gate3: 330*7c478bd9Sstevel@tonic-gate inc ndfnd(r5) 331*7c478bd9Sstevel@tonic-gate mul $10.,r1 332*7c478bd9Sstevel@tonic-gate add r0,r1 333*7c478bd9Sstevel@tonic-gate br 1b 334*7c478bd9Sstevel@tonic-gate1: 335*7c478bd9Sstevel@tonic-gate add $'0,r0 336*7c478bd9Sstevel@tonic-gate rts r3 337*7c478bd9Sstevel@tonic-gate 338*7c478bd9Sstevel@tonic-gate.data 339*7c478bd9Sstevel@tonic-gatenulstr: 340*7c478bd9Sstevel@tonic-gate <(null)\0> 341