HomeSort by relevance Sort by last modified time
    Searched refs:PPC (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/llvm/lib/Target/PowerPC/
PPCPredicates.cpp 1 //===-- PPCPredicates.cpp - PPC Branch Predicate Information --------------===//
19 PPC::Predicate PPC::InvertPredicate(PPC::Predicate Opcode) {
21 default: llvm_unreachable("Unknown PPC branch opcode!");
22 case PPC::PRED_EQ: return PPC::PRED_NE;
23 case PPC::PRED_NE: return PPC::PRED_EQ;
24 case PPC::PRED_LT: return PPC::PRED_GE
    [all...]
PPCFrameLowering.h 16 #include "PPC.h"
118 static const SpillSlot darwin64Offsets = {PPC::X31, -8};
121 static const SpillSlot darwinOffsets = {PPC::R31, -4};
134 {PPC::F31, -8},
135 {PPC::F30, -16},
136 {PPC::F29, -24},
137 {PPC::F28, -32},
138 {PPC::F27, -40},
139 {PPC::F26, -48},
140 {PPC::F25, -56}
    [all...]
PPCRelocations.h 19 // Hack to rid us of a PPC pre-processor symbol which is erroneously
20 // defined in a PowerPC header file (bug in Linux/PPC)
21 #ifdef PPC
22 #undef PPC
26 namespace PPC {
PPCRegisterInfo.cpp 16 #include "PPC.h"
71 /// PPC::F14, return the number that it corresponds to (e.g. 14).
73 using namespace PPC;
115 : PPCGenRegisterInfo(ST.isPPC64() ? PPC::LR8 : PPC::LR,
119 ImmToIdxMap[PPC::LD] = PPC::LDX; ImmToIdxMap[PPC::STD] = PPC::STDX;
120 ImmToIdxMap[PPC::LBZ] = PPC::LBZX; ImmToIdxMap[PPC::STB] = PPC::STBX
    [all...]
PPCHazardRecognizers.cpp 16 #include "PPC.h"
126 assert(Stalls == 0 && "PPC hazards don't support scoreboard lookahead");
166 if (HasCTRSet && (Opcode == PPC::BCTRL_Darwin || Opcode == PPC::BCTRL_SVR4))
175 case PPC::LBZ: case PPC::LBZU:
176 case PPC::LBZX:
177 case PPC::LBZ8: case PPC::LBZU8:
178 case PPC::LBZX8
    [all...]
PPCInstrInfo.cpp 15 #include "PPC.h"
44 : PPCGenInstrInfo(PPC::ADJCALLSTACKDOWN, PPC::ADJCALLSTACKUP),
63 case PPC::LD:
64 case PPC::LWZ:
65 case PPC::LFS:
66 case PPC::LFD:
81 case PPC::STD:
82 case PPC::STW:
83 case PPC::STFS
    [all...]
PPCFrameLowering.cpp 1 //=====- PPCFrameLowering.cpp - PPC Frame Information -----------*- C++ -*-===//
10 // This file contains the PPC implementation of TargetFrameLowering class.
42 PPC::V0 , PPC::V1 , PPC::V2 , PPC::V3 , PPC::V4 , PPC::V5 , PPC::V6 , PPC::V7
    [all...]
PPCFixupKinds.h 1 //===-- PPCFixupKinds.h - PPC Specific Fixup Entries ------------*- C++ -*-===//
16 namespace PPC {
PPCPredicates.h 1 //===-- PPCPredicates.h - PPC Branch Predicate Information ------*- C++ -*-===//
17 #include "PPC.h"
20 namespace PPC {
PPCISelDAGToDAG.cpp 1 //===-- PPCISelDAGToDAG.cpp - PPC --pattern matching inst selector --------===//
11 // converting from a legalized dag to a PPC dag.
15 #define DEBUG_TYPE "ppc-codegen"
16 #include "PPC.h"
38 /// PPCDAGToDAGISel - PPC specific code to select PPC machine
177 if (RegInfo->getRegClass(Reg) == &PPC::VRRCRegClass) {
196 unsigned InVRSAVE = RegInfo->createVirtualRegister(&PPC::GPRCRegClass);
197 unsigned UpdatedVRSAVE = RegInfo->createVirtualRegister(&PPC::GPRCRegClass);
207 BuildMI(EntryBB, IP, dl, TII.get(PPC::MFVRSAVE), InVRSAVE)
    [all...]
Makefile 12 TARGET = PPC
PPCCodeEmitter.cpp 17 #include "PPC.h"
86 /// createPPCCodeEmitterPass - Return a pass that emits the collected PPC code
127 case PPC::MovePCtoLR:
128 case PPC::MovePCtoLR8:
141 assert((MI.getOpcode() == PPC::MTCRF || MI.getOpcode() == PPC::MFOCRF) &&
142 (MO.getReg() >= PPC::CR0 && MO.getReg() <= PPC::CR7));
184 MCE.addRelocation(GetRelocation(MO, PPC::reloc_pcrel_bx));
191 MCE.addRelocation(GetRelocation(MO, PPC::reloc_pcrel_bcx))
    [all...]
PPCMCCodeEmitter.cpp 1 //===-- PPCMCCodeEmitter.cpp - Convert PPC code to machine code -----------===//
15 #include "PPC.h"
94 (MCFixupKind)PPC::fixup_ppc_br24));
105 (MCFixupKind)PPC::fixup_ppc_brcond14));
116 (MCFixupKind)PPC::fixup_ppc_ha16));
127 (MCFixupKind)PPC::fixup_ppc_lo16));
144 (MCFixupKind)PPC::fixup_ppc_lo16));
162 (MCFixupKind)PPC::fixup_ppc_lo14));
171 assert((MI.getOpcode() == PPC::MTCRF || MI.getOpcode() == PPC::MFOCRF) &
    [all...]
PPCBranchSelector.cpp 18 #define DEBUG_TYPE "ppc-branch-select"
19 #include "PPC.h"
106 if (I->getOpcode() != PPC::BCC || I->getOperand(2).isImm()) {
141 // 0. PPC branch predicate
144 PPC::Predicate Pred = (PPC::Predicate)I->getOperand(0).getImm();
151 BuildMI(MBB, I, dl, TII->get(PPC::BCC))
152 .addImm(PPC::InvertPredicate(Pred)).addReg(CRReg).addImm(2);
155 I = BuildMI(MBB, I, dl, TII->get(PPC::B)).addMBB(Dest);
PPCISelLowering.cpp 1 //===-- PPCISelLowering.cpp - PPC DAG Lowering Implementation -------------===//
56 static cl::opt<bool> EnablePPCPreinc("enable-ppc-preinc",
57 cl::desc("enable preincrement load/store generation on PPC (experimental)"),
81 addRegisterClass(MVT::i32, PPC::GPRCRegisterClass);
82 addRegisterClass(MVT::f32, PPC::F4RCRegisterClass);
83 addRegisterClass(MVT::f64, PPC::F8RCRegisterClass);
273 addRegisterClass(MVT::i64, PPC::G8RCRegisterClass);
349 addRegisterClass(MVT::v4f32, PPC::VRRCRegisterClass);
350 addRegisterClass(MVT::v4i32, PPC::VRRCRegisterClass);
351 addRegisterClass(MVT::v8i16, PPC::VRRCRegisterClass)
    [all...]
PPCSubtarget.h 1 //=====-- PPCSubtarget.h - Define Subtarget for the PPC -------*- C++ -*--====//
25 // GCC #defines PPC on Linux but we use it as our namespace name
26 #undef PPC
31 namespace PPC {
PPCJITInfo.cpp 141 // Linux & FreeBSD / PPC 32 support
415 switch ((PPC::RelocationType)MR->getRelocationType()) {
417 case PPC::reloc_pcrel_bx:
424 case PPC::reloc_pcrel_bcx:
432 case PPC::reloc_absolute_high: // high bits of ref -> low 16 of instr
433 case PPC::reloc_absolute_low: { // low bits of ref -> low 16 of instr
437 if (MR->getRelocationType() == PPC::reloc_absolute_high) {
452 case PPC::reloc_absolute_low_ix: { // low bits of ref -> low 14 of instr
PPC.h 1 //===-- PPC.h - Top-level interface for PowerPC Target ----------*- C++ -*-===//
21 // GCC #defines PPC on Linux but we use it as our namespace name
22 #undef PPC
57 // PPC Specific MachineOperand flags.
  /external/llvm/lib/Target/PowerPC/InstPrinter/
PPCInstPrinter.cpp 1 //===-- PPCInstPrinter.cpp - Convert PPC MCInst to assembly syntax --------===//
10 // This class prints an PPC MCInst to a .s file.
35 if (MI->getOpcode() == PPC::RLWINM) {
56 if ((MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) &&
65 if (MI->getOpcode() == PPC::RLDICR) {
89 switch ((PPC::Predicate)Code) {
91 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
92 case PPC::PRED_LT: O << "lt"; return;
93 case PPC::PRED_LE: O << "le"; return
    [all...]
  /external/clang/include/clang/Basic/
TargetBuiltins.h 14 #undef PPC
28 /// PPC builtins
29 namespace PPC {
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCTargetDesc.cpp 48 unsigned RA = isPPC64 ? PPC::LR8 : PPC::LR;
86 MachineLocation Src(PPC::R1, 0);
  /external/libpcap/
atmuni31.h 38 #define PPC 0x05 /* Point-to-point signal msg */
  /external/stlport/stlport/stl/config/
_linux.h 114 defined(__ppc__) || defined(PPC) || defined(__powerpc__) || \
  /external/tcpdump/
atmuni31.h 38 #define PPC 0x05 /* Point-to-point signal msg */
  /ndk/sources/cxx-stl/stlport/stlport/stl/config/
_linux.h 114 defined(__ppc__) || defined(PPC) || defined(__powerpc__) || \

Completed in 875 milliseconds

1 2 3