Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Zwinkau
libfirm
Commits
aeccc4a8
Commit
aeccc4a8
authored
Oct 19, 2001
by
Boris Boesler
Browse files
renamed get_type_nameid to get_type_ident
[r263]
parent
10e573a4
Changes
5
Hide whitespace changes
Inline
Side-by-side
ir/ir/irdump.c
View file @
aeccc4a8
...
...
@@ -79,8 +79,8 @@ dump_node_opcode (ir_node *n)
xfprintf
(
F
,
"%I"
,
get_SymConst_ptrinfo
(
n
));
}
else
{
assert
(
get_kind
(
get_SymConst_type
(
n
))
==
k_type
);
assert
(
get_type_
nameid
(
get_SymConst_type
(
n
)));
xfprintf
(
F
,
"%s "
,
id_to_str
(
get_type_
nameid
(
get_SymConst_type
(
n
))));
assert
(
get_type_
ident
(
get_SymConst_type
(
n
)));
xfprintf
(
F
,
"%s "
,
id_to_str
(
get_type_
ident
(
get_SymConst_type
(
n
))));
if
(
get_SymConst_kind
==
type_tag
)
xfprintf
(
F
,
"tag"
);
else
...
...
@@ -323,7 +323,7 @@ dump_ir_node (ir_node *n)
break
;
case
iro_SymConst
:
assert
(
get_kind
(
get_SymConst_type
(
n
))
==
k_type
);
assert
(
get_type_
nameid
(
get_SymConst_type
(
n
)));
assert
(
get_type_
ident
(
get_SymConst_type
(
n
)));
xfprintf
(
F
,
"
\"
%s "
,
get_type_name
(
get_SymConst_type
(
n
)));
switch
(
n
->
attr
.
i
.
num
){
case
type_tag
:
...
...
@@ -512,7 +512,7 @@ dump_type_info (type_or_ent *tore, void *env) {
{
/* why can't I cast here??? @@@ */
type
*
type
=
tore
;
xfprintf
(
F
,
"
\"
%I %I"
,
get_type_tpop_nameid
(
type
),
get_type_
nameid
(
type
));
xfprintf
(
F
,
"
\"
%I %I"
,
get_type_tpop_nameid
(
type
),
get_type_
ident
(
type
));
switch
(
get_type_tpop_code
(
type
))
{
case
tpo_class
:
...
...
ir/ir/irnode.c
View file @
aeccc4a8
...
...
@@ -147,7 +147,7 @@ ir_node_print (XP_PAR1, const xprintf_info *info ATTRIBUTE((unused)), XP_PARN)
XPF1
(
"%I"
,
get_irn_mode
(
np
)
->
name
);
XPC
(
" "
);
XP
(
symconst_name_arr
[
get_irn_symconst_attr
(
np
).
num
]);
XPF1
(
" %#N"
,
get_type_
nameid
(
get_SymConst_type
(
np
)));
XPF1
(
" %#N"
,
get_type_
ident
(
get_SymConst_type
(
np
)));
break
;
case
iro_Start
:
/* don't dump mode of these */
case
iro_Cond
:
...
...
ir/ir/old_fctnames.h
View file @
aeccc4a8
...
...
@@ -8,6 +8,9 @@
*/
#ifndef __OLD_FCTNAMES_H__
#define __OLD_FCTNAMES_H__
/* irgraph */
#define get_irg_params get_irg_n_loc
#define set_irg_params set_irg_n_loc
...
...
@@ -23,7 +26,8 @@
#define get_fsigned_of_mode get_mode_fsigned
#define get_ffloat_of_mode get_mode_ffloat
/* type.h */
#define get_type_nameid(_t_) get_type_ident(_t_)
#define set_type_nameid(_t_,_i_) set_type_ident(_t_,_i_)
#define
#define
#endif
ir/tr/type.c
View file @
aeccc4a8
...
...
@@ -100,18 +100,22 @@ ident* get_type_tpop_nameid(type *tp) {
assert
(
tp
);
return
tp
->
type_op
->
name
;
}
const
char
*
get_type_tpop_name
(
type
*
tp
)
{
assert
(
tp
);
return
id_to_str
(
tp
->
type_op
->
name
);
}
tp_opcode
get_type_tpop_code
(
type
*
tp
)
{
assert
(
tp
);
return
tp
->
type_op
->
code
;
}
ir_mode
*
get_type_mode
(
type
*
tp
)
{
assert
(
tp
);
return
tp
->
mode
;
}
void
set_type_mode
(
type
*
tp
,
ir_mode
*
m
)
{
assert
(
tp
);
tp
->
mode
=
m
;
...
...
@@ -119,18 +123,22 @@ void set_type_mode(type *tp, ir_mode* m) {
if
((
tp
->
type_op
==
type_pointer
)
||
(
tp
->
type_op
==
type_primitive
))
tp
->
size
==
get_mode_size
(
m
);
}
ident
*
get_type_nameid
(
type
*
tp
)
{
ident
*
get_type_ident
(
type
*
tp
)
{
assert
(
tp
);
return
tp
->
name
;
}
void
set_type_nameid
(
type
*
tp
,
ident
*
id
)
{
void
set_type_ident
(
type
*
tp
,
ident
*
id
)
{
assert
(
tp
);
tp
->
name
=
id
;
}
const
char
*
get_type_name
(
type
*
tp
)
{
assert
(
tp
);
return
id_to_str
(
tp
->
name
);
}
int
get_type_size
(
type
*
tp
)
{
assert
(
tp
);
return
tp
->
size
;
...
...
ir/tr/type.h
View file @
aeccc4a8
...
...
@@ -102,8 +102,8 @@ tp_opcode get_type_tpop_code(type *tp);
ir_mode
*
get_type_mode
(
type
*
tp
);
void
set_type_mode
(
type
*
tp
,
ir_mode
*
m
);
ident
*
get_type_
nameid
(
type
*
tp
);
void
set_type_
nameid
(
type
*
tp
,
ident
*
id
);
ident
*
get_type_
ident
(
type
*
tp
);
void
set_type_
ident
(
type
*
tp
,
ident
*
id
);
const
char
*
get_type_name
(
type
*
tp
);
int
get_type_size
(
type
*
tp
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment