/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/MCTargetDesc/ |
MBlazeBaseInfo.h | 1 //===-- MBlazeBaseInfo.h - Top level definitions for MBlaze -- --*- C++ -*-===// 11 // the MBlaze target useful for the compiler back-end and the MC libraries. 57 // MBlaze Specific MachineOperand flags. 102 /// MBlaze::R0, return the number that it corresponds to (e.g. 0). 105 case MBlaze::R0 : return 0; 106 case MBlaze::R1 : return 1; 107 case MBlaze::R2 : return 2; 108 case MBlaze::R3 : return 3; 109 case MBlaze::R4 : return 4; 110 case MBlaze::R5 : return 5 [all...] |
MBlazeAsmBackend.cpp | 1 //===-- MBlazeAsmBackend.cpp - MBlaze Assembler Backend -------------------===// 73 case MBlaze::ADDIK: return MBlaze::ADDIK32; 74 case MBlaze::ORI: return MBlaze::ORI32; 75 case MBlaze::BRLID: return MBlaze::BRLID32; 153 assert(0 && "Mac not supported on MBlaze"); 156 assert(0 && "Windows not supported on MBlaze");
|
MBlazeMCCodeEmitter.cpp | 1 //===-- MBlazeMCCodeEmitter.cpp - Convert MBlaze code to machine code -----===// 141 case MBlaze::ADDIK32: 142 case MBlaze::ORI32: 143 case MBlaze::BRLID32: 167 case MBlaze::ORI32: 168 case MBlaze::ADDIK32: 169 case MBlaze::BRLID32:
|
MBlazeMCTargetDesc.cpp | 1 //===-- MBlazeMCTargetDesc.cpp - MBlaze Target Descriptions -----*- C++ -*-===// 10 // This file provides MBlaze specific target descriptions. 45 InitMBlazeMCRegisterInfo(X, MBlaze::R15); 84 llvm_unreachable("MBlaze does not support Darwin MACH-O format"); 89 llvm_unreachable("MBlaze does not support Windows COFF format");
|
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/Disassembler/ |
MBlazeDisassembler.cpp | 10 // This file is part of the MBlaze Disassembler. It contains code to translate 15 #include "MBlaze.h" 41 MBlaze::ADD, MBlaze::RSUB, MBlaze::ADDC, MBlaze::RSUBC, //00,01,02,03 42 MBlaze::ADDK, MBlaze::RSUBK, MBlaze::ADDKC, MBlaze::RSUBKC, //04,05,06,0 [all...] |
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/ |
MBlazeInstrInfo.cpp | 1 //===- MBlazeInstrInfo.cpp - MBlaze Instruction Information -----*- C++ -*-===// 10 // This file contains the MBlaze implementation of the TargetInstrInfo class. 31 : MBlazeGenInstrInfo(MBlaze::ADJCALLSTACKDOWN, MBlaze::ADJCALLSTACKUP), 45 if (MI->getOpcode() == MBlaze::LWI) { 64 if (MI->getOpcode() == MBlaze::SWI) { 80 BuildMI(MBB, MI, DL, get(MBlaze::NOP)); 88 llvm::BuildMI(MBB, I, DL, get(MBlaze::ADDK), DestReg) 89 .addReg(SrcReg, getKillRegState(KillSrc)).addReg(MBlaze::R0); 98 BuildMI(MBB, I, DL, get(MBlaze::SWI)).addReg(SrcReg,getKillRegState(isKill) [all...] |
MBlazeRegisterInfo.cpp | 1 //===- MBlazeRegisterInfo.cpp - MBlaze Register Information -== -*- C++ -*-===// 10 // This file contains the MBlaze implementation of the TargetRegisterInfo 15 #define DEBUG_TYPE "mblaze-frame-info" 17 #include "MBlaze.h" 46 : MBlazeGenRegisterInfo(MBlaze::R15), Subtarget(ST), TII(tii) {} 49 return MBlaze::R20; 56 /// MBlaze Callee Saved Registers 59 // MBlaze callee-save register range is R20 - R31 61 MBlaze::R20, MBlaze::R21, MBlaze::R22, MBlaze::R23 [all...] |
MBlazeRelocations.h | 1 //===- MBlazeRelocations.h - MBlaze Code Relocations ------------*- C++ -*-===// 10 // This file defines the MBlaze target-specific relocation types. 20 namespace MBlaze {
|
MBlazeInstrInfo.h | 1 //===- MBlazeInstrInfo.h - MBlaze Instruction Information -------*- C++ -*-===// 10 // This file contains the MBlaze implementation of the TargetInstrInfo class. 17 #include "MBlaze.h" 27 namespace MBlaze { 29 // MBlaze Branch Codes 38 // MBlaze Condition Codes 92 case COND_EQ: return MBlaze::BEQID; 93 case COND_NE: return MBlaze::BNEID; 94 case COND_GT: return MBlaze::BGTID; 95 case COND_GE: return MBlaze::BGEID [all...] |
MBlazeFrameLowering.cpp | 1 //===- MBlazeFrameLowering.cpp - MBlaze Frame Information ------*- C++ -*-====// 10 // This file contains the MBlaze implementation of TargetFrameLowering class. 14 #define DEBUG_TYPE "mblaze-frame-lowering" 37 "disable-mblaze-stack-adjust", 39 cl::desc("Disable MBlaze stack layout adjustment."), 124 if (I->getOpcode() != MBlaze::LWI || I->getNumOperands() != 3 || 133 SI->getOpcode() != MBlaze::SWI) continue; 177 if (I->getOpcode() != MBlaze::SWI || I->getNumOperands() != 3 || 188 case MBlaze::R5: FILoc = -4; break; 189 case MBlaze::R6: FILoc = -8; break [all...] |
MBlazeISelLowering.cpp | 1 //===-- MBlazeISelLowering.cpp - MBlaze DAG Lowering Implementation -------===// 10 // This file defines the interfaces that MBlaze uses to lower LLVM code into a 15 #define DEBUG_TYPE "mblaze-lower" 59 // MBlaze does not have i1 type, so use i32 for 65 addRegisterClass(MVT::i32, MBlaze::GPRRegisterClass); 67 addRegisterClass(MVT::f32, MBlaze::GPRRegisterClass); 100 // MBlaze has no REM or DIVREM operations. 132 // MBlaze doesn't have MUL_LOHI 146 // MBlaze Custom Operations 159 // Operations not directly supported by MBlaze [all...] |
MBlazeDelaySlotFiller.cpp | 1 //===-- DelaySlotFiller.cpp - MBlaze delay slot filler --------------------===// 17 #include "MBlaze.h" 34 "disable-mblaze-delay-filler", 36 cl::desc("Disable the MBlaze delay slot filter."), 51 return "MBlaze Delay Slot Filler"; 99 case MBlaze::BRLID: 100 case MBlaze::BRALID: 101 case MBlaze::BRLD: 102 case MBlaze::BRALD: 195 if (op == MBlaze::ADDK || op == MBlaze::ADDIK | [all...] |
Makefile | 1 ##===- lib/Target/MBlaze/Makefile --------------------------*- Makefile -*-===## 11 TARGET = MBlaze
|
MBlazeELFWriterInfo.cpp | 1 //===-- MBlazeELFWriterInfo.cpp - ELF Writer Info for the MBlaze backend --===// 10 // This file implements ELF writer information for the MBlaze backend. 37 case MBlaze::reloc_pcrel_word: 39 case MBlaze::reloc_absolute_word: 42 llvm_unreachable("unknown mblaze machine relocation type"); 55 llvm_unreachable("unknown mblaze relocation type"); 99 return MBlaze::reloc_absolute_word;
|
MBlazeRegisterInfo.h | 1 //===- MBlazeRegisterInfo.h - MBlaze Register Information Impl --*- C++ -*-===// 10 // This file contains the MBlaze implementation of the TargetRegisterInfo 18 #include "MBlaze.h" 29 namespace MBlaze {
|
MBlazeSubtarget.cpp | 1 //===- MBlazeSubtarget.cpp - MBlaze Subtarget Information -------*- C++ -*-===// 10 // This file implements the MBlaze specific subclass of TargetSubtargetInfo. 15 #include "MBlaze.h" 36 CPUName = "mblaze"; 41 HasItin = CPUName != "mblaze"; 47 // Compute the issue width of the MBlaze itineraries 61 CriticalPathRCs.push_back(&MBlaze::GPRRegClass);
|
MBlazeISelDAGToDAG.cpp | 1 //===-- MBlazeISelDAGToDAG.cpp - A dag to dag inst selector for MBlaze ----===// 10 // This file defines an instruction selector for the MBlaze target. 14 #define DEBUG_TYPE "mblaze-isel" 15 #include "MBlaze.h" 42 // MBlazeDAGToDAGISel - MBlaze specific code to select MBlaze machine 63 return "MBlaze DAG->DAG Pattern Instruction Selection"; 168 Base = CurDAG->getRegister(MBlaze::R0, CN->getValueType(0)); 213 unsigned Opc = MBlaze::ADDIK; 228 SDValue R20Reg = CurDAG->getRegister(MBlaze::R20, MVT::i32) [all...] |
MBlazeAsmPrinter.cpp | 1 //===-- MBlazeAsmPrinter.cpp - MBlaze LLVM assembly writer ----------------===// 11 // of machine-dependent LLVM code to GAS-format MBlaze assembly language. 15 #define DEBUG_TYPE "mblaze-asm-printer" 17 #include "MBlaze.h" 60 return "MBlaze Assembly Printer"; 89 // MBlaze Asm Directives 140 if (MBlaze::GPRRegisterClass->contains(Reg))
|
/external/swiftshader/third_party/LLVM/test/MC/Disassembler/MBlaze/ |
dg.exp | 3 if { [llvm_supports_target MBlaze] } {
|
/external/swiftshader/third_party/LLVM/test/CodeGen/MBlaze/ |
dg.exp | 3 if { [llvm_supports_target MBlaze] } {
|
/external/swiftshader/third_party/LLVM/test/MC/MBlaze/ |
dg.exp | 3 if { [llvm_supports_target MBlaze] } {
|
/external/swiftshader/third_party/LLVM/ |
configure | [all...] |