llvm-6502/include/llvm
Nate Begeman f43a3ca26d First chunk of actually generating vector code for packed types. These
changes allow us to generate the following code:

_foo:
        li r2, 0
        lvx v0, r2, r3
        vaddfp v0, v0, v0
        stvx v0, r2, r3
        blr

for this llvm:

void %foo(<4 x float>* %a) {
entry:
        %tmp1 = load <4 x float>* %a
        %tmp2 = add <4 x float> %tmp1, %tmp1
        store <4 x float> %tmp2, <4 x float>* %a
        ret void
}


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24534 91177308-0d34-0410-b5e6-96231b3b80d8
2005-11-30 08:22:07 +00:00
..
ADT
Analysis Fix PR670 and test/Regression/Transforms/Mem2Reg/2005-11-28-Crash.ll 2005-11-29 01:07:12 +00:00
Assembly
Bytecode minor cleanup 2005-11-30 05:26:03 +00:00
CodeGen First chunk of actually generating vector code for packed types. These 2005-11-30 08:22:07 +00:00
Config add malloc_zone_statistics, remove mstats 2005-11-14 07:24:17 +00:00
Debugger
ExecutionEngine
Support
System
Target Add the majority of the vector machien value types we expect to support, 2005-11-29 05:45:29 +00:00
Transforms Added documented rsprofiler interface. Also remove new profiler passes, the 2005-11-28 18:00:38 +00:00
AbstractTypeUser.h remove a dead method 2005-11-12 08:42:30 +00:00
Argument.h
BasicBlock.h
CallGraphSCCPass.h
CallingConv.h
Constant.h
Constants.h
DerivedTypes.h Shrink derived types by 8 bytes each by not having to have 2 vtables pointers 2005-11-13 03:26:12 +00:00
Function.h
GlobalValue.h Add support for putting globals in a particular section 2005-11-12 00:09:49 +00:00
GlobalVariable.h
InstrTypes.h
Instruction.def
Instruction.h
Instructions.h
IntrinsicInst.h
Intrinsics.h
Linker.h
Module.h
ModuleProvider.h
Pass.h
PassAnalysisSupport.h
PassManager.h
PassSupport.h
SymbolTable.h
SymbolTableListTraits.h
Type.h Shrink derived types by 8 bytes each by not having to have 2 vtables pointers 2005-11-13 03:26:12 +00:00
Use.h
User.h
Value.h