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
d090a5aa
Commit
d090a5aa
authored
Mar 22, 2011
by
Richard Henderson
Committed by
Richard Henderson
Mar 22, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* dwarf2out.c (dwarf2out_frame_debug_expr) [rule 11]: Handle post_dec.
From-SVN: r171296
parent
bdfe906f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
gcc/ChangeLog
+2
-0
gcc/dwarf2out.c
+7
-3
No files found.
gcc/ChangeLog
View file @
d090a5aa
...
...
@@ -16,6 +16,8 @@
(*pushhi, *pushsi, *pushsf, popqi): Likewise.
(pophi): Remove.
* dwarf2out.c (dwarf2out_frame_debug_expr) [rule 11]: Handle post_dec.
2011-03-22 Nathan Froyd <froydnj@codesourcery.com>
* tree.c (build_call_1): New function.
...
...
gcc/dwarf2out.c
View file @
d090a5aa
...
...
@@ -2239,7 +2239,7 @@ dwarf2out_frame_debug_cfa_restore (rtx reg, const char *label)
cfa.base_offset = -cfa_store.offset
Rule 11:
(set (mem ({pre_inc,pre_dec} sp:cfa_store.reg)) <reg>)
(set (mem ({pre_inc,pre_dec
,post_dec
} sp:cfa_store.reg)) <reg>)
effects: cfa_store.offset += -/+ mode_size(mem)
cfa.offset = cfa_store.offset if cfa.reg == sp
cfa.reg = sp
...
...
@@ -2258,7 +2258,7 @@ dwarf2out_frame_debug_cfa_restore (rtx reg, const char *label)
cfa.base_offset = -{cfa_store,cfa_temp}.offset
Rule 14:
(set (mem (postinc <reg1>:cfa_temp <const_int>)) <reg2>)
(set (mem (post
_
inc <reg1>:cfa_temp <const_int>)) <reg2>)
effects: cfa.reg = <reg1>
cfa.base_offset = -cfa_temp.offset
cfa_temp.offset -= mode_size(mem)
...
...
@@ -2591,6 +2591,7 @@ dwarf2out_frame_debug_expr (rtx expr, const char *label)
/* Rule 11 */
case
PRE_INC
:
case
PRE_DEC
:
case
POST_DEC
:
offset
=
GET_MODE_SIZE
(
GET_MODE
(
dest
));
if
(
GET_CODE
(
XEXP
(
dest
,
0
))
==
PRE_INC
)
offset
=
-
offset
;
...
...
@@ -2615,7 +2616,10 @@ dwarf2out_frame_debug_expr (rtx expr, const char *label)
if
(
cfa
.
reg
==
STACK_POINTER_REGNUM
)
cfa
.
offset
=
cfa_store
.
offset
;
offset
=
-
cfa_store
.
offset
;
if
(
GET_CODE
(
XEXP
(
dest
,
0
))
==
POST_DEC
)
offset
+=
-
cfa_store
.
offset
;
else
offset
=
-
cfa_store
.
offset
;
break
;
/* Rule 12 */
...
...
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