HomeSort by: relevance | last modified time | path
    Searched refs:IsGP64bit (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsSubtarget.h 102 // IsGP64bit - General-purpose registers are 64 bits wide
103 bool IsGP64bit;
289 bool isGP64bit() const { return IsGP64bit; }
290 bool isGP32bit() const { return !IsGP64bit; }
291 unsigned getGPRSizeInBytes() const { return isGP64bit() ? 8 : 4; }
MipsSubtarget.cpp 77 IsGP64bit(false), HasVFPU(false), HasCnMips(false), HasCnMipsP(false),
102 assert(((!isGP64bit() && isABI_O32()) ||
103 (isGP64bit() && (isABI_N32() || isABI_N64()))) &&
229 CriticalPathRCs.push_back(isGP64bit() ? &Mips::GPR64RegClass
259 if ((isABI_N32() || isABI_N64()) && !isGP64bit())

Completed in 54 milliseconds