Searched defs:OpTy (Results 1 - 9 of 9) sorted by relevance

/external/llvm/lib/Analysis/
H A DInstructionSimplify.cpp1825 Type *OpTy = LHS->getType(); // The operand type. local
1834 if (OpTy->getScalarType()->isIntegerTy(1)) {
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp1397 Type *OpTy = getTypeByID(Record[1]); local
1398 if (!OpTy)
1400 Constant *Op = ValueList.getConstantFwdRef(Record[2], OpTy);
1445 VectorType *OpTy =
1447 if (!OpTy)
1449 Constant *Op0 = ValueList.getConstantFwdRef(Record[1], OpTy);
1465 VectorType *OpTy = dyn_cast<VectorType>(CurTy); local
1466 if (Record.size() < 3 || !OpTy)
1468 Constant *Op0 = ValueList.getConstantFwdRef(Record[0], OpTy);
1470 OpTy
1485 VectorType *OpTy = dyn_cast<VectorType>(CurTy); local
1498 VectorType *OpTy = local
2651 Type *OpTy = getTypeByID(Record[1]); local
2890 Type *OpTy = getTypeByID(Record[1]); local
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeIntegerTypes.cpp520 EVT OpTy = N->getOperand(1).getValueType(); local
523 Mask = PromoteTargetBoolean(Mask, OpTy);
1013 EVT OpTy = N->getOperand(1).getValueType(); local
1016 EVT OpVT = N->getOpcode() == ISD::SELECT ? OpTy.getScalarType() : OpTy;
H A DTargetLowering.cpp2288 llvm::Type *OpTy = OpInfo.CallOperandVal->getType(); local
2290 llvm::PointerType *PtrTy = dyn_cast<PointerType>(OpTy);
2293 OpTy = PtrTy->getElementType();
2297 if (StructType *STy = dyn_cast<StructType>(OpTy))
2299 OpTy = STy->getElementType(0);
2301 // If OpTy is not a single value, it may be a struct/union that we
2303 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
2304 unsigned BitSize = getDataLayout()->getTypeSizeInBits(OpTy);
2314 MVT::getVT(IntegerType::get(OpTy
[all...]
H A DSelectionDAG.cpp1751 EVT OpTy = Op.getValueType(); local
1753 if (OpTy == ShTy || OpTy.isVector()) return Op;
1755 ISD::NodeType Opcode = OpTy.bitsGT(ShTy) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
/external/llvm/lib/Target/ARM/
H A DARMFastISel.cpp1605 Type *OpTy = I->getOperand(0)->getType(); local
1606 if (OpTy->isFloatTy()) Opc = isSigned ? ARM::VTOSIZS : ARM::VTOUIZS;
1607 else if (OpTy->isDoubleTy()) Opc = isSigned ? ARM::VTOSIZD : ARM::VTOUIZD;
/external/clang/lib/CodeGen/
H A DCGExprScalar.cpp1181 llvm::VectorType *OpTy = cast<llvm::VectorType>(SVOp->getType()); local
1183 if (OpTy->getNumElements() == ResElts) {
/external/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp4541 Type *OpTy = LF.OperandValToReplace->getType(); local
4546 Ty = OpTy;
4547 else if (SE.getEffectiveSCEVType(Ty) == SE.getEffectiveSCEVType(OpTy))
4549 Ty = OpTy;
4679 if (ICmpScaledV->getType() != OpTy) {
4682 OpTy, false),
4683 ICmpScaledV, OpTy, "tmp", CI);
4693 Constant *C = ConstantInt::getSigned(SE.getEffectiveSCEVType(OpTy),
4695 if (C->getType() != OpTy)
4697 OpTy, fals
4767 Type *OpTy = LF.OperandValToReplace->getType(); local
4797 Type *OpTy = LF.OperandValToReplace->getType(); local
[all...]
/external/clang/lib/Sema/
H A DSemaExpr.cpp9117 QualType OpTy = Op->getType(); local
9122 S.CheckCompatibleReinterpretCast(OpOrigType, OpTy, /*IsDereference*/true,
9126 if (const PointerType *PT = OpTy->getAs<PointerType>())
9129 OpTy->getAs<ObjCObjectPointerType>())
9140 << OpTy << Op->getSourceRange();
9155 << OpTy << Op->getSourceRange();

Completed in 3589 milliseconds