Branch data Line data Source code
1 : : /* Get the default subrange lower bound for a given language. 2 : : Copyright (C) 2016 Red Hat, Inc. 3 : : Copyright (C) 2024 Mark J. Wielaard <mark@klomp.org> 4 : : This file is part of elfutils. 5 : : 6 : : This file is free software; you can redistribute it and/or modify 7 : : it under the terms of either 8 : : 9 : : * the GNU Lesser General Public License as published by the Free 10 : : Software Foundation; either version 3 of the License, or (at 11 : : your option) any later version 12 : : 13 : : or 14 : : 15 : : * the GNU General Public License as published by the Free 16 : : Software Foundation; either version 2 of the License, or (at 17 : : your option) any later version 18 : : 19 : : or both in parallel, as here. 20 : : 21 : : elfutils is distributed in the hope that it will be useful, but 22 : : WITHOUT ANY WARRANTY; without even the implied warranty of 23 : : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 24 : : General Public License for more details. 25 : : 26 : : You should have received copies of the GNU General Public License and 27 : : the GNU Lesser General Public License along with this program. If 28 : : not, see <http://www.gnu.org/licenses/>. */ 29 : : 30 : : #ifdef HAVE_CONFIG_H 31 : : # include <config.h> 32 : : #endif 33 : : 34 : : #include <dwarf.h> 35 : : #include "libdwP.h" 36 : : 37 : : /* Determine default lower bound from language, as per the DWARF5 38 : : "Subrange Type Entries" table. */ 39 : : int 40 : 588 : dwarf_default_lower_bound (int lang, Dwarf_Sword *result) 41 : : { 42 [ + + + + ]: 588 : switch (lang) 43 : : { 44 : 548 : case DW_LANG_C: 45 : : case DW_LANG_C89: 46 : : case DW_LANG_C99: 47 : : case DW_LANG_C11: 48 : : case DW_LANG_C_plus_plus: 49 : : case DW_LANG_C_plus_plus_03: 50 : : case DW_LANG_C_plus_plus_11: 51 : : case DW_LANG_C_plus_plus_14: 52 : : case DW_LANG_ObjC: 53 : : case DW_LANG_ObjC_plus_plus: 54 : : case DW_LANG_Java: 55 : : case DW_LANG_D: 56 : : case DW_LANG_Python: 57 : : case DW_LANG_UPC: 58 : : case DW_LANG_OpenCL: 59 : : case DW_LANG_Go: 60 : : case DW_LANG_Haskell: 61 : : case DW_LANG_OCaml: 62 : : case DW_LANG_Rust: 63 : : case DW_LANG_Swift: 64 : : case DW_LANG_Dylan: 65 : : case DW_LANG_RenderScript: 66 : : case DW_LANG_BLISS: 67 : : case DW_LANG_Kotlin: 68 : : case DW_LANG_Zig: 69 : : case DW_LANG_Crystal: 70 : : case DW_LANG_C_plus_plus_17: 71 : : case DW_LANG_C_plus_plus_20: 72 : : case DW_LANG_C17: 73 : : case DW_LANG_HIP: 74 : : case DW_LANG_Assembly: 75 : : case DW_LANG_C_sharp: 76 : : case DW_LANG_Mojo: 77 : : case DW_LANG_GLSL: 78 : : case DW_LANG_GLSL_ES: 79 : : case DW_LANG_HLSL: 80 : : case DW_LANG_OpenCL_CPP: 81 : : case DW_LANG_CPP_for_OpenCL: 82 : : case DW_LANG_SYCL: 83 : : case DW_LANG_C_plus_plus_23: 84 : : case DW_LANG_Odin: 85 : : case DW_LANG_P4: 86 : : case DW_LANG_Metal: 87 : : case DW_LANG_C23: 88 : : case DW_LANG_Ruby: 89 : : case DW_LANG_Move: 90 : : case DW_LANG_Hylo: 91 : 548 : *result = 0; 92 : 548 : return 0; 93 : : 94 : 36 : case DW_LANG_Ada83: 95 : : case DW_LANG_Ada95: 96 : : case DW_LANG_Cobol74: 97 : : case DW_LANG_Cobol85: 98 : : case DW_LANG_Fortran77: 99 : : case DW_LANG_Fortran90: 100 : : case DW_LANG_Fortran95: 101 : : case DW_LANG_Fortran03: 102 : : case DW_LANG_Fortran08: 103 : : case DW_LANG_Pascal83: 104 : : case DW_LANG_Modula2: 105 : : case DW_LANG_Modula3: 106 : : case DW_LANG_PLI: 107 : : case DW_LANG_Julia: 108 : : case DW_LANG_Fortran18: 109 : : case DW_LANG_Ada2005: 110 : : case DW_LANG_Ada2012: 111 : : case DW_LANG_Fortran23: 112 : 36 : *result = 1; 113 : 36 : return 0; 114 : : 115 : : /* Special case vendor Assembly variant. */ 116 : 2 : case DW_LANG_Mips_Assembler: 117 : 2 : *result = 0; 118 : 2 : return 0; 119 : : 120 : 2 : default: 121 : 2 : __libdw_seterrno (DWARF_E_UNKNOWN_LANGUAGE); 122 : 2 : return -1; 123 : : } 124 : : } 125 : : INTDEF (dwarf_default_lower_bound)