HomeSort by relevance Sort by last modified time
    Searched refs:ISEL (Results 1 - 9 of 9) sorted by null

  /external/u-boot/drivers/usb/host/
r8a66597-hcd.c 457 r8a66597_mdfy(r8a66597, 0, ISEL | CURPIPE, CFIFOSEL);
500 r8a66597_mdfy(r8a66597, ISEL, ISEL | CURPIPE, CFIFOSEL);
506 r8a66597_mdfy(r8a66597, 0, ISEL | CURPIPE, CFIFOSEL);
r8a66597.h 196 #define ISEL 0x0020 /* b5: DCP FIFO port direction select */
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/
PPCExpandISEL.cpp 1 //===------------- PPCExpandISEL.cpp - Expand ISEL instruction ------------===//
10 // A pass that expands the ISEL instruction into an if-then-else sequence.
30 #define DEBUG_TYPE "ppc-expand-isel"
32 STATISTIC(NumExpanded, "Number of ISEL instructions expanded");
33 STATISTIC(NumRemoved, "Number of ISEL instructions removed");
34 STATISTIC(NumFolded, "Number of ISEL instructions folded");
36 // If -ppc-gen-isel=false is set, we will disable generating the ISEL
38 // -misel or the platform supports ISEL by default, still generate the
39 // ISEL instruction, else expand it
    [all...]
PPCReduceCRLogicals.cpp 476 if (Opc == PPC::ISEL || Opc == PPC::ISEL8)
PPCInstrInfo.cpp 762 // isel is for regular integer GPRs only.
770 // an open question. On the A2, the isel instruction has a 2-cycle latency
799 "isel is for regular integer GPRs only");
801 unsigned OpCode = Is64Bit ? PPC::ISEL8 : PPC::ISEL;
846 // The first input register of isel cannot be r0. If it is a member
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCInstrInfo.cpp 707 // isel is for regular integer GPRs only.
715 // an open question. On the A2, the isel instruction has a 2-cycle latency
734 "Cannot insert select on target without ISEL support");
747 "isel is for regular integer GPRs only");
749 unsigned OpCode = Is64Bit ? PPC::ISEL8 : PPC::ISEL;
794 // The first input register of isel cannot be r0. If it is a member
    [all...]
  /external/v8/src/ppc/
assembler-ppc.cc 1009 void Assembler::isel(Register rt, Register ra, Register rb, int cb) { function in class:v8::internal::Assembler
1010 emit(EXT2 | ISEL | rt.code() * B21 | ra.code() * B16 | rb.code() * B11 |
    [all...]
constants-ppc.h     [all...]
simulator-ppc.cc     [all...]

Completed in 163 milliseconds