aboutsummaryrefslogtreecommitdiff
path: root/gcc/hooks.c
blob: 20aaa6e919cb335cd2b049a3cd56887f1e6d151d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/* General-purpose hooks.
   Copyright (C) 2002 Free Software Foundation, Inc.

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 2, 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, write to the Free Software
Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

 In other words, you are welcome to use, share and improve this program.
 You are forbidden to forbid anyone else to use, share and improve
 what you give them.   Help stamp out software-hoarding!  */

/* This file contains generic hooks that can be used as defaults for
   target or language-dependent hook initializers.  */

#include "config.h"
#include "system.h"
#include "hooks.h"

/* Generic hook that does absolutely zappo.  */
void
hook_void_void ()
{
}

/* Generic hook that takes no arguments and returns false.  */
bool
hook_void_bool_false ()
{
  return false;
}

/* Generic hook that takes (tree) and returns false.  */
bool
hook_tree_bool_false (a)
     tree a ATTRIBUTE_UNUSED;
{
  return false;
}

/* Generic hook that takes (tree, int) and does nothing.  */
void
hook_tree_int_void (a, b)
     tree a ATTRIBUTE_UNUSED;
     int b ATTRIBUTE_UNUSED;
{
}

/* Generic hook that takes (FILE *, const char *) and does nothing.  */
void
hook_FILEptr_constcharptr_void (a, b)
     FILE *a ATTRIBUTE_UNUSED;
     const char *b ATTRIBUTE_UNUSED;
{
}

/* Used for the TARGET_ASM_CAN_OUTPUT_MI_THUNK hook.  */
bool
hook_bool_tree_hwi_hwi_tree_false (a, b, c, d)
     tree a ATTRIBUTE_UNUSED;
     HOST_WIDE_INT b ATTRIBUTE_UNUSED;
     HOST_WIDE_INT c ATTRIBUTE_UNUSED;
     tree d ATTRIBUTE_UNUSED;
{
  return false;
}

bool
hook_bool_tree_hwi_hwi_tree_true (a, b, c, d)
     tree a ATTRIBUTE_UNUSED;
     HOST_WIDE_INT b ATTRIBUTE_UNUSED;
     HOST_WIDE_INT c ATTRIBUTE_UNUSED;
     tree d ATTRIBUTE_UNUSED;
{
  return true;
}

bool
default_can_output_mi_thunk_no_vcall (a, b, c, d)
     tree a ATTRIBUTE_UNUSED;
     HOST_WIDE_INT b ATTRIBUTE_UNUSED;
     HOST_WIDE_INT c;
     tree d ATTRIBUTE_UNUSED;
{
  return c == 0;
}

/* Hook that takes two trees and returns false.  */
bool
hook_tree_tree_bool_false (a, b)
     tree a ATTRIBUTE_UNUSED;
     tree b ATTRIBUTE_UNUSED;
{
  return false;
}