Conditionally compile support for --enable-mapped_location.
authorbothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 30 Jun 2004 17:58:21 +0000 (17:58 +0000)
committerbothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 30 Jun 2004 17:58:21 +0000 (17:58 +0000)
commitfdfe4b3faa360051a0d3ee834c141c8ee5f64e06
treebf7c0b00dcfa76e28cdeb61f5339d2924ef9dc16
parentf6621d14b9bd7fcb91b33db9cc9637b84362aaeb
Conditionally compile support for --enable-mapped_location.
* input.h:  #include line-map.h for source_location typedef.
(BUILTINS_LOCATION, UNKNOWN_LOCATION, expand_location,
LOCATION_FILE, LOCATION_LINE):  New macros and functions.
(expanded_location, source_locus):  New typedefs.
(push_srcloc):  Change parameter list if USE_MAPPED_LOCATION.
* rtl.def (NOTE, ASM_OPERANDS):  Modify specifcation, if
USE_MAPPED_LOCATION.
* rtl.h (NOTE_DELETED_LABEL_NAME):  New macro.
(NOTE_SOURCE_LOCATION, NOTE_EXPNDED_LOCATION, SET_INSN_DELETED):
New conditional macros.
(ASM_OPERANDS_SOURCE_FILE, ASM_OPERANDS_SOURCE_LINE):  Replace
by ASM_OPERANDS_SOURCE_LOCATION if USE_MAPPED_LOCATION.
* tree.h (EXPR_LOCATION, SET_EXPR_LOCATION, EXPR_HAS_LOCATION,
EXPR_LOCUS, SET_EXPR_LOCUS, EXPR_FILENAME, EXPR_LINENO,
DECL_IS_BUILTIN):  New macros, most depending on USE_MAPPED__LOCATION.
(tree_exp):  Change type of locus to use new source_locus typedef.
* tree.c (build1_stat):  Use SET_EXPR_LOCATION.
(annotate_with_locus, annotate_with_file_line):  Conditionalize.
(expand_location):  New function.
* toplev.c (unknown_location):  New static, when USE_MAPPED_LOCATION.
(push_srcloc, pop_loc):  Adjust parameter handling.
(process_options):  Don't set input_filename by itself.
(lang_dependent_init):  Save, set input_location to <built-in>.
(warn_deprecated_use):  Use expand_location.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@83918 138bc75d-0d04-0410-961f-82ee72b054a4
gcc/ChangeLog
gcc/input.h
gcc/rtl.def
gcc/rtl.h
gcc/toplev.c
gcc/tree.c
gcc/tree.h