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
d0d99d5f
Commit
d0d99d5f
authored
Apr 01, 1995
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(extv, extzv): Don't use immediate value for operand 1.
From-SVN: r9280
parent
cc1f5387
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
gcc/config/vax/vax.md
+5
-4
No files found.
gcc/config/vax/vax.md
View file @
d0d99d5f
;;- Machine description for GNU compiler, Vax Version
;; Copyright (C) 1987, 1988, 1991, 1994 Free Software Foundation, Inc.
;; Copyright (C) 1987, 1988, 1991, 1994
, 1995
Free Software Foundation, Inc.
;; This file is part of GNU CC.
...
...
@@ -1419,11 +1419,12 @@
;; When the field position and size are constant and the destination
;; is a register, extv and extzv are much slower than a rotate followed
;; by a bicl or sign extension.
;; by a bicl or sign extension. Becase we might end up choosing ext
[
z
]
v
;; anyway, we can't allow immediate values for the primary source operand.
(define_insn ""
[
(set (match_operand:SI 0 "general_operand" "=g")
(sign_extract:SI (match_operand:SI 1 "non
memory_operand" "r
")
(sign_extract:SI (match_operand:SI 1 "non
immediate_operand" "ro
")
(match_operand:QI 2 "general_operand" "g")
(match_operand:SI 3 "general_operand" "g")))]
""
...
...
@@ -1440,7 +1441,7 @@
(define_insn ""
[
(set (match_operand:SI 0 "general_operand" "=g")
(zero_extract:SI (match_operand:SI 1 "
register_operand" "ri
")
(zero_extract:SI (match_operand:SI 1 "
nonimmediate_operand" "ro
")
(match_operand:QI 2 "general_operand" "g")
(match_operand:SI 3 "general_operand" "g")))]
""
...
...
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