Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
cmucl-copy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Richard M Kreuter
cmucl-copy
Commits
5e340d32
Commit
5e340d32
authored
11 years ago
by
Carl Shapiro
Browse files
Options
Downloads
Patches
Plain Diff
Simplify the %more-arg-values VOP.
parent
60d810f9
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/compiler/x86/values.lisp
+17
-35
17 additions, 35 deletions
src/compiler/x86/values.lisp
with
17 additions
and
35 deletions
src/compiler/x86/values.lisp
+
17
−
35
View file @
5e340d32
...
...
@@ -94,43 +94,25 @@
;;;
(
define-vop
(
%more-arg-values
)
(
:args
(
context
:scs
(
descriptor-reg
any-reg
)
:target
src
)
(
skip
:scs
(
any-reg
immediate
))
(
num
:scs
(
any-reg
)
:target
count
))
(
skip
:scs
(
any-reg
immediate
))
(
num
:scs
(
any-reg
)
:target
count
))
(
:arg-types
*
positive-fixnum
positive-fixnum
)
(
:temporary
(
:sc
any-reg
:offset
esi-offset
:from
(
:argument
0
))
src
)
(
:temporary
(
:sc
descriptor-reg
:offset
eax-offset
)
temp
)
(
:temporary
(
:sc
unsigned-reg
:offset
ecx-offset
)
temp1
)
(
:temporary
(
:sc
any-reg
:from
(
:argument
0
))
src
)
(
:temporary
(
:sc
any-reg
:from
(
:argument
1
))
i
)
(
:results
(
start
:scs
(
any-reg
))
(
count
:scs
(
any-reg
)))
(
count
:scs
(
any-reg
)))
(
:generator
20
(
sc-case
skip
(
immediate
(
cond
((
zerop
(
tn-value
skip
))
(
move
src
context
)
(
move
count
num
))
(
t
(
inst
lea
src
(
make-ea
:dword
:base
context
:disp
(
-
(
*
(
tn-value
skip
)
word-bytes
))))
(
move
count
num
)
(
inst
sub
count
(
*
(
tn-value
skip
)
word-bytes
)))))
(
any-reg
(
move
src
context
)
(
inst
sub
src
skip
)
(
move
count
num
)
(
inst
sub
count
skip
)))
(
move
temp1
count
)
(
inst
mov
start
esp-tn
)
(
inst
jecxz
done
)
; check for 0 count?
(
inst
shr
temp1
word-shift
)
; convert the fixnum to a count.
(
move
src
context
)
(
move
count
num
)
(
inst
sub
src
count
)
(
unless
(
and
(
sc-is
skip
immediate
)
(
zerop
(
tn-value
skip
)))
(
inst
sub
count
skip
))
(
move
start
esp-tn
)
(
inst
test
count
count
)
(
inst
jmp
:z
done
)
(
inst
mov
i
count
)
LOOP
(
inst
mov
temp
(
make-ea
:dword
:base
src
))
(
inst
sub
src
4
)
(
inst
push
temp
)
(
inst
loop
loop
)
(
inst
push
(
make-ea
:dword
:base
src
:index
i
))
(
inst
sub
i
word-bytes
)
(
inst
jmp
:nz
loop
)
DONE
))
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment