Home | History | Annotate | only in /external/llvm/lib/Target/Sparc
Up to higher level directory
NameDateSize
AsmParser/23-Apr-2015
CMakeLists.txt23-Apr-20151.2K
DelaySlotFiller.cpp23-Apr-201514.1K
Disassembler/23-Apr-2015
InstPrinter/23-Apr-2015
LLVMBuild.txt23-Apr-20151K
Makefile23-Apr-2015822
MCTargetDesc/23-Apr-2015
README.txt23-Apr-20151.5K
Sparc.h23-Apr-20154.4K
Sparc.td23-Apr-20153.9K
SparcAsmPrinter.cpp23-Apr-201516.9K
SparcCallingConv.td23-Apr-20155.4K
SparcCodeEmitter.cpp23-Apr-20159.6K
SparcFrameLowering.cpp23-Apr-20158.7K
SparcFrameLowering.h23-Apr-20151.9K
SparcInstr64Bit.td23-Apr-201523.2K
SparcInstrAliases.td23-Apr-201513K
SparcInstrFormats.td23-Apr-20158.8K
SparcInstrInfo.cpp23-Apr-201515.2K
SparcInstrInfo.h23-Apr-20153.8K
SparcInstrInfo.td23-Apr-201549K
SparcInstrVIS.td23-Apr-201511.1K
SparcISelDAGToDAG.cpp23-Apr-20157.6K
SparcISelLowering.cpp23-Apr-2015126K
SparcISelLowering.h23-Apr-20158K
SparcJITInfo.cpp23-Apr-201511.4K
SparcJITInfo.h23-Apr-20152.1K
SparcMachineFunctionInfo.cpp23-Apr-2015448
SparcMachineFunctionInfo.h23-Apr-20151.8K
SparcMCInstLower.cpp23-Apr-20153.3K
SparcRegisterInfo.cpp23-Apr-20157.1K
SparcRegisterInfo.h23-Apr-20151.8K
SparcRegisterInfo.td23-Apr-20158.1K
SparcRelocations.h23-Apr-20151.4K
SparcSelectionDAGInfo.cpp23-Apr-2015746
SparcSelectionDAGInfo.h23-Apr-2015824
SparcSubtarget.cpp23-Apr-20153.3K
SparcSubtarget.h23-Apr-20153.1K
SparcTargetMachine.cpp23-Apr-20153.7K
SparcTargetMachine.h23-Apr-20152.8K
SparcTargetObjectFile.cpp23-Apr-20151.6K
SparcTargetObjectFile.h23-Apr-2015996
SparcTargetStreamer.h23-Apr-20151.4K
TargetInfo/23-Apr-2015

README.txt

      1 
      2 To-do
      3 -----
      4 
      5 * Keep the address of the constant pool in a register instead of forming its
      6   address all of the time.
      7 * We can fold small constant offsets into the %hi/%lo references to constant
      8   pool addresses as well.
      9 * When in V9 mode, register allocate %icc[0-3].
     10 * Add support for isel'ing UMUL_LOHI instead of marking it as Expand.
     11 * Emit the 'Branch on Integer Register with Prediction' instructions.  It's
     12   not clear how to write a pattern for this though:
     13 
     14 float %t1(int %a, int* %p) {
     15         %C = seteq int %a, 0
     16         br bool %C, label %T, label %F
     17 T:
     18         store int 123, int* %p
     19         br label %F
     20 F:
     21         ret float undef
     22 }
     23 
     24 codegens to this:
     25 
     26 t1:
     27         save -96, %o6, %o6
     28 1)      subcc %i0, 0, %l0
     29 1)      bne .LBBt1_2    ! F
     30         nop
     31 .LBBt1_1:       ! T
     32         or %g0, 123, %l0
     33         st %l0, [%i1]
     34 .LBBt1_2:       ! F
     35         restore %g0, %g0, %g0
     36         retl
     37         nop
     38 
     39 1) should be replaced with a brz in V9 mode.
     40 
     41 * Same as above, but emit conditional move on register zero (p192) in V9
     42   mode.  Testcase:
     43 
     44 int %t1(int %a, int %b) {
     45         %C = seteq int %a, 0
     46         %D = select bool %C, int %a, int %b
     47         ret int %D
     48 }
     49 
     50 * Emit MULX/[SU]DIVX instructions in V9 mode instead of fiddling
     51   with the Y register, if they are faster.
     52 
     53 * Codegen bswap(load)/store(bswap) -> load/store ASI
     54 
     55 * Implement frame pointer elimination, e.g. eliminate save/restore for
     56   leaf fns.
     57 * Fill delay slots
     58 
     59 * Implement JIT support
     60 
     61 * Use %g0 directly to materialize 0. No instruction is required.
     62