#include <varargs.h>#include <stdio.h>#include <safe-ctype.h>#include <sys/types.h>#include <errno.h>#include "hwint.h"#include "libiberty.h"#include "symcat.h"

Go to the source code of this file.
Defines | |
| #define | va_copy(d, s) ((d) = (s)) |
| #define | NULL 0 |
| #define | SUCCESS_EXIT_CODE 0 |
| #define | FATAL_EXIT_CODE 1 |
| #define | IN_RANGE(VALUE, LOWER, UPPER) ((unsigned HOST_WIDE_INT) ((VALUE) - (LOWER)) <= ((UPPER) - (LOWER))) |
| #define | INTTYPE_SIGNED(t) (! ((t) 0 < (t) -1)) |
| #define | INTTYPE_MINIMUM(t) |
| #define | INTTYPE_MAXIMUM(t) ((t) (~ (t) 0 - INTTYPE_MINIMUM (t))) |
| #define | UCHAR_MAX INTTYPE_MAXIMUM (unsigned char) |
| #define | SEEK_SET 0 |
| #define | SEEK_CUR 1 |
| #define | SEEK_END 2 |
| #define | F_OK 0 |
| #define | X_OK 1 |
| #define | W_OK 2 |
| #define | R_OK 4 |
| #define | O_RDONLY 0 |
| #define | O_WRONLY 1 |
| #define | MIN(X, Y) ((X) < (Y) ? (X) : (Y)) |
| #define | MAX(X, Y) ((X) > (Y) ? (X) : (Y)) |
| #define | CEIL(x, y) (((x) + (y) - 1) / (y)) |
| #define | WIFSIGNALED(S) (((S) & 0xff) != 0 && ((S) & 0xff) != 0x7f) |
| #define | WTERMSIG(S) ((S) & 0x7f) |
| #define | WIFEXITED(S) (((S) & 0xff) == 0) |
| #define | WEXITSTATUS(S) (((S) & 0xff00) >> 8) |
| #define | WSTOPSIG WEXITSTATUS |
| #define | WCOREDUMP(S) ((S) & WCOREFLG) |
| #define | WCOREFLG 0200 |
| #define | volatile |
| #define | HAVE_DESIGNATED_INITIALIZERS ((GCC_VERSION >= 2007) || (__STDC_VERSION__ >= 199901L)) |
| #define | HAVE__BOOL ((GCC_VERSION >= 3000) || (__STDC_VERSION__ >= 199901L)) |
| #define | S_ISREG(m) (((m) & S_IFMT) == S_IFREG) |
| #define | S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) |
| #define | S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR) |
| #define | S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK) |
| #define | S_ISSOCK(m) 0 |
| #define | S_ISFIFO(m) 0 |
| #define | O_NONBLOCK O_NDELAY |
| #define | O_NOCTTY 0 |
| #define | STDIN_FILENO 0 |
| #define | STDOUT_FILENO 1 |
| #define | STDERR_FILENO 2 |
| #define | HOST_PTR_PRINTF |
| #define | PATH_SEPARATOR ':' |
| #define | DIR_SEPARATOR '/' |
| #define | IS_DIR_SEPARATOR(CH) ((CH) == DIR_SEPARATOR) |
| #define | IS_ABSOLUTE_PATHNAME(STR) (IS_DIR_SEPARATOR ((STR)[0]) || (STR)[0] == '$') |
| #define | HOST_BIT_BUCKET "/dev/null" |
| #define | ENUM_BITFIELD(TYPE) unsigned int |
| #define | offsetof(TYPE, MEMBER) ((size_t) &((TYPE *) 0)->MEMBER) |
| #define | UNION_INIT_ZERO |
| #define | __FUNCTION__ "?" |
| #define | __builtin_expect(a, b) (a) |
| #define | bool _Bool |
| #define | true 1 |
| #define | false 0 |
| #define | TRUE true |
| #define | FALSE false |
| #define | really_call_malloc malloc |
| #define | really_call_calloc calloc |
| #define | really_call_realloc realloc |
Typedefs | |
| typedef char | _Bool |
Functions/Subroutines | |
| const char *strsignal | PARAMS ((int)) |
| #define __FUNCTION__ "?" |
Definition at line 533 of file system.h.
Referenced by abort_with_insn(), mingw32_gt_pch_get_address(), mingw32_gt_pch_use_address(), nlm_sparc_read_reloc(), nlm_sparc_write_export(), nlm_sparc_write_import(), nlm_sparc_write_reloc(), pe_implied_import_dll(), and segv_handler().
| #define ENUM_BITFIELD | ( | TYPE | ) | unsigned int |
| #define F_OK 0 |
Definition at line 225 of file system.h.
Referenced by access_(), cif_VerifyCanWrite(), edit_file(), make_temp_file(), and process_command().
| #define HAVE__BOOL ((GCC_VERSION >= 3000) || (__STDC_VERSION__ >= 199901L)) |
| #define HAVE_DESIGNATED_INITIALIZERS ((GCC_VERSION >= 2007) || (__STDC_VERSION__ >= 199901L)) |
| #define HOST_BIT_BUCKET "/dev/null" |
| #define HOST_PTR_PRINTF |
| #define IN_RANGE | ( | VALUE, | |||
| LOWER, | |||||
| UPPER | ) | ((unsigned HOST_WIDE_INT) ((VALUE) - (LOWER)) <= ((UPPER) - (LOWER))) |
Definition at line 179 of file system.h.
Referenced by block_alloc(), count_or_remove_death_notes_bb(), df_ignore_stack_reg(), h8300_classify_operand(), h8300_constant_length(), h8300_eightbit_constant_address_p(), h8300_tiny_constant_address_p(), mark_set_1(), mark_used_reg(), and rtx_equiv_p().
| #define INTTYPE_MAXIMUM | ( | t | ) | ((t) (~ (t) 0 - INTTYPE_MINIMUM (t))) |
| #define INTTYPE_MINIMUM | ( | t | ) |
Value:
((t) (INTTYPE_SIGNED (t) \ ? ~ (t) 0 << (sizeof(t) * CHAR_BIT - 1) : (t) 0))
| #define IS_ABSOLUTE_PATHNAME | ( | STR | ) | (IS_DIR_SEPARATOR ((STR)[0]) || (STR)[0] == '$') |
Definition at line 492 of file system.h.
Referenced by cpp_included(), find_a_file(), find_include_file(), process_include(), and read_name_map().
| #define O_NOCTTY 0 |
| #define really_call_calloc calloc |
| #define STDERR_FILENO 2 |
Definition at line 447 of file system.h.
Referenced by _do_open(), _f_open(), _f_opn(), _ft_stopen(), _uniqinod(), collect_execute(), and pex_win32_exec_child().
| #define STDIN_FILENO 0 |
Definition at line 441 of file system.h.
Referenced by _f_open(), _ft_stopen(), chain_open(), and internal_fix().
| #define STDOUT_FILENO 1 |
Definition at line 444 of file system.h.
Referenced by _f_open(), _f_opn(), chain_open(), collect_execute(), internal_fix(), and pex_win32_exec_child().
Definition at line 269 of file system.h.
Referenced by collect_wait(), run_phase(), and run_simple_program().
Definition at line 263 of file system.h.
Referenced by collect_wait(), execute(), gen_aux_info_file(), ipxfwexitstatus_(), ld_compile(), run_phase(), and run_simple_program().
Definition at line 260 of file system.h.
Referenced by collect_wait(), execute(), gen_aux_info_file(), pxfwifexited_(), run_phase(), and run_simple_program().
Definition at line 254 of file system.h.
Referenced by collect_wait(), execute(), gen_aux_info_file(), pxfwifsignaled_(), run_phase(), and run_simple_program().
| #define WSTOPSIG WEXITSTATUS |
Definition at line 266 of file system.h.
Referenced by ipxfwstopsig_(), run_phase(), and run_simple_program().
Definition at line 257 of file system.h.
Referenced by collect_wait(), execute(), gen_aux_info_file(), ipxfwtermsig_(), run_phase(), and run_simple_program().
| const char* strsignal PARAMS | ( | (int) | ) |
1.5.6