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

  /external/llvm/lib/Target/Mips/
MipsSubtarget.cpp 68 IsGP64bit(false), HasVFPU(false), HasCnMips(false), HasMips3_32(false),
92 assert(((!isGP64bit() && (isABI_O32() || isABI_EABI())) ||
93 (isGP64bit() && (isABI_N32() || isABI_N64()))) &&
133 CriticalPathRCs.push_back(isGP64bit() ?
MipsSubtarget.h 73 bool IsGP64bit;
211 bool isGP64bit() const { return IsGP64bit; }
212 bool isGP32bit() const { return !IsGP64bit; }
213 unsigned getGPRSizeInBytes() const { return isGP64bit() ? 8 : 4; }
MipsSEISelDAGToDAG.cpp 240 if (Subtarget->isGP64bit()) {
251 if (Subtarget->isGP64bit()) {
710 unsigned Opc = Subtarget->isGP64bit() ? Mips::DSUBu : Mips::SUBu;
719 unsigned Opc = Subtarget->isGP64bit() ? Mips::DADDu : Mips::ADDu;
727 if (Subtarget->isGP64bit()) {
    [all...]
MipsSEInstrInfo.cpp 434 if (Subtarget.isGP64bit())
614 unsigned SP = Subtarget.isGP64bit() ? Mips::SP_64 : Mips::SP;
615 unsigned RA = Subtarget.isGP64bit() ? Mips::RA_64 : Mips::RA;
616 unsigned T9 = Subtarget.isGP64bit() ? Mips::T9_64 : Mips::T9;
617 unsigned ZERO = Subtarget.isGP64bit() ? Mips::ZERO_64 : Mips::ZERO;
MipsAsmPrinter.cpp 123 unsigned ZeroReg = Subtarget->isGP64bit() ? Mips::ZERO_64 : Mips::ZERO;
485 if (Subtarget->isGP64bit() && NumVals == 1 && MO.isReg()) {
494 if (!Subtarget->isGP64bit()){
    [all...]
MipsISelLowering.cpp 268 if (Subtarget.isGP64bit()) {
283 if (!Subtarget.isGP64bit()) {
290 if (Subtarget.isGP64bit())
396 if (Subtarget.isGP64bit()) {
412 setMinFunctionAlignment(Subtarget.isGP64bit() ? 3 : 2);
    [all...]
MipsSEFrameLowering.cpp 291 assert(Subtarget.isGP64bit() || Subtarget.hasMTHC1() ||
345 assert(Subtarget.isGP64bit() || Subtarget.hasMTHC1() ||
MipsSEISelLowering.cpp 44 if (Subtarget.isGP64bit())
121 else if (Subtarget.isGP64bit())
124 if (Subtarget.isGP64bit()) {
    [all...]
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsABIFlagsSection.h 187 GPRSize = P.isGP64bit() ? AFL_REG_64 : AFL_REG_32;
  /external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp 374 bool isGP64bit() const { return STI.getFeatureBits() & Mips::FeatureGP64Bit; }
451 RegKind_GPR = 1, /// GPR32 and GPR64 (depending on isGP64bit())
    [all...]

Completed in 55 milliseconds