1/* $OpenBSD: brk.S,v 1.2 2020/06/26 10:31:44 kettenis Exp $ */ 2 3/* 4 * Copyright (c) 1996 Dale Rahn 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 1. Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 11 * 2. 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 * 15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS 16 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 17 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY 19 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 25 * SUCH DAMAGE. 26 */ 27 28#include "SYS.h" 29 30 .extern __curbrk 31 .extern _C_LABEL(_end) 32 33 .weak brk 34 35PSEUDO_PREFIX(,brk,break) 36 /* check >= _end, if not make the call for _end */ 37 addis %r5, %r2, .LC0@toc@ha 38 ld %r5, .LC0@toc@l(%r5) /* # %r5 = &_end */ 39 40 cmplw %r3, %r5 41 bge+ .L_brk_call 42 mr %r3, %r5 43 44.L_brk_call: 45 mr %r7, %r3 46 /* call break(size) */ 47 addis %r6, %r2, __curbrk@toc@ha 48 addi %r6, %r6, __curbrk@toc@l /* # %r6 = &__curbrk */ 49 50 sc 51 52 /* check for error */ 53 cmpwi %r0, 0 54 beq+ .L_brk_ok /* OK so this is stupid but I haven't read b */ 55 stw %r0, R13_OFFSET_ERRNO(%r13) 56 li %r3, -1 57 blr 58 nop 59 60 /* update, __curbrk and return */ 61.L_brk_ok: 62 stw %r7, 0(%r6) /* # remember, %r6=&__curbrk, %r3=new value */ 63 mr %r3, 0 /* # return 0 */ 64 blr 65END(brk) 66 67 .section .toc,"aw",@progbits 68.LC0: 69 .tc _end[TC],_end 70 71