1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 12:12:47 +01:00
llvm-mirror/include/llvm
Bill Wendling c08dedb060 Initial commit of the machine code LICM pass. It successfully hoists this:
_foo:
        li r2, 0
LBB1_1: ; bb
        li r5, 0
        stw r5, 0(r3)
        addi r2, r2, 1
        addi r3, r3, 4
        cmplw cr0, r2, r4
        bne cr0, LBB1_1 ; bb
LBB1_2: ; return
        blr 

to:

_foo:
        li r2, 0
        li r5, 0
LBB1_1: ; bb
        stw r5, 0(r3)
        addi r2, r2, 1
        addi r3, r3, 4
        cmplw cr0, r2, r4
        bne cr0, LBB1_1 ; bb
LBB1_2: ; return
        blr

ZOMG!! :-)

Moar to come...

llvm-svn: 44687
2007-12-07 21:42:31 +00:00
..
ADT Pass the whole StringMapEntry into StringMapEntryInitializer::Initialize. 2007-11-29 06:14:41 +00:00
Analysis Integrate the readonly/readnone logic more deeply 2007-12-01 07:51:45 +00:00
Assembly
Bitcode Added "Emitter" functor to allow easy emitting of elements of a container 2007-12-05 00:13:07 +00:00
CodeGen Initial commit of the machine code LICM pass. It successfully hoists this: 2007-12-07 21:42:31 +00:00
Config Add target triple to include/llvm/Config/config.h.in. Regenerate all files. 2007-12-01 00:34:39 +00:00
Debugger
ExecutionEngine add a new ExecutionEngine::createJIT which can be used if you only want 2007-12-06 01:34:04 +00:00
Support Rather than having special rules like "intrinsics cannot 2007-12-03 20:06:50 +00:00
System
Target Add a argument to storeRegToStackSlot and storeRegToAddr to specify whether 2007-12-05 03:14:33 +00:00
Transforms Start the process of making MachineLoopInfo possible by templating Loop. 2007-11-14 02:33:58 +00:00
AbstractTypeUser.h
Argument.h
AutoUpgrade.h
BasicBlock.h Remove meaningless qualifiers from return types, avoiding compiler warnings. 2007-11-19 20:46:23 +00:00
CallGraphSCCPass.h
CallingConv.h
Constant.h
Constants.h Get rid of compilation warning during release builds 2007-11-01 08:24:40 +00:00
DerivedTypes.h Fix PR1146: parameter attributes are longer part of 2007-11-27 13:23:08 +00:00
Function.h Rather than having special rules like "intrinsics cannot 2007-12-03 20:06:50 +00:00
GlobalAlias.h
GlobalValue.h
GlobalVariable.h
InlineAsm.h
InstrTypes.h
Instruction.def
Instruction.h
Instructions.h Rather than having special rules like "intrinsics cannot 2007-12-03 20:06:50 +00:00
IntrinsicInst.h
Intrinsics.h Rather than having special rules like "intrinsics cannot 2007-12-03 20:06:50 +00:00
Intrinsics.td More stuff for CellSPU -- this should be enough to get an error-free 2007-12-05 02:01:41 +00:00
IntrinsicsARM.td [ARM] Implement __builtin_thread_pointer. 2007-11-08 17:20:05 +00:00
IntrinsicsCellSPU.td fixed header attribution 2007-12-05 02:08:01 +00:00
IntrinsicsPowerPC.td
IntrinsicsX86.td Add missing SSE builtins: CVTPD2PI, CVTPS2PI, 2007-10-30 22:15:38 +00:00
LinkAllPasses.h
LinkAllVMCore.h
Linker.h
LinkTimeOptimizer.h
Module.h
ModuleProvider.h
ParameterAttributes.h Add a convenience method for modifying parameter 2007-11-30 18:19:18 +00:00
Pass.h
PassAnalysisSupport.h
PassManager.h
PassManagers.h
PassSupport.h
SymbolTableListTraits.h
Type.h
TypeSymbolTable.h
Use.h
User.h
Value.h
ValueSymbolTable.h