Home
last modified time | relevance | path

Searched refs:MemBytes (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInstrInfo.h72 TypeSize &MemBytes) const override;
76 TypeSize &MemBytes) const override;
H A DRISCVInstrInfo.cpp138 TypeSize &MemBytes) const { in isLoadFromStackSlot()
144 MemBytes = TypeSize::getFixed(1); in isLoadFromStackSlot()
150 MemBytes = TypeSize::getFixed(2); in isLoadFromStackSlot()
156 MemBytes = TypeSize::getFixed(4); in isLoadFromStackSlot()
161 MemBytes = TypeSize::getFixed(8); in isLoadFromStackSlot()
171 MemBytes = TypeSize::getScalable(RISCV::RVVBytesPerBlock * LMUL); in isLoadFromStackSlot()
192 TypeSize &MemBytes) const { in isStoreToStackSlot()
197 MemBytes = TypeSize::getFixed(1); in isStoreToStackSlot()
202 MemBytes = TypeSize::getFixed(2); in isStoreToStackSlot()
207 MemBytes = TypeSize::getFixed(4); in isStoreToStackSlot()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetInstrInfo.h298 TypeSize &MemBytes) const { in isLoadFromStackSlot() argument
299 MemBytes = TypeSize::getZero(); in isLoadFromStackSlot()
336 TypeSize &MemBytes) const { in isStoreToStackSlot() argument
337 MemBytes = TypeSize::getZero(); in isStoreToStackSlot()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrInfo.h326 TypeSize &MemBytes) const override;
337 TypeSize &MemBytes) const override;
H A DX86InstrInfo.cpp477 static bool isFrameLoadOpcode(int Opcode, TypeSize &MemBytes) { in isFrameLoadOpcode() argument
484 MemBytes = TypeSize::getFixed(1); in isFrameLoadOpcode()
491 MemBytes = TypeSize::getFixed(2); in isFrameLoadOpcode()
502 MemBytes = TypeSize::getFixed(4); in isFrameLoadOpcode()
516 MemBytes = TypeSize::getFixed(8); in isFrameLoadOpcode()
542 MemBytes = TypeSize::getFixed(16); in isFrameLoadOpcode()
562 MemBytes = TypeSize::getFixed(32); in isFrameLoadOpcode()
574 MemBytes = TypeSize::getFixed(64); in isFrameLoadOpcode()
579 static bool isFrameStoreOpcode(int Opcode, TypeSize &MemBytes) { in isFrameStoreOpcode() argument
586 MemBytes = TypeSize::getFixed(1); in isFrameStoreOpcode()
[all …]