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
*
Atomic load/store on ARM/Thumb.
Eli Friedman
2011-08-26
2
-5
/
+27
*
Look at only the terminators of the basic block. Also, if we're using the new EH
Bill Wendling
2011-08-25
1
-5
/
+9
*
Basic x86 code generation for atomic load and store instructions.
Eli Friedman
2011-08-24
4
-12
/
+147
*
Move TargetRegistry and TargetSelect from Target to Support where they belong.
Evan Cheng
2011-08-24
2
-2
/
+2
*
Tidy up. Trailing whitespace.
Jim Grosbach
2011-08-24
1
-31
/
+31
*
Add the sentinal "no handle" value to the ResumeInst.
Bill Wendling
2011-08-24
1
-0
/
+2
*
Don't replace *all* uses with the new stuff.
Bill Wendling
2011-08-23
1
-1
/
+1
*
Look at the end of the entry block for an invoke.
Bill Wendling
2011-08-23
1
-4
/
+17
*
A landingpad instruction is neither folded nor dead.
Bill Wendling
2011-08-23
1
-0
/
+1
*
Fix 80 col violations.
Evan Cheng
2011-08-23
1
-2
/
+4
*
Split the landing pad's edge. Then for all uses of a landingpad instruction's
Bill Wendling
2011-08-22
1
-2
/
+74
*
Follow up to Jim's r138278. This fixes commuteInstruction so it handles two-a...
Evan Cheng
2011-08-22
1
-10
/
+12
*
Some whitespace fixes and #include reordering.
Bill Wendling
2011-08-22
1
-8
/
+5
*
Be less redundant.
Nick Lewycky
2011-08-22
1
-1
/
+0
*
Do not use named md nodes to track variables that are completely optimized. T...
Devang Patel
2011-08-19
1
-36
/
+23
*
Roll back the rest of r126557. It's a hack that will break in some obscure ca...
Benjamin Kramer
2011-08-19
1
-6
/
+0
*
Eli points out that this is what report_fatal_error() is for.
Nick Lewycky
2011-08-19
1
-1
/
+2
*
This is not actually unreachable, so don't use llvm_unreachable for it. Since
Nick Lewycky
2011-08-19
1
-1
/
+2
*
Add llc flags to disable machine DCE and CSE.
Jakob Stoklund Olesen
2011-08-19
1
-2
/
+8
*
Make a bunch of symbols private.
Benjamin Kramer
2011-08-19
2
-2
/
+2
*
Don't treat a partial <def,undef> operand as a read.
Jakob Stoklund Olesen
2011-08-19
1
-1
/
+2
*
add the comments of each declaration follow it, making it easier to read and ...
Renato Golin
2011-08-18
1
-49
/
+44
*
Eliminate unnecessary forwarding function.
Devang Patel
2011-08-18
3
-19
/
+6
*
Add new DIE into the map asap.
Devang Patel
2011-08-18
1
-8
/
+6
*
FastISel: avoid function calls between the materialization of the constant an...
Ivan Krasin
2011-08-18
1
-5
/
+20
*
Add the support in code-gen for the landingpad instruction lowering.
Bill Wendling
2011-08-17
2
-3
/
+70
*
Revert patch. Forgot a dependent commit.
Bill Wendling
2011-08-17
1
-39
/
+3
*
Add the body of 'visitLandingPad'.
Bill Wendling
2011-08-17
1
-3
/
+39
*
Modify for the new EH scheme.
Bill Wendling
2011-08-17
1
-1
/
+57
*
Until now all debug info MDNodes referred to a root MDNode, a compile unit. T...
Devang Patel
2011-08-16
4
-99
/
+96
*
Remove unused Target argument from AsmParser construction methods.
Jim Grosbach
2011-08-16
1
-1
/
+1
*
Remove unnecessary version check.
Devang Patel
2011-08-16
1
-2
/
+1
*
Revert r137562 because it caused PR10674
Nadav Rotem
2011-08-16
1
-7
/
+0
*
Refactor.
Devang Patel
2011-08-15
2
-49
/
+68
*
Continue to hoist uses of getCompileUnit() up. The goal is to get rid of uses...
Devang Patel
2011-08-15
2
-21
/
+24
*
This is somewhat déjà-vu, but avoid using getCompileUnit() as much as possi...
Devang Patel
2011-08-15
2
-14
/
+14
*
Refactor. Variables are part of compile unit so let CompileUnit create new va...
Devang Patel
2011-08-15
4
-123
/
+129
*
There is no need to maintain a set to keep track of variables that use locati...
Devang Patel
2011-08-15
2
-8
/
+2
*
Fix warning.
Devang Patel
2011-08-15
2
-2
/
+2
*
Simplify. Let DbgVariable keep track of variable's DBG_VALUE machine instruct...
Devang Patel
2011-08-15
2
-55
/
+24
*
Simplify mapping to variable from its abstract variable info.
Devang Patel
2011-08-15
2
-29
/
+18
*
Refactor.
Devang Patel
2011-08-15
2
-5
/
+11
*
Refactor.
Devang Patel
2011-08-15
2
-15
/
+9
*
Refactor. Global variables are part of compile unit so let CompileUnit create...
Devang Patel
2011-08-15
3
-129
/
+114
*
Refactor. A subprogram is part of compile unit so let CompileUnit construct n...
Devang Patel
2011-08-15
4
-114
/
+141
*
Fix PR 10635. When generating integer constants, the constant element type may
Nadav Rotem
2011-08-13
1
-0
/
+7
*
Initial commit of the 'landingpad' instruction.
Bill Wendling
2011-08-12
2
-0
/
+4
*
Use ArrayRef.
Devang Patel
2011-08-12
1
-6
/
+6
*
switch to use the new api for structtypes.
Chris Lattner
2011-08-12
1
-4
/
+4
*
Provide fast path as Jakob suggested.
Devang Patel
2011-08-12
1
-0
/
+12
[next]