index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
llvm
/
lib
/
Target
/
PowerPC
/
PPCISelLowering.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Keep track of incoming argument's location while emitting LiveIns.
Devang Patel
2011-01-31
1
-12
/
+12
*
Remove unused variables found by gcc-4.6's -Wunused-but-set-variable.
Jeffrey Yasskin
2011-01-18
1
-1
/
+0
*
Rename TargetFrameInfo into TargetFrameLowering. Also, put couple of FIXMEs a...
Anton Korobeynikov
2011-01-10
1
-16
/
+16
*
Change all self assignments X=X to (void)X, so that we can turn on a
Jeffrey Yasskin
2010-12-23
1
-1
/
+0
*
rename MVT::Flag to MVT::Glue. "Flag" is a terrible name for
Chris Lattner
2010-12-21
1
-13
/
+13
*
Renaming ISD::BIT_CONVERT to ISD::BITCAST to better reflect the LLVM IR concept.
Wesley Peck
2010-11-23
1
-90
/
+89
*
convert the operand bits into bitfields since they are all combinable in
Chris Lattner
2010-11-15
1
-34
/
+33
*
add targetoperand flags for jump tables, constant pool and block address
Chris Lattner
2010-11-15
1
-96
/
+66
*
implement support for the MO_DARWIN_STUB TargetOperand flag,
Chris Lattner
2010-11-14
1
-26
/
+51
*
In the calling convention logic, ValVT is always a legal type,
Duncan Sands
2010-11-04
1
-6
/
+6
*
Inside the calling convention logic LocVT is always a simple
Duncan Sands
2010-11-03
1
-8
/
+8
*
Inline asm multiple alternative constraints development phase 2 - improved ba...
John Thompson
2010-10-29
1
-2
/
+43
*
Remove some variables that are never really used
Duncan Sands
2010-10-21
1
-1
/
+0
*
PowerPC varargs functions store live-in registers on the stack. Make sure we use
Jakob Stoklund Olesen
2010-10-11
1
-33
/
+13
*
fix the expansion of va_arg instruction on PPC to know the arg
Chris Lattner
2010-10-10
1
-0
/
+4
*
update a bunch of code to use the MachinePointerInfo version of getStore.
Chris Lattner
2010-09-21
1
-26
/
+30
*
eliminate an old SelectionDAG::getTruncStore method, propagating
Chris Lattner
2010-09-21
1
-4
/
+6
*
propagate MachinePointerInfo through various uses of the old
Chris Lattner
2010-09-21
1
-1
/
+2
*
convert the targets off the non-MachinePointerInfo of getLoad.
Chris Lattner
2010-09-21
1
-25
/
+30
*
reimplement memcpy/memmove/memset lowering to use MachinePointerInfo
Chris Lattner
2010-09-21
1
-1
/
+2
*
convert targets to the new MF.getMachineMemOperand interface.
Chris Lattner
2010-09-21
1
-2
/
+3
*
Use indirect calls in PowerPC JIT.
Torok Edwin
2010-08-04
1
-10
/
+23
*
PR7781: Fix incorrect shifting in PPCTargetLowering::LowerBUILD_VECTOR.
Eli Friedman
2010-08-02
1
-3
/
+3
*
Move getExtLoad() and (some) getLoad() DebugLoc argument after EVT argument f...
Evan Cheng
2010-07-07
1
-1
/
+1
*
Split the SDValue out of OutputArg so that SelectionDAG-independent
Dan Gohman
2010-07-07
1
-11
/
+16
*
Propagate debug loc.
Devang Patel
2010-07-06
1
-4
/
+5
*
Reapply r107655 with fixes; insert the pseudo instruction into
Dan Gohman
2010-07-06
1
-17
/
+29
*
Revert r107655.
Dan Gohman
2010-07-06
1
-29
/
+17
*
Fix a bunch of custom-inserter functions to handle the case where
Dan Gohman
2010-07-06
1
-17
/
+29
*
Remove isSS argument from CreateFixedObject. Fixed objects cannot be spill sl...
Evan Cheng
2010-07-03
1
-15
/
+11
*
Remove initialized but otherwise unused variables.
Duncan Sands
2010-06-29
1
-1
/
+0
*
The hasMemory argument is irrelevant to how the argument
Dale Johannesen
2010-06-25
1
-5
/
+2
*
Eliminate unnecessary uses of getZExtValue().
Dan Gohman
2010-06-18
1
-3
/
+3
*
Implement @llvm.returnaddress. rdar://8015977.
Evan Cheng
2010-05-22
1
-1
/
+4
*
Implement builtin_return_address(x) and builtin_frame_address(x)
Dale Johannesen
2010-05-03
1
-23
/
+34
*
Get rid of the EdgeMapping map. Instead, just check for BasicBlock
Dan Gohman
2010-05-01
1
-6
/
+2
*
Implement -disable-non-leaf-fp-elim which disable frame pointer elimination
Evan Cheng
2010-04-21
1
-1
/
+1
*
Add more const qualifiers on TargetMachine and friends.
Dan Gohman
2010-04-21
1
-2
/
+2
*
Use const qualifiers with TargetLowering. This eliminates several
Dan Gohman
2010-04-17
1
-37
/
+45
*
Move per-function state out of TargetLowering subclasses and into
Dan Gohman
2010-04-17
1
-30
/
+31
*
Eliminate an unnecessary SelectionDAG dependency in getOptimalMemOpType.
Dan Gohman
2010-04-16
1
-3
/
+3
*
Add const qualifiers to CodeGen's use of LLVM IR constructs.
Dan Gohman
2010-04-15
1
-4
/
+4
*
Avoid using f64 to lower memcpy from constant string. It's cheaper to use i32...
Evan Cheng
2010-04-08
1
-2
/
+5
*
Reapply address space patch after fixing an issue in MemCopyOptimizer.
Mon P Wang
2010-04-04
1
-1
/
+1
*
use DebugLoc default ctor instead of DebugLoc::getUnknownLoc()
Chris Lattner
2010-04-02
1
-4
/
+4
*
Correctly lower memset / memcpy of undef. It should be a nop. PR6767.
Evan Cheng
2010-04-02
1
-7
/
+10
*
Revert r100191 since it breaks objc in clang
Mon P Wang
2010-04-02
1
-1
/
+1
*
Reapply address space patch after fixing an issue in MemCopyOptimizer.
Mon P Wang
2010-04-02
1
-1
/
+1
*
Add comments about DstAlign and SrcAlign.
Evan Cheng
2010-04-01
1
-0
/
+7
*
- Avoid using floating point stores to implement memset unless the value is z...
Evan Cheng
2010-04-01
1
-0
/
+1
[next]