Searched refs:OpSize (Results 1 – 13 of 13) sorted by relevance
/external/llvm/utils/TableGen/ |
D | X86RecognizableInstr.h | 52 uint8_t OpSize; variable 123 bool hasREX_WPrefix, uint8_t OpSize); 134 uint8_t OpSize); 139 uint8_t OpSize); 144 uint8_t OpSize); 146 uint8_t OpSize); 148 uint8_t OpSize); 150 uint8_t OpSize); 152 uint8_t OpSize); 154 uint8_t OpSize); [all …]
|
D | X86RecognizableInstr.cpp | 194 OpSize = byteFromRec(Rec, "OpSizeBits"); in RecognizableInstr() 402 if (HasREX_WPrefix && (OpSize == X86Local::OpSize16 || OpPrefix == X86Local::PD)) in insnContext() 404 else if (OpSize == X86Local::OpSize16 && OpPrefix == X86Local::XD) in insnContext() 406 else if (OpSize == X86Local::OpSize16 && OpPrefix == X86Local::XS) in insnContext() 408 else if (OpSize == X86Local::OpSize16 || OpPrefix == X86Local::PD) in insnContext() 425 if (OpSize == X86Local::OpSize16 && OpPrefix == X86Local::XD) in insnContext() 427 else if (OpSize == X86Local::OpSize16 && OpPrefix == X86Local::XS) in insnContext() 429 else if (OpSize == X86Local::OpSize16 || OpPrefix == X86Local::PD) in insnContext() 450 uint8_t OpSize)) { in handleOperand() argument 468 OpSize); in handleOperand() [all …]
|
/external/llvm/test/CodeGen/X86/ |
D | rotate4.ll | 4 ; a << (b & (OpSize-1)) | a >> ((0 - b) & (OpSize-1))
|
/external/llvm/lib/Analysis/ |
D | TargetTransformInfo.cpp | 291 unsigned OpSize = OpTy->getScalarSizeInBits(); in getOperationCost() local 292 if (DL->isLegalInteger(OpSize) && in getOperationCost() 293 OpSize <= DL->getPointerTypeSizeInBits(Ty)) in getOperationCost()
|
D | ConstantFolding.cpp | 656 unsigned OpSize = DL->getTypeSizeInBits(Op0->getType()); in SymbolicallyEvaluateBinop() local 661 return ConstantInt::get(Op0->getType(), Offs1.zextOrTrunc(OpSize) - in SymbolicallyEvaluateBinop() 662 Offs2.zextOrTrunc(OpSize)); in SymbolicallyEvaluateBinop()
|
/external/llvm/lib/Target/X86/ |
D | X86InstrFormats.td | 149 class OpSize16 { OperandSize OpSize = OpSize16; } 150 class OpSize32 { OperandSize OpSize = OpSize32; } 228 OperandSize OpSize = OpSizeFixed; // Does this instruction's encoding change 230 bits<2> OpSizeBits = OpSize.Value;
|
D | X86InstrArithmetic.td | 656 /// OpSize - Selects whether the instruction needs a 0x66 prefix based on 659 OperandSize OpSize = opSize; 700 let OpSize = typeinfo.OpSize;
|
D | X86ISelLowering.cpp | 2827 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8; in LowerCall() local 2828 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true); in LowerCall()
|
D | X86InstrSSE.td | 2171 // SSE2 instructions without OpSize prefix
|
/external/llvm/lib/Target/X86/MCTargetDesc/ |
D | X86MCCodeEmitter.cpp | 1132 unsigned char OpSize = (TSFlags & X86II::OpSizeMask) >> X86II::OpSizeShift; in EmitOpcodePrefix() local 1133 if (OpSize == (is16BitMode(STI) ? X86II::OpSize32 : X86II::OpSize16)) in EmitOpcodePrefix()
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64ISelLowering.cpp | 2297 unsigned OpSize = Flags.isByVal() ? Flags.getByValSize() * 8 in LowerCall() local 2299 OpSize = (OpSize + 7) / 8; in LowerCall() 2301 if (OpSize < 8) in LowerCall() 2302 BEAlign = 8 - OpSize; in LowerCall() 2311 int FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true); in LowerCall()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | DAGCombiner.cpp | 3469 static bool matchRotateSub(SDValue Pos, SDValue Neg, unsigned OpSize) { in matchRotateSub() argument 3503 isPowerOf2_64(OpSize) && in matchRotateSub() 3505 cast<ConstantSDNode>(Neg.getOperand(1))->getAPIntValue() == OpSize - 1) { in matchRotateSub() 3507 MaskLoBits = Log2_64(OpSize); in matchRotateSub() 3523 cast<ConstantSDNode>(Pos.getOperand(1))->getAPIntValue() == OpSize - 1) in matchRotateSub() 3559 return Width == OpSize; in matchRotateSub()
|
/external/llvm/lib/Target/PowerPC/ |
D | PPCISelLowering.cpp | 3219 uint32_t OpSize = (Arg.getValueType().getSizeInBits()+7)/8; in CalculateTailCallArgDest() local 3220 int FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true); in CalculateTailCallArgDest()
|