index
:
external_llvm.git
replicant-6.0
Unnamed repository; edit this file 'description' to name the repository.
git repository hosting
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
lib
/
Target
/
Mips
/
MipsDelaySlotFiller.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Use SmallVectorImpl::iterator/const_iterator instead of SmallVector to avoid ...
Craig Topper
2013-07-03
1
-2
/
+2
*
Don't cache the instruction and register info from the TargetMachine, because
Bill Wendling
2013-06-07
1
-2
/
+3
*
Fix comment.
Akira Hatanaka
2013-03-25
1
-3
/
+3
*
[mips] Remove unused option. Fix 80-column violations.
Akira Hatanaka
2013-03-01
1
-16
/
+8
*
[mips] Add the capability to search delay slot filling instructions in
Akira Hatanaka
2013-03-01
1
-32
/
+303
*
[mips] Add options to disable searching backward and in successor blocks.
Akira Hatanaka
2013-03-01
1
-0
/
+12
*
[mips] Add capability to search in the forward direction for instructions that
Akira Hatanaka
2013-03-01
1
-23
/
+92
*
[mips] Define helper function searchRange
Akira Hatanaka
2013-03-01
1
-9
/
+29
*
[mips] Rename function findDelayInstr to searchBackward.
Akira Hatanaka
2013-03-01
1
-3
/
+3
*
[mips] Define class MemDefsUses.
Akira Hatanaka
2013-03-01
1
-23
/
+126
*
[mips] Use class RegDefsUses to track register defs and uses.
Akira Hatanaka
2013-02-26
1
-89
/
+82
*
[mips] Disallow moving load/store instructions past volatile instructions.
Akira Hatanaka
2013-02-14
1
-1
/
+1
*
[mips] Replace usage of SmallSet with BitVector, which is used to keep track of
Akira Hatanaka
2013-02-14
1
-86
/
+83
*
[mips] Fix comments and coding style violations. Declare functions to be const.
Akira Hatanaka
2013-02-14
1
-64
/
+47
*
[mips] Simplify code in function Filler::findDelayInstr.
Akira Hatanaka
2013-02-14
1
-38
/
+29
*
[mips] Make Filler a class and reduce indentation.
Akira Hatanaka
2013-02-07
1
-34
/
+38
*
Use the new MIBundleBuilder class in the Mips target.
Jakob Stoklund Olesen
2012-12-07
1
-4
/
+4
*
Use the new script to sort the includes of every file under lib.
Chandler Carruth
2012-12-03
1
-3
/
+3
*
[mips] Fix delay slot filler so that instructions with register operand $1 are
Akira Hatanaka
2012-11-16
1
-17
/
+34
*
Disable Mips' delay slot filler when optimization level is O0.
Akira Hatanaka
2012-08-24
1
-1
/
+3
*
Add option disable-mips-delay-filler. Turn on mips' delay slot filler by
Akira Hatanaka
2012-08-22
1
-4
/
+5
*
Fix coding style violations. Remove white spaces and tabs.
Akira Hatanaka
2012-06-14
1
-8
/
+8
*
Bundle jump/branch instructions with the instructions in the delay slot in
Akira Hatanaka
2012-06-13
1
-16
/
+22
*
Switch some getAliasSet clients to MCRegAliasIterator.
Jakob Stoklund Olesen
2012-06-01
1
-7
/
+4
*
Add a command line option to skip the delay slot filler pass entirely for Mips.
Akira Hatanaka
2012-05-14
1
-0
/
+10
*
Use uint16_t to store register overlaps to reduce static data.
Craig Topper
2012-03-04
1
-1
/
+1
*
remove blanks, and some code format
Jia Liu
2012-02-28
1
-4
/
+4
*
remove Emacs-tag form .cpp files in Mips Backend, and fix some typo.
Jia Liu
2012-02-17
1
-1
/
+1
*
add Emacs tag and fix some comment error in file headers
Jia Liu
2012-02-17
1
-1
/
+1
*
Tidy up. Simplify logic. No functional change intended.
Akira Hatanaka
2011-12-19
1
-4
/
+2
*
Add bundle aware API for querying instruction properties and switch the code
Evan Cheng
2011-12-07
1
-9
/
+8
*
Fix assertion string.
Akira Hatanaka
2011-10-05
1
-1
/
+1
*
Make sure candidate for delay slot filler is not a return instruction.
Akira Hatanaka
2011-10-05
1
-3
/
+5
*
Add RA to the set of registers that are defined if instruction is a call.
Akira Hatanaka
2011-10-05
1
-4
/
+4
*
MipsDelaySlotFiller.cpp: Appease msvc to specify llvm::next() explicitly.
NAKAMURA Takumi
2011-10-05
1
-1
/
+1
*
Insert space.
Akira Hatanaka
2011-10-05
1
-1
/
+1
*
Do not examine variadic or implicit operands if instruction is a return (jr).
Akira Hatanaka
2011-10-05
1
-2
/
+3
*
Clean up function Filler::delayHasHazard.
Akira Hatanaka
2011-10-05
1
-4
/
+6
*
Remove function Filler::insertCallUses.
Akira Hatanaka
2011-10-05
1
-29
/
+14
*
Clean up Filler::findDelayInstr.
Akira Hatanaka
2011-10-05
1
-15
/
+10
*
Remove function Filler::isDelayFiller. Check if I is the same instruction that
Akira Hatanaka
2011-10-05
1
-11
/
+7
*
Clean up Filler::runOnMachineBasicBlock. Change interface of
Akira Hatanaka
2011-10-05
1
-17
/
+20
*
Define a statistic for the number of slots that were filled with useful
Akira Hatanaka
2011-10-05
1
-0
/
+2
*
Remove unnecessary check. isDelayFiller(MBB, I) will evaluate to true before
Akira Hatanaka
2011-10-05
1
-1
/
+0
*
Add comments and move assignment statement. If sawStore is true, sawLoad does
Akira Hatanaka
2011-10-05
1
-1
/
+3
*
Correct description string of enable-mips-delay-filler.
Akira Hatanaka
2011-10-05
1
-1
/
+1
*
Fill delay slot with useful instructions. Modified from Sparc's version of delay
Akira Hatanaka
2011-09-29
1
-12
/
+201
*
Drop support for Mips1 and Mips2.
Akira Hatanaka
2011-09-09
1
-3
/
+1
*
- Rename TargetInstrDesc, TargetOperandInfo to MCInstrDesc and MCOperandInfo and
Evan Cheng
2011-06-28
1
-3
/
+3
*
Reverse unnecessary changes made in r129606 and r129608. There is no change i...
Akira Hatanaka
2011-04-15
1
-2
/
+2
[next]