Searched defs:OpSize (Results 1 - 14 of 14) sorted by relevance

/external/llvm/utils/TableGen/
H A DX86RecognizableInstr.h50 /// The OpSize field from the record
51 uint8_t OpSize; member in class:llvm::X86Disassembler::RecognizableInstr
117 /// @param OpSize Indicates the operand size of the instruction.
118 /// If register size does not match OpSize, then
122 bool hasREX_WPrefix, uint8_t OpSize);
129 /// @param OpSize - Indicates whether this is an OpSize16 instruction.
133 uint8_t OpSize);
138 uint8_t OpSize);
143 uint8_t OpSize);
145 uint8_t OpSize);
[all...]
H A DX86RecognizableInstr.cpp211 OpSize = byteFromRec(Rec, "OpSizeBits");
419 if (HasREX_WPrefix && (OpSize == X86Local::OpSize16 || OpPrefix == X86Local::PD))
423 else if (OpSize == X86Local::OpSize16 && OpPrefix == X86Local::XD)
425 else if (OpSize == X86Local::OpSize16 && OpPrefix == X86Local::XS)
427 else if (OpSize == X86Local::OpSize16 && AdSize == X86Local::AdSize32)
429 else if (OpSize == X86Local::OpSize16 || OpPrefix == X86Local::PD)
446 if (OpSize == X86Local::OpSize16 && OpPrefix == X86Local::XD)
448 else if (OpSize == X86Local::OpSize16 && OpPrefix == X86Local::XS)
450 else if (OpSize == X86Local::OpSize16 && AdSize == X86Local::AdSize16)
452 else if (OpSize
477 handleOperand(bool optional, unsigned &operandIndex, unsigned &physicalOperandIndex, unsigned numPhysicalOperands, const unsigned *operandMapping, OperandEncoding (*encodingFromString) (const std::string&, uint8_t OpSize)) argument
[all...]
/external/llvm/lib/Target/AMDGPU/
H A DSIFoldOperands.cpp317 unsigned OpSize = TII->getOpSize(MI, 1); local
329 if (FoldingImm && !TII->isInlineConstant(OpToFold, OpSize) &&
/external/llvm/lib/IR/
H A DMetadata.cpp445 size_t OpSize = NumOps * sizeof(MDOperand); local
448 OpSize = alignTo(OpSize, llvm::alignOf<uint64_t>());
449 void *Ptr = reinterpret_cast<char *>(::operator new(OpSize + Size)) + OpSize;
458 size_t OpSize = N->NumOperands * sizeof(MDOperand); local
459 OpSize = alignTo(OpSize, llvm::alignOf<uint64_t>());
464 ::operator delete(reinterpret_cast<char *>(Mem) - OpSize);
/external/llvm/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h76 unsigned OpSize = OpTy->getScalarSizeInBits(); local
77 if (DL.isLegalInteger(OpSize) &&
78 OpSize <= DL.getPointerTypeSizeInBits(Ty))
/external/swiftshader/third_party/LLVM/lib/Target/X86/MCTargetDesc/
H A DX86BaseInfo.h256 // OpSize - Set if this instruction requires an operand size prefix (0x66),
259 OpSize = 1 << 6, enumerator in enum:llvm::X86II::__anon18860
/external/llvm/lib/Analysis/
H A DConstantFolding.cpp676 unsigned OpSize = DL.getTypeSizeInBits(Op0->getType()); local
681 return ConstantInt::get(Op0->getType(), Offs1.zextOrTrunc(OpSize) -
682 Offs2.zextOrTrunc(OpSize));
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp7940 int64_t OpSize; local
7945 bool IsOpLoad = FindAliasInfo(Chain.getNode(), OpPtr, OpSize,
7954 OpPtr, OpSize, OpSrcValue, OpSrcValueOffset,
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
H A DPPCISelLowering.cpp2420 uint32_t OpSize = (Arg.getValueType().getSizeInBits()+7)/8; local
2421 int FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp3102 unsigned OpSize = Flags.isByVal() ? Flags.getByValSize() * 8 local
3104 OpSize = (OpSize + 7) / 8;
3107 if (OpSize < 8)
3108 BEAlign = 8 - OpSize;
3117 int FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
/external/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp4222 uint32_t OpSize = (Arg.getValueType().getSizeInBits()+7)/8; local
4223 int FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp13262 int OpSize = OpVT.getVectorNumElements(); local
13263 SmallBitVector OpUsedElements(OpSize, false);
13270 for (int j = 0; j < OpSize; ++j)
13271 if (UsedElements[i * OpSize + j]) {
/external/swiftshader/third_party/LLVM/lib/Target/X86/
H A DX86ISelLowering.cpp2274 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8; local
2275 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp3252 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8; local
3253 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
[all...]

Completed in 390 milliseconds