Home
last modified time | relevance | path

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

/minix/external/bsd/llvm/dist/llvm/lib/Target/X86/
H A DX86InstrFormats.td142 class OperandSize<bits<2> val> {
145 def OpSizeFixed : OperandSize<0>; // Never needs a 0x66 prefix.
146 def OpSize16 : OperandSize<1>; // Needs 0x66 prefix in 32-bit mode.
147 def OpSize32 : OperandSize<2>; // Needs 0x66 prefix in 16-bit mode.
160 class OpSize16 { OperandSize OpSize = OpSize16; }
161 class OpSize32 { OperandSize OpSize = OpSize32; }
244 OperandSize OpSize = OpSizeFixed; // Does this instruction's encoding change
H A DX86InstrArithmetic.td554 bit hasOddOpcode, OperandSize opSize,
608 OperandSize OpSize = opSize;
H A DX86ISelLowering.cpp8119 int OperandSize = Mask.size() / V.getNumOperands(); in lowerVectorShuffleAsBroadcast() local
8120 V = V.getOperand(BroadcastIdx / OperandSize); in lowerVectorShuffleAsBroadcast()
8121 BroadcastIdx %= OperandSize; in lowerVectorShuffleAsBroadcast()