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

/external/llvm/lib/Analysis/
H A DInstructionSimplify.cpp1651 Type *OpTy = LHS->getType(); // The operand type. local
1660 if (OpTy->getScalarType()->isIntegerTy(1)) {
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp1204 Type *OpTy = getTypeByID(Record[1]); local
1205 if (!OpTy) return Error("Invalid CE_CAST record");
1206 Constant *Op = ValueList.getConstantFwdRef(Record[2], OpTy);
1235 VectorType *OpTy =
1237 if (OpTy == 0) return Error("Invalid CE_EXTRACTELT record");
1238 Constant *Op0 = ValueList.getConstantFwdRef(Record[1], OpTy);
1244 VectorType *OpTy = dyn_cast<VectorType>(CurTy); local
1245 if (Record.size() < 3 || OpTy == 0)
1247 Constant *Op0 = ValueList.getConstantFwdRef(Record[0], OpTy);
1249 OpTy
1255 VectorType *OpTy = dyn_cast<VectorType>(CurTy); local
1268 VectorType *OpTy = local
2443 Type *OpTy = getTypeByID(Record[1]); local
[all...]
/external/llvm/lib/Target/ARM/
H A DARMFastISel.cpp1602 Type *OpTy = I->getOperand(0)->getType(); local
1603 if (OpTy->isFloatTy()) Opc = isSigned ? ARM::VTOSIZS : ARM::VTOUIZS;
1604 else if (OpTy->isDoubleTy()) Opc = isSigned ? ARM::VTOSIZD : ARM::VTOUIZD;
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeIntegerTypes.cpp492 EVT OpTy = N->getOperand(1).getValueType(); local
495 Mask = PromoteTargetBoolean(Mask, TLI.getSetCCResultType(OpTy));
979 EVT OpTy = N->getOperand(1).getValueType(); local
983 OpTy.getScalarType() : OpTy);
H A DTargetLowering.cpp2892 llvm::Type *OpTy = OpInfo.CallOperandVal->getType(); local
2894 llvm::PointerType *PtrTy = dyn_cast<PointerType>(OpTy);
2897 OpTy = PtrTy->getElementType();
2901 if (StructType *STy = dyn_cast<StructType>(OpTy))
2903 OpTy = STy->getElementType(0);
2905 // If OpTy is not a single value, it may be a struct/union that we
2907 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
2908 unsigned BitSize = TD->getTypeSizeInBits(OpTy);
2918 EVT::getEVT(IntegerType::get(OpTy
[all...]
H A DSelectionDAG.cpp1475 EVT OpTy = Op.getValueType(); local
1477 if (OpTy == ShTy || OpTy.isVector()) return Op;
1479 ISD::NodeType Opcode = OpTy.bitsGT(ShTy) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
/external/clang/lib/CodeGen/
H A DCGExprScalar.cpp933 llvm::VectorType *OpTy = cast<llvm::VectorType>(SVOp->getType()); local
935 if (OpTy->getNumElements() == ResElts) {
/external/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp4209 Type *OpTy = LF.OperandValToReplace->getType(); local
4214 Ty = OpTy;
4215 else if (SE.getEffectiveSCEVType(Ty) == SE.getEffectiveSCEVType(OpTy))
4217 Ty = OpTy;
4334 if (ICmpScaledV->getType() != OpTy) {
4337 OpTy, false),
4338 ICmpScaledV, OpTy, "tmp", CI);
4346 Constant *C = ConstantInt::getSigned(SE.getEffectiveSCEVType(OpTy),
4348 if (C->getType() != OpTy)
4350 OpTy, fals
4416 Type *OpTy = LF.OperandValToReplace->getType(); local
4446 Type *OpTy = LF.OperandValToReplace->getType(); local
[all...]
/external/clang/lib/Sema/
H A DSemaExpr.cpp7734 QualType OpTy = Op->getType(); local
7739 S.CheckCompatibleReinterpretCast(OpOrigType, OpTy, /*IsDereference*/true,
7743 // Note that per both C89 and C99, indirection is always legal, even if OpTy
7747 if (const PointerType *PT = OpTy->getAs<PointerType>())
7750 OpTy->getAs<ObjCObjectPointerType>())
7761 << OpTy << Op->getSourceRange();
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp5430 MVT OpTy; local
5436 OpTy = MVT::v8i16;
5441 OpTy = MVT::v4f32;
5446 OpTy = MVT::v2f64;
5453 OpTy = MVT::v8f32;
5460 OpTy = MVT::v4f64;
5466 OpTy = MVT::v16i16;
5482 V1 = DAG.getNode(ISD::BITCAST, dl, OpTy, V1);
5483 V2 = DAG.getNode(ISD::BITCAST, dl, OpTy, V2);
5484 SDValue Ret = DAG.getNode(ISDNo, dl, OpTy, V
[all...]

Completed in 213 milliseconds