aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>2000-05-04 17:58:40 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2000-05-04 17:58:40 +0000
commit362440248c3d5f5805aeb52c21c20036f0dbb361 (patch)
tree1e440c93b0cf9b6ab0028a87f03704e2286e4b61 /gcc
parent57c578a6bfed5ffa4da16984b9f92a41d5bd68cb (diff)
downloadgcc-362440248c3d5f5805aeb52c21c20036f0dbb361.zip
gcc-362440248c3d5f5805aeb52c21c20036f0dbb361.tar.gz
gcc-362440248c3d5f5805aeb52c21c20036f0dbb361.tar.bz2
bb-reorder.c (get_next_bb_note, [...]): Prototype.
* bb-reorder.c (get_next_bb_note, get_prev_bb_note): Prototype. * diagnostic (vbuild_message_string, build_message_string, build_location_prefix, output_get_prefix, init_output_buffer, output_notice, vline_wrapper_message_with_location, v_message_with_decl, default_print_error_function): De-constify. (set_real_maximum_length): Prototype. * diagnostic.h (struct output_buffer, init_output_buffer, output_get_prefix, output_set_prefix): De-constify. * function.c (init_function_start): Constify. * gensupport.c (remove_constraints, process_rtx): Prototype. * gthr-posix.h: Indent uses of #pragma. * objc/objc-act.c (ggc_mark_imp_list, ggc_mark_hash_table): Prototype. * predict.c (find_expected_value): Delete prototype. (expected_value_to_br_prob): Initialize variable `ev_reg'. * sbitmap.h (debug_sbitmap): Prototype. * ssa.c (compute_coalesced_reg_partition): Prototype. * stor-layout.c (debug_rli): Prototype. * tree.h (round_down): Prototype. (init_function_start): Constify. ch: * ch-tree.h (init_function_start): Constify. From-SVN: r33675
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog34
-rw-r--r--gcc/bb-reorder.c2
-rw-r--r--gcc/ch/ChangeLog4
-rw-r--r--gcc/ch/ch-tree.h2
-rw-r--r--gcc/diagnostic.c31
-rw-r--r--gcc/diagnostic.h8
-rw-r--r--gcc/function.c2
-rw-r--r--gcc/gensupport.c3
-rw-r--r--gcc/gthr-posix.h20
-rw-r--r--gcc/objc/objc-act.c2
-rw-r--r--gcc/predict.c4
-rw-r--r--gcc/sbitmap.h1
-rw-r--r--gcc/ssa.c2
-rw-r--r--gcc/stor-layout.c1
-rw-r--r--gcc/tree.h3
15 files changed, 83 insertions, 36 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 0fcc6a5..f5cacba 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,37 @@
+2000-05-04 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
+
+ * bb-reorder.c (get_next_bb_note, get_prev_bb_note): Prototype.
+
+ * diagnostic (vbuild_message_string, build_message_string,
+ build_location_prefix, output_get_prefix, init_output_buffer,
+ output_notice, vline_wrapper_message_with_location,
+ v_message_with_decl, default_print_error_function): De-constify.
+ (set_real_maximum_length): Prototype.
+
+ * diagnostic.h (struct output_buffer, init_output_buffer,
+ output_get_prefix, output_set_prefix): De-constify.
+
+ * function.c (init_function_start): Constify.
+
+ * gensupport.c (remove_constraints, process_rtx): Prototype.
+
+ * gthr-posix.h: Indent uses of #pragma.
+
+ * objc/objc-act.c (ggc_mark_imp_list, ggc_mark_hash_table):
+ Prototype.
+
+ * predict.c (find_expected_value): Delete prototype.
+ (expected_value_to_br_prob): Initialize variable `ev_reg'.
+
+ * sbitmap.h (debug_sbitmap): Prototype.
+
+ * ssa.c (compute_coalesced_reg_partition): Prototype.
+
+ * stor-layout.c (debug_rli): Prototype.
+
+ * tree.h (round_down): Prototype.
+ (init_function_start): Constify.
+
2000-05-04 Zack Weinberg <zack@wolery.cumb.org>
* cpphash.h: #define __extension__ away if GCC_VERSION < 2095
diff --git a/gcc/bb-reorder.c b/gcc/bb-reorder.c
index 0b1a77f..83c2845 100644
--- a/gcc/bb-reorder.c
+++ b/gcc/bb-reorder.c
@@ -166,6 +166,8 @@ static void free_scope_forest_1 PARAMS ((scope));
static void free_scope_forest PARAMS ((scope_forest_info *));
void dump_scope_forest PARAMS ((scope_forest_info *));
static void dump_scope_forest_1 PARAMS ((scope, int));
+static rtx get_next_bb_note PARAMS ((rtx));
+static rtx get_prev_bb_note PARAMS ((rtx));
/* Skip over inter-block insns occurring after BB which are typically
associated with BB (e.g., barriers). If there are any such insns,
diff --git a/gcc/ch/ChangeLog b/gcc/ch/ChangeLog
index 9e6eb47..fe84211 100644
--- a/gcc/ch/ChangeLog
+++ b/gcc/ch/ChangeLog
@@ -1,3 +1,7 @@
+2000-05-04 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
+
+ * ch-tree.h (init_function_start): Constify.
+
2000-04-18 Zack Weinberg <zack@wolery.cumb.org>
* ch/lex.c: Remove references to cccp.c.
diff --git a/gcc/ch/ch-tree.h b/gcc/ch/ch-tree.h
index 0483a1d..953a1dc 100644
--- a/gcc/ch/ch-tree.h
+++ b/gcc/ch/ch-tree.h
@@ -1113,7 +1113,7 @@ extern void validate_varying_array_ref PARAMS ((tree, tree));
/* in function.c */
extern void expand_function_end PARAMS ((char *, int, int));
extern void expand_function_start PARAMS ((tree, int));
-extern void init_function_start PARAMS ((tree, char *, int));
+extern void init_function_start PARAMS ((tree, const char *, int));
extern void pop_function_context PARAMS ((void));
extern void push_function_context PARAMS ((void));
diff --git a/gcc/diagnostic.c b/gcc/diagnostic.c
index 93678ac..369d4a3 100644
--- a/gcc/diagnostic.c
+++ b/gcc/diagnostic.c
@@ -45,10 +45,10 @@ Boston, MA 02111-1307, USA. */
/* Prototypes. */
static int doing_line_wrapping PARAMS ((void));
-static const char *vbuild_message_string PARAMS ((const char *, va_list));
-static const char *build_message_string PARAMS ((const char *, ...))
+static char *vbuild_message_string PARAMS ((const char *, va_list));
+static char *build_message_string PARAMS ((const char *, ...))
ATTRIBUTE_PRINTF_1;
-static const char *build_location_prefix PARAMS ((const char *, int, int));
+static char *build_location_prefix PARAMS ((const char *, int, int));
static void output_notice PARAMS ((output_buffer *, const char *));
static void line_wrapper_printf PARAMS ((FILE *, const char *, ...))
ATTRIBUTE_PRINTF_2;
@@ -78,6 +78,7 @@ static void v_pedwarn_with_file_and_line PARAMS ((const char *, int,
static void vsorry PARAMS ((const char *, va_list));
static void report_file_and_line PARAMS ((const char *, int, int));
static void vnotice PARAMS ((FILE *, const char *, va_list));
+static void set_real_maximum_length PARAMS ((output_buffer *));
extern int rtl_dump_and_exit;
extern int inhibit_warnings;
@@ -135,7 +136,7 @@ output_is_line_wrapping (buffer)
}
/* Return BUFFER's prefix. */
-const char *
+char *
output_get_prefix (buffer)
const output_buffer *buffer;
{
@@ -178,7 +179,7 @@ output_set_maximum_length (buffer, length)
void
output_set_prefix (buffer, prefix)
output_buffer *buffer;
- const char *prefix;
+ char *prefix;
{
buffer->prefix = prefix;
set_real_maximum_length (buffer);
@@ -189,7 +190,7 @@ output_set_prefix (buffer, prefix)
void
init_output_buffer (buffer, prefix, maximum_length)
output_buffer *buffer;
- const char *prefix;
+ char *prefix;
int maximum_length;
{
obstack_init (&buffer->obstack);
@@ -397,7 +398,7 @@ output_format (buffer, msg)
output_finish (buffer);
}
-static const char *
+static char *
vbuild_message_string (msgid, ap)
const char *msgid;
va_list ap;
@@ -411,14 +412,14 @@ vbuild_message_string (msgid, ap)
/* Return a malloc'd string containing MSGID formatted a la
printf. The caller is reponsible for freeing the memory. */
-static const char *
+static char *
build_message_string VPARAMS ((const char *msgid, ...))
{
#ifndef ANSI_PROTOTYPES
const char *msgid;
#endif
va_list ap;
- const char *str;
+ char *str;
VA_START (ap, msgid);
@@ -437,7 +438,7 @@ build_message_string VPARAMS ((const char *msgid, ...))
/* Return a malloc'd string describing a location. The caller is
responsible for freeing the memory. */
-static const char *
+static char *
build_location_prefix (file, line, warn)
const char *file;
int line;
@@ -466,10 +467,10 @@ output_notice (buffer, msgid)
output_buffer *buffer;
const char *msgid;
{
- const char *message = vbuild_message_string (msgid, buffer->format_args);
+ char *message = vbuild_message_string (msgid, buffer->format_args);
output_add_string (buffer, message);
- free ((char *) message);
+ free (message);
}
@@ -540,7 +541,7 @@ vline_wrapper_message_with_location (file, line, warn, msgid, ap)
output_notice (&buffer, msgid);
output_flush_on (&buffer, stderr);
- free ((char*) output_get_prefix (&buffer));
+ free (output_get_prefix (&buffer));
fputc ('\n', stderr);
}
@@ -688,7 +689,7 @@ v_message_with_decl (decl, warn, msgid, ap)
if (doing_line_wrapping())
{
output_flush_on (&buffer, stderr);
- free ((char *) output_get_prefix (&buffer));
+ free (output_get_prefix (&buffer));
}
fputc ('\n', stderr);
@@ -1137,7 +1138,7 @@ default_print_error_function (file)
{
if (last_error_function != current_function_decl)
{
- const char *prefix = NULL;
+ char *prefix = NULL;
output_buffer buffer;
if (file)
diff --git a/gcc/diagnostic.h b/gcc/diagnostic.h
index d60d240..d6a5748 100644
--- a/gcc/diagnostic.h
+++ b/gcc/diagnostic.h
@@ -40,7 +40,7 @@ struct output_buffer
/* The obstack where the text is built up. */
struct obstack obstack;
/* The prefix for each new line. */
- const char *prefix;
+ char *prefix;
/* The amount of characters output so far. */
int line_length;
/* The real upper bound of number of characters per line, taking into
@@ -72,10 +72,10 @@ struct output_buffer
extern printer_fn lang_printer;
/* Prototypes */
-void init_output_buffer PARAMS ((output_buffer *, const char *, int));
+void init_output_buffer PARAMS ((output_buffer *, char *, int));
void output_clear PARAMS ((output_buffer *));
-const char *output_get_prefix PARAMS ((const output_buffer *));
-void output_set_prefix PARAMS ((output_buffer *, const char *));
+char *output_get_prefix PARAMS ((const output_buffer *));
+void output_set_prefix PARAMS ((output_buffer *, char *));
void output_set_maximum_length PARAMS ((output_buffer *, int));
void output_emit_prefix PARAMS ((output_buffer *));
void output_add_newline PARAMS ((output_buffer *));
diff --git a/gcc/function.c b/gcc/function.c
index 6815ab8..a0038d1 100644
--- a/gcc/function.c
+++ b/gcc/function.c
@@ -5960,7 +5960,7 @@ init_dummy_function_start ()
void
init_function_start (subr, filename, line)
tree subr;
- char *filename;
+ const char *filename;
int line;
{
prepare_function_start ();
diff --git a/gcc/gensupport.c b/gcc/gensupport.c
index 35ef018..9e77a97 100644
--- a/gcc/gensupport.c
+++ b/gcc/gensupport.c
@@ -37,6 +37,9 @@ struct queue_elem {
static struct queue_elem *rtx_ready_queue;
+static void remove_constraints PARAMS ((rtx));
+static void process_rtx PARAMS ((rtx *));
+
/* Recursively remove constraints from an rtx. */
static void
diff --git a/gcc/gthr-posix.h b/gcc/gthr-posix.h
index f420e5f..1b765d2 100644
--- a/gcc/gthr-posix.h
+++ b/gcc/gthr-posix.h
@@ -45,16 +45,16 @@ typedef pthread_mutex_t __gthread_mutex_t;
#if SUPPORTS_WEAK && GTHREAD_USE_WEAK
-#pragma weak pthread_once
-#pragma weak pthread_key_create
-#pragma weak pthread_key_delete
-#pragma weak pthread_getspecific
-#pragma weak pthread_setspecific
-#pragma weak pthread_create
-
-#pragma weak pthread_mutex_lock
-#pragma weak pthread_mutex_trylock
-#pragma weak pthread_mutex_unlock
+ #pragma weak pthread_once
+ #pragma weak pthread_key_create
+ #pragma weak pthread_key_delete
+ #pragma weak pthread_getspecific
+ #pragma weak pthread_setspecific
+ #pragma weak pthread_create
+
+ #pragma weak pthread_mutex_lock
+ #pragma weak pthread_mutex_trylock
+ #pragma weak pthread_mutex_unlock
static void *__gthread_active_ptr = &pthread_create;
diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c
index 4225837..25eac5f 100644
--- a/gcc/objc/objc-act.c
+++ b/gcc/objc/objc-act.c
@@ -341,6 +341,8 @@ static void handle_class_ref PARAMS ((tree));
static void generate_struct_by_value_array PARAMS ((void))
ATTRIBUTE_NORETURN;
static void objc_act_parse_init PARAMS ((void));
+static void ggc_mark_imp_list PARAMS ((void *));
+static void ggc_mark_hash_table PARAMS ((void *));
/*** Private Interface (data) ***/
diff --git a/gcc/predict.c b/gcc/predict.c
index 6900f0e..b957e5f6 100644
--- a/gcc/predict.c
+++ b/gcc/predict.c
@@ -216,12 +216,10 @@ estimate_probability (loops_info)
expected values of registers. Generate branch probabilities
based off these values. */
-static rtx find_expected_value PARAMS ((rtx, rtx));
-
void
expected_value_to_br_prob ()
{
- rtx insn, cond, ev = NULL_RTX, ev_reg;
+ rtx insn, cond, ev = NULL_RTX, ev_reg = NULL_RTX;
for (insn = get_insns (); insn ; insn = NEXT_INSN (insn))
{
diff --git a/gcc/sbitmap.h b/gcc/sbitmap.h
index ade0c59..125979b 100644
--- a/gcc/sbitmap.h
+++ b/gcc/sbitmap.h
@@ -135,4 +135,5 @@ extern void sbitmap_intersection_of_preds PARAMS ((sbitmap, sbitmap *, int));
extern void sbitmap_union_of_succs PARAMS ((sbitmap, sbitmap *, int));
extern void sbitmap_union_of_preds PARAMS ((sbitmap, sbitmap *, int));
+extern void debug_sbitmap PARAMS ((sbitmap));
#endif /* _SBITMAP_H */
diff --git a/gcc/ssa.c b/gcc/ssa.c
index 979f111..b89bf15 100644
--- a/gcc/ssa.c
+++ b/gcc/ssa.c
@@ -153,7 +153,7 @@ static int coalesce_reg_in_phi
static int coalesce_regs_in_successor_phi_nodes
PARAMS ((basic_block bb, partition p, conflict_graph conflicts));
static partition compute_coalesced_reg_partition
- PARAMS (());
+ PARAMS ((void));
static int mark_reg_in_phi
PARAMS ((rtx *ptr, void *data));
static void mark_phi_and_copy_regs
diff --git a/gcc/stor-layout.c b/gcc/stor-layout.c
index 3336cc8..c5c69e3 100644
--- a/gcc/stor-layout.c
+++ b/gcc/stor-layout.c
@@ -53,6 +53,7 @@ unsigned int set_alignment = 0;
static void finalize_record_size PARAMS ((record_layout_info));
static void finalize_type_size PARAMS ((tree));
static void place_union_field PARAMS ((record_layout_info, tree));
+extern void debug_rli PARAMS ((record_layout_info));
/* SAVE_EXPRs for sizes of types and decls, waiting to be expanded. */
diff --git a/gcc/tree.h b/gcc/tree.h
index 84ae937..a6e122f 100644
--- a/gcc/tree.h
+++ b/gcc/tree.h
@@ -2069,6 +2069,7 @@ extern tree size_int_type_wide PARAMS ((HOST_WIDE_INT, tree));
#define sbitsize_int(L) size_int_wide ((HOST_WIDE_INT) (L), SBITSIZETYPE)
extern tree round_up PARAMS ((tree, int));
+extern tree round_down PARAMS ((tree, int));
extern tree get_pending_sizes PARAMS ((void));
extern void put_pending_sizes PARAMS ((tree));
@@ -2674,7 +2675,7 @@ extern void mark_varargs PARAMS ((void));
extern void init_dummy_function_start PARAMS ((void));
extern void expand_dummy_function_end PARAMS ((void));
extern void init_function_for_compilation PARAMS ((void));
-extern void init_function_start PARAMS ((tree, char *, int));
+extern void init_function_start PARAMS ((tree, const char *, int));
extern void assign_parms PARAMS ((tree));
extern void put_var_into_stack PARAMS ((tree));
extern void flush_addressof PARAMS ((tree));