Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
c0920bf9
Commit
c0920bf9
authored
Mar 29, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r621
parent
b1166fae
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
6 deletions
+13
-6
gcc/print-tree.c
+6
-2
gcc/tree.c
+2
-1
gcc/tree.h
+5
-3
No files found.
gcc/print-tree.c
View file @
c0920bf9
...
...
@@ -343,8 +343,12 @@ print_node (file, prefix, node, indent)
print_node
(
file
,
"size"
,
DECL_SIZE
(
node
),
indent
+
4
);
indent_to
(
file
,
indent
+
3
);
fprintf
(
file
,
" align %d"
,
DECL_ALIGN
(
node
));
fprintf
(
file
,
" frame_size %d"
,
DECL_FRAME_SIZE
(
node
));
if
(
TREE_CODE
(
node
)
!=
FUNCTION_DECL
)
fprintf
(
file
,
" align %d"
,
DECL_ALIGN
(
node
));
else
if
(
TREE_INLINE
(
node
))
fprintf
(
file
,
" frame_size %d"
,
DECL_FRAME_SIZE
(
node
));
else
if
(
DECL_BUILT_IN
(
node
))
fprintf
(
file
,
" built-in code %d"
,
DECL_FUNCTION_CODE
(
node
));
if
(
TREE_CODE
(
node
)
==
FIELD_DECL
)
print_node
(
file
,
"bitpos"
,
DECL_FIELD_BITPOS
(
node
),
indent
+
4
);
print_node_brief
(
file
,
"context"
,
DECL_CONTEXT
(
node
),
indent
+
4
);
...
...
gcc/tree.c
View file @
c0920bf9
...
...
@@ -859,7 +859,8 @@ make_node (code)
break
;
case
'd'
:
DECL_ALIGN
(
t
)
=
1
;
if
(
code
!=
FUNCTION_DECL
)
DECL_ALIGN
(
t
)
=
1
;
DECL_SOURCE_LINE
(
t
)
=
lineno
;
DECL_SOURCE_FILE
(
t
)
=
(
input_filename
)
?
input_filename
:
"<built-in>"
;
break
;
...
...
gcc/tree.h
View file @
c0920bf9
...
...
@@ -666,7 +666,7 @@ struct tree_type
Need not be constant. */
#define DECL_SIZE(NODE) ((NODE)->decl.size)
/* Holds the alignment required for the datum. */
#define DECL_ALIGN(NODE) ((NODE)->decl.
align
)
#define DECL_ALIGN(NODE) ((NODE)->decl.
frame_size
)
/* Holds the machine mode of a variable or field. */
#define DECL_MODE(NODE) ((NODE)->decl.mode)
/* Holds the RTL expression for the value of a variable or function. */
...
...
@@ -771,7 +771,6 @@ struct tree_decl
#else
enum
machine_mode
mode
:
8
;
#endif
unsigned
char
align
;
unsigned
external_flag
:
1
;
unsigned
nonlocal_flag
:
1
;
...
...
@@ -801,7 +800,10 @@ struct tree_decl
union
tree_node
*
assembler_name
;
struct
rtx_def
*
rtl
;
/* acts as link to register transfer language
(rtl) info */
int
frame_size
;
/* For FUNCTION_DECLs: size of stack frame */
/* For a FUNCTION_DECL, if inline, this is the size of frame needed.
If built-in, this is the code for which built-in function.
For any other kind of decl, this is the alignment. */
int
frame_size
;
struct
rtx_def
*
saved_insns
;
/* For FUNCTION_DECLs: points to insn that
constitutes its definition on the
permanent obstack. */
...
...
Write
Preview
Markdown
is supported
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