Home
last modified time | relevance | path

Searched refs:OpSize (Results 1 – 13 of 13) sorted by relevance

/external/llvm/utils/TableGen/
DX86RecognizableInstr.h52 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 …]
DX86RecognizableInstr.cpp194 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/
Drotate4.ll4 ; a << (b & (OpSize-1)) | a >> ((0 - b) & (OpSize-1))
/external/llvm/lib/Analysis/
DTargetTransformInfo.cpp291 unsigned OpSize = OpTy->getScalarSizeInBits(); in getOperationCost() local
292 if (DL->isLegalInteger(OpSize) && in getOperationCost()
293 OpSize <= DL->getPointerTypeSizeInBits(Ty)) in getOperationCost()
DConstantFolding.cpp656 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/
DX86InstrFormats.td149 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;
DX86InstrArithmetic.td656 /// OpSize - Selects whether the instruction needs a 0x66 prefix based on
659 OperandSize OpSize = opSize;
700 let OpSize = typeinfo.OpSize;
DX86ISelLowering.cpp2827 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8; in LowerCall() local
2828 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true); in LowerCall()
DX86InstrSSE.td2171 // SSE2 instructions without OpSize prefix
/external/llvm/lib/Target/X86/MCTargetDesc/
DX86MCCodeEmitter.cpp1132 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/
DAArch64ISelLowering.cpp2297 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/
DDAGCombiner.cpp3469 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/
DPPCISelLowering.cpp3219 uint32_t OpSize = (Arg.getValueType().getSizeInBits()+7)/8; in CalculateTailCallArgDest() local
3220 int FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true); in CalculateTailCallArgDest()