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

  /external/llvm/include/llvm/MC/MCParser/
MCParsedAsmOperand.h 62 /// isMem - Is this a memory operand?
63 virtual bool isMem() const = 0;
  /external/llvm/include/llvm/CodeGen/
CallingConvLower.h 61 /// isMem - True if this is a memory loc, false if it is a register loc.
62 unsigned isMem : 1;
83 Ret.isMem = false;
106 Ret.isMem = true;
132 isMem = false;
137 isMem = true;
143 bool isRegLoc() const { return !isMem; }
144 bool isMemLoc() const { return isMem; }
  /external/llvm/lib/Target/SystemZ/AsmParser/
SystemZAsmParser.cpp 231 bool isMem() const override {
234 bool isMem(MemoryKind MemKind) const {
241 bool isMem(MemoryKind MemKind, RegisterKind RegKind) const {
242 return isMem(MemKind) && Mem.RegKind == RegKind;
245 return isMem(MemKind, RegKind) && inRange(Mem.Disp, 0, 0xfff);
248 return isMem(MemKind, RegKind) && inRange(Mem.Disp, -524288, 524287);
255 assert(isMem(BDVMem) && "Invalid operand type");
283 assert(isMem(BDMem) && "Invalid operand type");
289 assert(isMem(BDXMem) && "Invalid operand type");
296 assert(isMem(BDLMem) && "Invalid operand type")
    [all...]
  /external/llvm/lib/Target/X86/
X86ExpandPseudo.cpp 79 bool isMem = Opcode == X86::TCRETURNmi || Opcode == X86::TCRETURNmi64;
81 MachineOperand &StackAdjust = MBBI->getOperand(isMem ? 5 : 1);
X86InstrInfo.h 135 inline static bool isMem(const MachineInstr *MI, unsigned Op) {
X86AsmPrinter.cpp 297 assert(isMem(MI, Op) && "Invalid memory reference!");
X86InstrInfo.cpp     [all...]
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp 694 else if (isMem()) {
    [all...]
  /external/llvm/lib/Target/X86/AsmParser/
X86Operand.h 208 bool isMem() const override { return Kind == Memory; }
X86AsmInstrumentation.cpp 285 assert(Op.isMem() && "Op should be a memory operand.");
420 if (Op.isMem()) {
    [all...]
X86AsmParser.cpp 874 if (!Op1.isMem() || !Op2.isMem())
    [all...]
  /external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp     [all...]
  /external/llvm/lib/Target/Sparc/AsmParser/
SparcAsmParser.cpp 210 bool isMem() const override { return isMEMrr() || isMEMri(); }
    [all...]
  /external/llvm/lib/Target/AMDGPU/AsmParser/
AMDGPUAsmParser.cpp 241 bool isMem() const override {
    [all...]
  /external/llvm/lib/Target/Hexagon/AsmParser/
HexagonAsmParser.cpp 240 bool isMem() const { llvm_unreachable("No isMem"); }
    [all...]
  /external/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp 535 bool isMem() const override { return false; }
    [all...]
  /external/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp 438 bool isMem() const override { return false; }
    [all...]

Completed in 672 milliseconds