Searched refs:isMem (Results 1 - 11 of 11) sorted by relevance

/external/llvm/include/llvm/MC/MCParser/
H A DMCParsedAsmOperand.h51 /// isMem - Is this a memory operand?
52 virtual bool isMem() const = 0;
/external/llvm/include/llvm/CodeGen/
H A DCallingConvLower.h52 /// isMem - True if this is a memory loc, false if it is a register loc.
53 unsigned isMem : 1;
74 Ret.isMem = false;
97 Ret.isMem = true;
117 bool isRegLoc() const { return !isMem; }
118 bool isMemLoc() const { return isMem; }
/external/llvm/lib/Target/SystemZ/AsmParser/
H A DSystemZAsmParser.cpp203 virtual bool isMem() const LLVM_OVERRIDE {
206 bool isMem(RegisterKind RegKind, MemoryKind MemKind) const { function in class:__anon21501::SystemZOperand
213 return isMem(RegKind, MemKind) && inRange(Mem.Disp, 0, 0xfff);
216 return isMem(RegKind, MemKind) && inRange(Mem.Disp, -524288, 524287);
/external/llvm/lib/Target/X86/
H A DX86InstrInfo.h123 inline static bool isMem(const MachineInstr *MI, unsigned Op) { function in namespace:llvm
H A DX86AsmPrinter.cpp319 assert(isMem(MI, Op) && "Invalid memory reference!");
H A DX86FrameLowering.cpp1097 bool isMem = RetOpcode == X86::TCRETURNmi || RetOpcode == X86::TCRETURNmi64;
1101 MachineOperand &StackAdjust = MBBI->getOperand(isMem ? 5 : 1);
/external/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp625 else if (isMem()) {
955 bool isMem() const { return Kind == k_Memory; } function in class:__anon21372::ARMOperand
966 if (!isMem())
973 if (!isMem() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0)
987 if (!isMem() || Memory.Alignment != 0) return false;
1009 if (!isMem() || Memory.Alignment != 0) return false;
1039 if (!isMem() || Memory.Alignment != 0) return false;
1049 if (!isMem() || !Memory.OffsetRegNum || Memory.isNegative ||
1055 if (!isMem() || !Memory.OffsetRegNum || Memory.isNegative ||
1062 if (!isMem() || !Memor
[all...]
/external/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp795 bool isMem() const { return Kind == Memory; } function in struct:__anon21518::X86Operand
1012 return (Op.isMem() &&
1022 return Op.isMem() &&
1991 if (Op.isMem() && Op.Mem.SegReg == 0 &&
2004 if (Op.isMem() && Op.Mem.SegReg == 0 &&
/external/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp308 bool isMem() const { return Kind == k_Memory; } function in class:__anon21420::MipsOperand
/external/llvm/lib/Target/PowerPC/AsmParser/
H A DPPCAsmParser.cpp382 bool isMem() const { return false; } function in struct:__anon21446::PPCOperand
/external/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp262 bool isMem() const { return false; } function in class:__anon21337::AArch64Operand

Completed in 178 milliseconds