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

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/MC/MCParser/
H A DMCParsedAsmOperand.h62 /// isMem - Is this a memory operand?
63 virtual bool isMem() const = 0;
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DCallingConvLower.h63 /// isMem - True if this is a memory loc, false if it is a register loc.
64 unsigned isMem : 1;
85 Ret.isMem = false;
108 Ret.isMem = true;
134 isMem = false;
139 isMem = true;
145 bool isRegLoc() const { return !isMem; }
146 bool isMemLoc() const { return isMem; }
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/AsmParser/
H A DSystemZAsmParser.cpp253 bool isMem() const override {
256 bool isMem(MemoryKind MemKind) const { function in class:__anon5349::SystemZOperand
263 bool isMem(MemoryKind MemKind, RegisterKind RegKind) const { function in class:__anon5349::SystemZOperand
264 return isMem(MemKind) && Mem.RegKind == RegKind;
267 return isMem(MemKind, RegKind) && inRange(Mem.Disp, 0, 0xfff);
270 return isMem(MemKind, RegKind) && inRange(Mem.Disp, -524288, 524287);
305 assert(isMem(BDMem) && "Invalid operand type");
311 assert(isMem(BDXMem) && "Invalid operand type");
318 assert(isMem(BDLMem) && "Invalid operand type");
325 assert(isMem(BDRMe
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ExpandPseudo.cpp195 bool isMem = Opcode == X86::TCRETURNmi || Opcode == X86::TCRETURNmi64; local
197 MachineOperand &StackAdjust = MBBI->getOperand(isMem ? X86::AddrNumOperands
H A DX86InstrInfo.h125 inline static bool isMem(const MachineInstr &MI, unsigned Op) { function in namespace:llvm
H A DX86AsmPrinter.cpp337 assert(isMem(*MI, OpNo) && "Invalid memory reference!");
H A DX86InstrInfo.cpp1915 if (isMem(MI, LastCommutableVecOp))
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Lanai/AsmParser/
H A DLanaiAsmParser.cpp170 assert(isMem() && "Invalid type access!");
175 assert(isMem() && "Invalid type access!");
180 assert(isMem() && "Invalid type access!");
185 assert(isMem() && "Invalid type access!");
194 bool isMem() const override {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/BPF/AsmParser/
H A DBPFAsmParser.cpp126 bool isMem() const override { return false; }
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/MSP430/AsmParser/
H A DMSP430AsmParser.cpp160 bool isMem() const { return Kind == k_Mem; } function in class:__anon5218::MSP430Operand
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/
H A DX86Operand.h287 bool isMem() const override { return Kind == Memory; }
H A DX86AsmParser.cpp1340 if (FinalOp.isMem()) {
1342 if (!OrigOp.isMem())
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AVR/AsmParser/
H A DAVRAsmParser.cpp182 bool isMem() const { return Kind == k_Memri; } function in class:__anon5105::AVROperand
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmParser.cpp94 bool isMem() const override { return false; }
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp1315 bool isMem() const override { return Kind == k_Memory; }
1318 return isMem() && isa<MCConstantExpr>(getMemOff());
1324 if (!isMem())
1338 if (!isMem())
1352 return isMem() && getMemBase()->isMM16AsmReg();
1356 return isMem() && isConstantMemOff() && isUInt<Bits>(getConstantMemOff())
1361 return isMem() && isConstantMemOff() && isUInt<Bits>(getConstantMemOff())
1367 return isMem() && isConstantMemOff() && isInt<Bits>(getConstantMemOff())
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Sparc/AsmParser/
H A DSparcAsmParser.cpp258 bool isMem() const override { return isMEMrr() || isMEMri(); }
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/RISCV/AsmParser/
H A DRISCVAsmParser.cpp277 bool isMem() const override { return false; }
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/AsmParser/
H A DHexagonAsmParser.cpp262 bool isMem() const override { llvm_unreachable("No isMem"); }
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/AsmParser/
H A DPPCAsmParser.cpp406 bool isMem() const override { return false; }
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp629 bool isMem() const override { return false; }
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/
H A DAMDGPUAsmParser.cpp640 bool isMem() const override {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp1287 bool isMem() const override {

Completed in 509 milliseconds