00001 /* 00002 00003 Copyright (C) 2000, 2001 Silicon Graphics, Inc. All Rights Reserved. 00004 00005 This program is free software; you can redistribute it and/or modify it 00006 under the terms of version 2.1 of the GNU Lesser General Public License 00007 as published by the Free Software Foundation. 00008 00009 This program is distributed in the hope that it would be useful, but 00010 WITHOUT ANY WARRANTY; without even the implied warranty of 00011 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 00012 00013 Further, this software is distributed without any warranty that it is 00014 free of the rightful claim of any third person regarding infringement 00015 or the like. Any license provided herein, whether implied or 00016 otherwise, applies only to this software file. Patent licenses, if 00017 any, provided herein do not apply to combinations of this program with 00018 other software, or any other product whatsoever. 00019 00020 You should have received a copy of the GNU Lesser General Public 00021 License along with this program; if not, write the Free Software 00022 Foundation, Inc., 59 Temple Place - Suite 330, Boston MA 02111-1307, 00023 USA. 00024 00025 Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pky, 00026 Mountain View, CA 94043, or: 00027 00028 http://www.sgi.com 00029 00030 For further information regarding this notice, see: 00031 00032 http://oss.sgi.com/projects/GenInfo/NoticeExplan 00033 00034 */ 00035 00036 00037 00038 #include <stdlib.h> 00039 #include <stdio.h> 00040 #include <sys/unwind.h> 00041 00042 00043 00044 /* little-endian base 128 variable-length decoding */ 00045 __uint64_t __leb128_decode(char *ptr, __uint64_t size, __uint64_t *val) { 00046 __uint64_t num = 0L; 00047 00048 if (num == size) 00049 return 0; 00050 *val = 0L; 00051 while (*ptr & 0x80) { 00052 *val += ((__uint64_t)(*ptr++ & 0x7f) << (7*num++)); 00053 if (num == size) 00054 return 0; 00055 } 00056 *val += ((__uint64_t)(*ptr & 0x7f) << (7*num++)); 00057 return num; 00058 } 00059 00060 00061 00062 /* little-endian base 128 variable-length encoding */ 00063 __uint64_t __leb128_encode(char *ptr, __uint64_t size, __uint64_t val) { 00064 __uint64_t num = 0L; 00065 00066 do { 00067 if (num == size) 00068 return 0; 00069 *ptr = (char)(val & 0x000000000000007fL); 00070 *ptr |= 0x80; 00071 val >>= 7; 00072 num++; 00073 ptr++; 00074 } while (val); 00075 *--ptr &= 0x7f; 00076 return num; 00077 }
1.5.6