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
/
CodeGen
Commit message (
Expand
)
Author
Age
Files
Lines
*
r70270 isn't ready yet. Back this out. Sorry for the noise.
Bill Wendling
2009-04-28
12
-87
/
+85
*
Massive check in. This changes the "-fast" flag to "-O#" in llc. If you want to
Bill Wendling
2009-04-28
12
-84
/
+87
*
Fix PR4076. Correctly create live interval of physical register with two-addr...
Evan Cheng
2009-04-27
1
-10
/
+20
*
Don't skip the CopyMI when removing kill markers.
Owen Anderson
2009-04-27
1
-2
/
+0
*
Now that PR2957 is resolved, remove a bunch of
Duncan Sands
2009-04-27
4
-90
/
+4
*
2nd attempt, fixing SSE4.1 issues and implementing feedback from duncan.
Nate Begeman
2009-04-27
5
-449
/
+363
*
Fix PR4056. It's possible a physical register def is dead if its implicit use...
Evan Cheng
2009-04-27
1
-2
/
+2
*
Also delete last unused val#.
Evan Cheng
2009-04-27
1
-0
/
+6
*
When transforming sext(trunc(load(x))) into sext(smaller load(x)),
Dan Gohman
2009-04-27
1
-1
/
+1
*
Reuse unused val#'s to avoid running out of memory in extreme cases.
Evan Cheng
2009-04-25
1
-1
/
+5
*
Refactor the code to grab the low and high parts of a value
Dan Gohman
2009-04-25
4
-126
/
+38
*
Add a top-level comment about DAGCombiner's role in the compiler.
Dan Gohman
2009-04-25
1
-0
/
+4
*
Do not share a single unknown val# for all the live ranges merged into a phys...
Evan Cheng
2009-04-25
1
-19
/
+13
*
Fix PR 4057, a crash doing float->char const folding.
Dale Johannesen
2009-04-24
1
-3
/
+4
*
Revert 69952. Causes testsuite failures on linux x86-64.
Rafael Espindola
2009-04-24
5
-353
/
+447
*
PR2957
Nate Begeman
2009-04-24
5
-447
/
+353
*
Instead of requiring TLI.LowerCallTo to return an ISD::BUILD_PAIR,
Dan Gohman
2009-04-24
1
-60
/
+118
*
Factor out a bit of code that appears in several places into a
Dan Gohman
2009-04-23
3
-14
/
+16
*
Handle Void types in ComputeValueVTs. This doesn't currently occur,
Dan Gohman
2009-04-23
1
-0
/
+3
*
Update comments.
Evan Cheng
2009-04-23
1
-2
/
+2
*
Fix an obvious type.
Evan Cheng
2009-04-23
1
-1
/
+1
*
It has finally happened. Spiller is now using live interval info.
Evan Cheng
2009-04-21
5
-40
/
+68
*
Fix Visual Studio 2008 build failure.
Devang Patel
2009-04-21
1
-3
/
+3
*
Make X86's copyRegToReg able to handle copies to and from subclasses.
Dan Gohman
2009-04-20
1
-25
/
+0
*
Simplify this code. getConstant knows how to make
Dan Gohman
2009-04-20
1
-10
/
+3
*
Move duplicated AddLiveIn function from X86 and ARM backends to be a method
Bob Wilson
2009-04-20
1
-0
/
+10
*
Revise my previous change 68996 as suggested by Duncan.
Bob Wilson
2009-04-20
3
-9
/
+5
*
- Remove an arbitrary spill weight tweak that should not have been there.
Evan Cheng
2009-04-20
1
-5
/
+26
*
Added a linearscan register allocation optimization. When the register alloca...
Evan Cheng
2009-04-20
2
-67
/
+189
*
Now that BUILD_VECTOR operands are allowed to be
Duncan Sands
2009-04-19
1
-9
/
+6
*
Fix PR3898, which manifests as failures on are an Xcore,
Chris Lattner
2009-04-18
1
-1
/
+1
*
Don't try to make BUILD_VECTOR operands have the same
Duncan Sands
2009-04-18
6
-63
/
+35
*
Add a new LiveInterval::overlaps(). It checks if the live interval overlaps a...
Evan Cheng
2009-04-18
1
-0
/
+16
*
Inline asm's were still introducing bogus dependencies;
Dale Johannesen
2009-04-18
1
-1
/
+7
*
Teach spiller to unfold instructions which modref spill slot when a scratch
Evan Cheng
2009-04-17
2
-11
/
+227
*
In the list-burr's pseudo two-addr dependency heuristics, don't
Dan Gohman
2009-04-16
1
-0
/
+10
*
Handle SUBREG_TO_REG instructions with the same heuristics
Dan Gohman
2009-04-16
1
-5
/
+7
*
Do not treat beginning of inlined scope as beginning of normal function scope...
Devang Patel
2009-04-16
2
-2
/
+20
*
Record line number at the beginning of a func.start.
Devang Patel
2009-04-16
2
-2
/
+2
*
In -fast mode do what FastISel does.
Devang Patel
2009-04-16
2
-30
/
+71
*
If FastISel is run and it has known DebugLoc then use it.
Devang Patel
2009-04-16
2
-3
/
+7
*
If location where the function was inlined is not know then do not emit debug...
Devang Patel
2009-04-16
1
-5
/
+11
*
s/RootDbgScope/FunctionDbgScope/g
Devang Patel
2009-04-15
1
-13
/
+13
*
Add DISubprogram is not null check.
Devang Patel
2009-04-15
1
-2
/
+4
*
Generalize one of the SelectionDAG::ReplaceAllUsesWith overloads
Dan Gohman
2009-04-15
2
-9
/
+10
*
Check isInlinedSubroutine() before creating DW_TAG_inlined_subroutine.
Devang Patel
2009-04-15
1
-1
/
+2
*
Fix MachineInstr::getNumExplicitOperands to count
Dan Gohman
2009-04-15
1
-2
/
+2
*
Move MachineRegisterInfo::setRegClass out of line.
Dan Gohman
2009-04-15
1
-0
/
+20
*
Move MachineJumpTableInfo::ReplaceMBBInJumpTables out of line.
Dan Gohman
2009-04-15
1
-0
/
+17
*
Give RemoveRegOperandFromRegInfo a comment and move the
Dan Gohman
2009-04-15
1
-0
/
+15
[next]