Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
llvm-epi-0.8
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Roger Ferrer
llvm-epi-0.8
Commits
6bf3c038
Commit
6bf3c038
authored
11 years ago
by
Akira Hatanaka
Browse files
Options
Downloads
Patches
Plain Diff
[mips] Mark pseudo instructions as code-gen only.
llvm-svn: 188017
parent
85ccf23d
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
llvm/lib/Target/Mips/MipsDSPInstrInfo.td
+5
-5
5 additions, 5 deletions
llvm/lib/Target/Mips/MipsDSPInstrInfo.td
with
5 additions
and
5 deletions
llvm/lib/Target/Mips/MipsDSPInstrInfo.td
+
5
−
5
View file @
6bf3c038
...
@@ -1240,14 +1240,14 @@ def PREPEND : PREPEND_ENC, PREPEND_DESC;
...
@@ -1240,14 +1240,14 @@ def PREPEND : PREPEND_ENC, PREPEND_DESC;
}
}
// Pseudos.
// Pseudos.
let isPseudo = 1 in {
let isPseudo =
1, isCodeGenOnly =
1 in {
// Pseudo instructions for loading and storing accumulator registers.
// Pseudo instructions for loading and storing accumulator registers.
defm LOAD_AC_DSP : LoadM<"
load_ac_dsp
", ACRegsDSPOpnd>;
defm LOAD_AC_DSP : LoadM<"", ACRegsDSPOpnd>;
defm STORE_AC_DSP : StoreM<"
store_ac_dsp
", ACRegsDSPOpnd>;
defm STORE_AC_DSP : StoreM<"", ACRegsDSPOpnd>;
// Pseudos for loading and storing ccond field of DSP control register.
// Pseudos for loading and storing ccond field of DSP control register.
defm LOAD_CCOND_DSP : LoadM<"
load_ccond_dsp
", DSPCC>;
defm LOAD_CCOND_DSP : LoadM<"", DSPCC>;
defm STORE_CCOND_DSP : StoreM<"
store_ccond_dsp
", DSPCC>;
defm STORE_CCOND_DSP : StoreM<"", DSPCC>;
}
}
// Pseudo CMP and PICK instructions.
// Pseudo CMP and PICK instructions.
...
...
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