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

  /external/llvm/lib/Target/Mips/
MipsSubtarget.cpp 111 IsGP64bit(false), HasVFPU(false), HasCnMips(false), IsLinux(true),
146 assert(((!isGP64bit() && (isABI_O32() || isABI_EABI())) ||
147 (isGP64bit() && (isABI_N32() || isABI_N64()))) &&
185 CriticalPathRCs.push_back(isGP64bit() ? &Mips::GPR64RegClass
MipsSEInstrInfo.cpp 434 if (Subtarget.isGP64bit())
599 unsigned SP = STI.isGP64bit() ? Mips::SP_64 : Mips::SP;
600 unsigned RA = STI.isGP64bit() ? Mips::RA_64 : Mips::RA;
601 unsigned T9 = STI.isGP64bit() ? Mips::T9_64 : Mips::T9;
602 unsigned ZERO = STI.isGP64bit() ? Mips::ZERO_64 : Mips::ZERO;
MipsSubtarget.h 79 bool IsGP64bit;
217 bool isGP64bit() const { return IsGP64bit; }
218 bool isGP32bit() const { return !IsGP64bit; }
MipsAsmPrinter.cpp 120 unsigned ZeroReg = Subtarget->isGP64bit() ? Mips::ZERO_64 : Mips::ZERO;
495 if (Subtarget->isGP64bit() && NumVals == 1 && MO.isReg()) {
504 if (!Subtarget->isGP64bit()){
    [all...]
MipsISelLowering.cpp 259 if (Subtarget->isGP64bit()) {
271 if (!Subtarget->isGP64bit()) {
278 if (Subtarget->isGP64bit())
377 if (Subtarget->isGP64bit()) {
393 setMinFunctionAlignment(Subtarget->isGP64bit() ? 3 : 2);
    [all...]
MipsSEISelDAGToDAG.cpp 661 if (Subtarget->isGP64bit()) {
MipsSEISelLowering.cpp 42 if (Subtarget->isGP64bit())
123 else if (Subtarget->isGP64bit())
126 if (Subtarget->isGP64bit()) {
    [all...]
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsABIFlagsSection.h 179 GPRSize = P.isGP64bit() ? AFL_REG_64 : AFL_REG_32;
  /external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp 250 bool isGP64bit() const { return STI.getFeatureBits() & Mips::FeatureGP64Bit; }
311 RegKind_GPR = 1, /// GPR32 and GPR64 (depending on isGP64bit())
    [all...]

Completed in 649 milliseconds