Home
last modified time | relevance | path

Searched refs:OperandSize (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLowerMemIntrinsics.cpp121 unsigned OperandSize = DL.getTypeStoreSize(OpTy); in createMemCpyLoopKnownSize() local
123 (!AtomicElementSize || OperandSize % *AtomicElementSize == 0) && in createMemCpyLoopKnownSize()
126 uint64_t GepIndex = BytesCopied / OperandSize; in createMemCpyLoopKnownSize()
127 assert(GepIndex * OperandSize == BytesCopied && in createMemCpyLoopKnownSize()
151 BytesCopied += OperandSize; in createMemCpyLoopKnownSize()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrFormats.td179 class OperandSize<bits<2> val> {
182 def OpSizeFixed : OperandSize<0>; // Never needs a 0x66 prefix.
183 def OpSize16 : OperandSize<1>; // Needs 0x66 prefix in 32/64-bit mode.
184 def OpSize32 : OperandSize<2>; // Needs 0x66 prefix in 16-bit mode.
230 OperandSize OpSize = OpSizeFixed; // Does this instruction's encoding change
H A DX86InstrUtils.td19 class OpSize16 { OperandSize OpSize = OpSize16; }
20 class OpSize32 { OperandSize OpSize = OpSize32; }
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMInstructionSelector.cpp463 OperandSize(OpSize) {} in CmpConstants()
479 const unsigned OperandSize; member
545 if (!validOpRegPair(MRI, LHSReg, RHSReg, Helper.OperandSize, in selectCmp()