1/* 2 Copyright (c) 2007, Toshiba Corporation 3 4 All rights reserved. 5 6 Redistribution and use in source and binary forms, with or without 7 modification, are permitted provided that the following conditions are met: 8 9 * Redistributions of source code must retain the above copyright notice, 10 this list of conditions and the following disclaimer. 11 * Redistributions in binary form must reproduce the above copyright 12 notice, this list of conditions and the following disclaimer in the 13 documentation and/or other materials provided with the distribution. 14 * Neither the names of Toshiba nor the names of its 15 contributors may be used to endorse or promote products derived from this 16 software without specific prior written permission. 17 18 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 19 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 20 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 21 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 22 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 23 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 24 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 25 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 26 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 27 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 28 POSSIBILITY OF SUCH DAMAGE. 29 */ 30/* 31 * This file contains code use to construct a PIC, spu side, syscall 32 * function with variable parameters in accordance with the CBE ABI. 33 * 34 * This function is equivalent to constructing a va_list structure and 35 * calling the va_list form of the function. Therefore, for example, 36 * a printf function stack frame will look like this: 37 * 38 * | Stack | high memory 39 * | Parms | 40 * | | 41 * |------------| 42 * | Link Reg | 43 * |------------| 44 * | Back Chain |<-----. <---- input SP 45 * |------------| | 46 * | Reg 74 | | 47 * |------------| | 48 * | Reg 73 | | 49 * |------------| | 50 * // ... // | 51 * |------------| | 52 * | Reg 5 | | 53 * |------------| | 54 * | Reg 4 |<--. | 55 * |------------| | | 56 * va_list.| call_stack |------' 57 * |------------| | 58 * va_list.| next_arg |---' 59 * |------------| 60 * | format (r3)| <---- start of parameters 61 * |------------| |------------| 62 * | stack | | | 63 * | code | |(Back Chain)| <---- output SP 64 * | 1-3 qwords | <---- code_ptr `------------' 65 * `------------' 66 * low memory 67 * 68 * This was written in assembly so that it is smaller than what would 69 * be produced by using va_start. 70 */ 71 72#include <picolibc.h> 73 74#include "c99ppe.h" 75 76#define parms $2 /* Number of fixed arguments */ 77 78#define offset $67 79#define flag $68 80#define regdec $69 81#define link $70 82 83#define code_ptr $71 84#define ptr $72 85#define inst $73 86#define tmp $74 87 88 .text 89 .global __stack_reg_va 90 .type __stack_reg_va, @function 91 92__stack_reg_va: 93 94 /* Save registers 69-74 explicitly so that we have some 95 * working registers. 96 */ 97 stqd $74, 16*(-1)($sp) 98 stqd $73, 16*(-2)($sp) 99 stqd $72, 16*(-3)($sp) 100 stqd $71, 16*(-4)($sp) 101 stqd $70, 16*(-5)($sp) 102 stqd $69, 16*(-6)($sp) 103 104 /* Construct self-modifying stack code that saves the remaining 105 * volatile registers onto the stack. 106 */ 107 il regdec, -1 /* for decrement register value in save instruction */ 108 shlqbyi regdec, regdec, 12 109 il tmp, -(SPE_STACK_REGS+2+3)*16 110 a code_ptr, $sp, tmp 111 lqr tmp, save_regs_1 /* store stack code */ 112 stqd tmp, 0(code_ptr) 113 lqr inst, save_regs_2 114 ai ptr, $sp, 16*(-6) 115 sync 116 bisl link, code_ptr /* branch to the constructed stack code */ 117 118 /* Adjust pointer so that it points to the first variable 119 * argument on the stack. 120 */ 121 ai offset, parms, -1 /* offset = parms - 1 */ 122 mpyi offset, offset, 16 /* offset = offset * 16 */ 123 a ptr, ptr, offset /* ptr = ptr + offset */ 124 125 /* Store the va_list to the parameter list. 126 */ 127 stqd $sp, 16*(-1)(ptr) 128 stqd ptr, 16*(-2)(ptr) 129 130 /* Make $3 store address. 131 */ 132 ai offset, parms, 2 /* offset = parms + 2 */ 133 mpyi offset, offset, -16 /* offset = offset * -16 */ 134 a ptr, ptr, offset /* ptr = ptr + offset */ 135 136 /* Save all the fixed (non-variable arguments on the stack) 137 */ 138 ceqi flag, parms, 0x01 /* if(parms==1) flag=0xFFFFFFFF */ 139 brnz flag, reg_3 /* if(flag!=0) jump */ 140 ceqi flag, parms, 0x02 /* if(parms==2) flag=0xFFFFFFFF */ 141 brnz flag, reg_4 /* if(flag!=0) jump */ 142 stqd $5, 16*2(ptr) 143reg_4: 144 stqd $4, 16*1(ptr) 145reg_3: 146 stqd $3, 0(ptr) 147 148 il $3, -16*(SPE_STACK_REGS+2+2) 149 stqx $sp, $3, $sp /* save back chain */ 150 a $sp, $sp, $3 151 bi $0 /* return to caller */ 152 153/***************************** stack code *********************************************/ 154 155 /* The following code is copied into the stack for re-entract, 156 * self-modified, code execution. This code copies the volatile 157 * registers into a va_list parameter array. 158 */ 159 .balignl 16, 0 160save_regs_1: 161 stqd inst, 16(code_ptr) /* store instruction */ 162 sync 163 a inst, inst, regdec /* decrement register number in the instruction */ 164 ceqbi tmp, inst, 3 /* if (reg-num == 3) tmp = 0x000000FF 000..0 */ 165save_regs_2: 166 stqd $68, -16(ptr) 167 ai ptr, ptr, -16 168 brz tmp, save_regs_1 /* if (tmp == 0) jump */ 169 bi link /* finish to make va_list */ 170 171 .size __stack_reg_va, .-__stack_reg_va 172 173