2017-09-27 01:26:41 +08:00
|
|
|
/* Producer string parsers for GDB.
|
|
|
|
|
2024-01-12 23:30:44 +08:00
|
|
|
Copyright (C) 2012-2024 Free Software Foundation, Inc.
|
2017-09-27 01:26:41 +08:00
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
|
|
|
|
#ifndef PRODUCER_H
|
|
|
|
#define PRODUCER_H
|
|
|
|
|
|
|
|
/* Check for GCC >= 4.x according to the symtab->producer string. Return minor
|
|
|
|
version (x) of 4.x in such case. If it is not GCC or it is GCC older than
|
|
|
|
4.x return -1. If it is GCC 5.x or higher return INT_MAX. */
|
|
|
|
extern int producer_is_gcc_ge_4 (const char *producer);
|
|
|
|
|
|
|
|
/* Returns nonzero if the given PRODUCER string is GCC and sets the MAJOR
|
|
|
|
and MINOR versions when not NULL. Returns zero if the given PRODUCER
|
|
|
|
is NULL or it isn't GCC. */
|
|
|
|
extern int producer_is_gcc (const char *producer, int *major, int *minor);
|
|
|
|
|
2023-11-01 07:33:12 +08:00
|
|
|
/* Returns nonzero if the given PRODUCER string is GAS and sets the MAJOR
|
|
|
|
and MINOR versions when not NULL. Returns zero if the given PRODUCER
|
|
|
|
is NULL or it isn't GAS. */
|
|
|
|
bool producer_is_gas (const char *producer, int *major, int *minor);
|
|
|
|
|
2021-04-08 15:16:15 +08:00
|
|
|
/* Check for Intel compilers >= 19.0. */
|
|
|
|
extern bool producer_is_icc_ge_19 (const char *producer);
|
|
|
|
|
2017-09-27 01:26:41 +08:00
|
|
|
/* Returns true if the given PRODUCER string is Intel or false
|
2021-04-08 15:15:58 +08:00
|
|
|
otherwise. Sets the MAJOR and MINOR versions when not NULL. */
|
2017-09-27 01:26:41 +08:00
|
|
|
extern bool producer_is_icc (const char *producer, int *major, int *minor);
|
|
|
|
|
2020-08-20 13:05:27 +08:00
|
|
|
/* Returns true if the given PRODUCER string is LLVM (clang/flang) or
|
|
|
|
false otherwise.*/
|
|
|
|
extern bool producer_is_llvm (const char *producer);
|
|
|
|
|
gdb: Fix issue with Clang CLI macros
Clang up to version 15 (current) adds macros that were defined in the
command line or by "other means", according to the Dwarf specification,
after the last DW_MACRO_end_file, instead of before the first
DW_MACRO_start_file, as the specification dictates. When GDB reads the
macros after the last file is closed, the macros never end up "in scope"
and so we can't print them. This has been submitted as a bug to Clang
developers (https://github.com/llvm/llvm-project/issues/54506), and PR
macros/29034 was opened for GDB to keep track of this.
Seeing as there is no expected date for it to be fixed, add a workaround
for all current versions of Clang. The workaround detects when
the main file would be closed and if the producer is Clang, and turns
that operation into a noop, so we keep a reference to the current_file
as those macros are read.
A test case was added to confirm the functionality, and the KFAIL for
running gdb.base/macro-source-path when using clang.
Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=29034
Approved-By: Simon Marchi <simon.marchi@efficios.com>
2022-04-21 01:41:11 +08:00
|
|
|
/* Returns true if the given PRODUCER string is clang, false otherwise.
|
|
|
|
Sets MAJOR and MINOR accordingly, if not NULL. */
|
|
|
|
extern bool producer_is_clang (const char *producer, int *major, int *minor);
|
|
|
|
|
2017-09-27 01:26:41 +08:00
|
|
|
#endif
|