Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
cmucl
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
Carl Shapiro
cmucl
Commits
40e54209
Commit
40e54209
authored
31 years ago
by
hallgren
Browse files
Options
Downloads
Patches
Plain Diff
Added :cost 0 to instructions that were 0 but were defaulting to 1.
parent
168d41e5
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
compiler/mips/insts.lisp
+7
-1
7 additions, 1 deletion
compiler/mips/insts.lisp
with
7 additions
and
1 deletion
compiler/mips/insts.lisp
+
7
−
1
View file @
40e54209
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
;;;
(
ext:file-comment
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/insts.lisp,v 1.4
5
1993/0
2
/0
8 20:03:57
hallgren Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/insts.lisp,v 1.4
6
1993/0
5
/0
7 13:18:46
hallgren Exp $"
)
;;;
;;;
;;; **********************************************************************
;;; **********************************************************************
;;;
;;;
...
@@ -1008,6 +1008,7 @@
...
@@ -1008,6 +1008,7 @@
'
(
:name
:tab
code
(
:unless
(
:constant
0
)
subcode
))
'
(
:name
:tab
code
(
:unless
(
:constant
0
)
subcode
))
:control
#'
break-control
)
:control
#'
break-control
)
:pinned
:pinned
(
:cost
0
)
(
:delay
0
)
(
:delay
0
)
(
:emitter
(
:emitter
(
emit-break-inst
segment
special-op
code
subcode
#b001101
)))
(
emit-break-inst
segment
special-op
code
subcode
#b001101
)))
...
@@ -1033,6 +1034,7 @@
...
@@ -1033,6 +1034,7 @@
(
define-instruction
word
(
segment
word
)
(
define-instruction
word
(
segment
word
)
(
:declare
(
type
(
or
(
unsigned-byte
32
)
(
signed-byte
32
))
word
))
(
:declare
(
type
(
or
(
unsigned-byte
32
)
(
signed-byte
32
))
word
))
:pinned
:pinned
(
:cost
0
)
(
:delay
0
)
(
:delay
0
)
(
:emitter
(
:emitter
(
emit-word
segment
word
)))
(
emit-word
segment
word
)))
...
@@ -1040,6 +1042,7 @@
...
@@ -1040,6 +1042,7 @@
(
define-instruction
short
(
segment
short
)
(
define-instruction
short
(
segment
short
)
(
:declare
(
type
(
or
(
unsigned-byte
16
)
(
signed-byte
16
))
short
))
(
:declare
(
type
(
or
(
unsigned-byte
16
)
(
signed-byte
16
))
short
))
:pinned
:pinned
(
:cost
0
)
(
:delay
0
)
(
:delay
0
)
(
:emitter
(
:emitter
(
emit-short
segment
short
)))
(
emit-short
segment
short
)))
...
@@ -1047,6 +1050,7 @@
...
@@ -1047,6 +1050,7 @@
(
define-instruction
byte
(
segment
byte
)
(
define-instruction
byte
(
segment
byte
)
(
:declare
(
type
(
or
(
unsigned-byte
8
)
(
signed-byte
8
))
byte
))
(
:declare
(
type
(
or
(
unsigned-byte
8
)
(
signed-byte
8
))
byte
))
:pinned
:pinned
(
:cost
0
)
(
:delay
0
)
(
:delay
0
)
(
:emitter
(
:emitter
(
emit-byte
segment
byte
)))
(
emit-byte
segment
byte
)))
...
@@ -1063,12 +1067,14 @@
...
@@ -1063,12 +1067,14 @@
(
define-instruction
function-header-word
(
segment
)
(
define-instruction
function-header-word
(
segment
)
:pinned
:pinned
(
:cost
0
)
(
:delay
0
)
(
:delay
0
)
(
:emitter
(
:emitter
(
emit-header-data
segment
function-header-type
)))
(
emit-header-data
segment
function-header-type
)))
(
define-instruction
lra-header-word
(
segment
)
(
define-instruction
lra-header-word
(
segment
)
:pinned
:pinned
(
:cost
0
)
(
:delay
0
)
(
:delay
0
)
(
:emitter
(
:emitter
(
emit-header-data
segment
return-pc-header-type
)))
(
emit-header-data
segment
return-pc-header-type
)))
...
...
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