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
e7a42772
Commit
e7a42772
authored
Sep 23, 1993
by
Jan Brittenson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
changed bytecode rtx structure references into macros
From-SVN: r5435
parent
5b7ded0d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
12 deletions
+18
-12
gcc/expr.c
+14
-9
gcc/function.c
+4
-3
No files found.
gcc/expr.c
View file @
e7a42772
...
...
@@ -5738,13 +5738,14 @@ bc_expand_expr (exp)
abort
();
#if 0
if (
DECL_RTL (exp)->label
)
if (
BYTECODE_LABEL (DECL_RTL (exp))
)
bc_load_externaddr (DECL_RTL (exp));
else
bc_load_localaddr (DECL_RTL (exp));
#endif
if
(
TREE_PUBLIC
(
exp
))
bc_load_externaddr_id
(
DECL_ASSEMBLER_NAME
(
exp
),
DECL_RTL
(
exp
)
->
offset
);
bc_load_externaddr_id
(
DECL_ASSEMBLER_NAME
(
exp
),
BYTECODE_BC_LABEL
(
DECL_RTL
(
exp
))
->
offset
);
else
bc_load_localaddr
(
DECL_RTL
(
exp
));
...
...
@@ -9103,7 +9104,8 @@ bc_load_externaddr (externaddr)
rtx
externaddr
;
{
bc_emit_bytecode
(
constP
);
bc_emit_code_labelref
(
externaddr
->
label
,
externaddr
->
offset
);
bc_emit_code_labelref
(
BYTECODE_LABEL
(
externaddr
),
BYTECODE_BC_LABEL
(
externaddr
)
->
offset
);
#ifdef DEBUG_PRINT_CODE
fputc
(
'\n'
,
stderr
);
...
...
@@ -9144,7 +9146,7 @@ void
bc_load_localaddr
(
localaddr
)
rtx
localaddr
;
{
bc_emit_instruction
(
localP
,
(
HOST_WIDE_INT
)
localaddr
->
offset
);
bc_emit_instruction
(
localP
,
(
HOST_WIDE_INT
)
BYTECODE_BC_LABEL
(
localaddr
)
->
offset
);
}
...
...
@@ -9154,7 +9156,8 @@ void
bc_load_parmaddr
(
parmaddr
)
rtx
parmaddr
;
{
bc_emit_instruction
(
argP
,
(
HOST_WIDE_INT
)
parmaddr
->
offset
/
BITS_PER_UNIT
);
bc_emit_instruction
(
argP
,
((
HOST_WIDE_INT
)
BYTECODE_BC_LABEL
(
parmaddr
)
->
offset
/
BITS_PER_UNIT
));
}
...
...
@@ -9301,7 +9304,8 @@ bc_expand_address (exp)
case
FUNCTION_DECL
:
bc_load_externaddr_id
(
DECL_ASSEMBLER_NAME
(
exp
),
DECL_RTL
(
exp
)
->
offset
);
bc_load_externaddr_id
(
DECL_ASSEMBLER_NAME
(
exp
),
BYTECODE_BC_LABEL
(
DECL_RTL
(
exp
))
->
offset
);
break
;
case
PARM_DECL
:
...
...
@@ -9328,12 +9332,13 @@ bc_expand_address (exp)
case
VAR_DECL
:
#if 0
if (
DECL_RTL (exp)->label
)
if (
BYTECODE_LABEL (DECL_RTL (exp))
)
bc_load_externaddr (DECL_RTL (exp));
#endif
if
(
DECL_EXTERNAL
(
exp
))
bc_load_externaddr_id
(
DECL_ASSEMBLER_NAME
(
exp
),
DECL_RTL
(
exp
)
->
offset
);
bc_load_externaddr_id
(
DECL_ASSEMBLER_NAME
(
exp
),
BYTECODE_BC_OFFSET
(
DECL_RTL
(
exp
)));
else
bc_load_localaddr
(
DECL_RTL
(
exp
));
...
...
@@ -9355,7 +9360,7 @@ bc_expand_address (exp)
bc_emit_bytecode
(
constP
);
r
=
output_constant_def
(
exp
);
bc_emit_code_labelref
(
r
->
label
,
r
->
offset
);
bc_emit_code_labelref
(
BYTECODE_LABEL
(
r
),
BYTECODE_BC_LABEL
(
r
)
->
offset
);
#ifdef DEBUG_PRINT_CODE
fputc
(
'\n'
,
stderr
);
...
...
gcc/function.c
View file @
e7a42772
...
...
@@ -4590,7 +4590,8 @@ bc_expand_function_start (subr, parms_have_cleanups)
++
nlab
;
name
=
(
char
*
)
obstack_copy0
(
&
permanent_obstack
,
label
,
strlen
(
label
));
this_function_callinfo
=
bc_gen_rtx
(
name
,
0
,
(
struct
bc_label
*
)
0
);
this_function_bytecode
=
bc_emit_trampoline
(
this_function_callinfo
->
label
);
this_function_bytecode
=
bc_emit_trampoline
(
BYTECODE_LABEL
(
this_function_callinfo
));
}
...
...
@@ -4616,12 +4617,12 @@ bc_expand_function_end ()
/* If this changes also make sure to change bc-interp.h! */
bc_emit_const_labeldef
(
this_function_callinfo
->
label
);
bc_emit_const_labeldef
(
BYTECODE_LABEL
(
this_function_callinfo
)
);
bc_emit_const
((
char
*
)
&
max_stack_depth
,
sizeof
max_stack_depth
);
bc_emit_const
((
char
*
)
&
local_vars_size
,
sizeof
local_vars_size
);
bc_emit_const_labelref
(
this_function_bytecode
,
0
);
bc_emit_const_labelref
(
ptrconsts
,
0
);
bc_emit_const_labelref
(
this_function_calldesc
->
label
,
0
);
bc_emit_const_labelref
(
BYTECODE_LABEL
(
this_function_calldesc
)
,
0
);
}
...
...
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