Searched refs:OpTy (Results 1 - 18 of 18) sorted by relevance

/freebsd-11.0-release/contrib/llvm/include/llvm/IR/
H A DPatternMatch.h50 template <typename OpTy> bool match(OpTy *V) {
398 template <typename OpTy> bool match(OpTy *V) {
421 template <typename OpTy> bool match(OpTy *V) {
550 template <typename OpTy> bool match(OpTy *V) {
642 template <typename OpTy> bool match(OpTy *
[all...]
/freebsd-11.0-release/contrib/llvm/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h47 unsigned getOperationCost(unsigned Opcode, Type *Ty, Type *OpTy) { argument
57 assert(OpTy && "Cast instructions must provide the operand type");
58 if (Ty == OpTy || (Ty->isPointerTy() && OpTy->isPointerTy()))
76 unsigned OpSize = OpTy->getScalarSizeInBits();
89 DestSize >= DL.getPointerTypeSizeInBits(OpTy))
H A DTargetTransformInfo.h136 int getOperationCost(unsigned Opcode, Type *Ty, Type *OpTy = nullptr) const;
565 virtual int getOperationCost(unsigned Opcode, Type *Ty, Type *OpTy) = 0;
670 int getOperationCost(unsigned Opcode, Type *Ty, Type *OpTy) override {
671 return Impl.getOperationCost(Opcode, Ty, OpTy);
/freebsd-11.0-release/contrib/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2743 Type *OpTy = getTypeByID(Record[1]); local
2744 if (!OpTy)
2746 Constant *Op = ValueList.getConstantFwdRef(Record[2], OpTy);
2802 VectorType *OpTy =
2804 if (!OpTy)
2806 Constant *Op0 = ValueList.getConstantFwdRef(Record[1], OpTy);
2822 VectorType *OpTy = dyn_cast<VectorType>(CurTy); local
2823 if (Record.size() < 3 || !OpTy)
2825 Constant *Op0 = ValueList.getConstantFwdRef(Record[0], OpTy);
2827 OpTy
2842 VectorType *OpTy = dyn_cast<VectorType>(CurTy); local
2855 VectorType *OpTy = local
4560 Type *OpTy = getTypeByID(Record[1]); local
4834 Type *OpTy = getTypeByID(Record[1]); local
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp50 Type *OpTy) const {
51 int Cost = TTIImpl->getOperationCost(Opcode, Ty, OpTy);
H A DValueTracking.cpp4206 Type *OpTy = LHS->getType(); local
4207 assert(OpTy->getScalarType()->isIntegerTy(1));
4212 if (OpTy->isVectorTy())
4215 assert(OpTy->isIntegerTy(1) && "implied by above");
H A DInstructionSimplify.cpp2142 Type *OpTy = LHS->getType(); // The operand type. local
2151 if (OpTy->getScalarType()->isIntegerTy(1)) {
/freebsd-11.0-release/contrib/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h200 unsigned getOperationCost(unsigned Opcode, Type *Ty, Type *OpTy) { argument
205 if (TLI->isTruncateFree(OpTy, Ty))
210 if (TLI->isZExtFree(OpTy, Ty))
216 return BaseT::getOperationCost(Opcode, Ty, OpTy);
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp4463 Type *OpTy = LF.OperandValToReplace->getType(); local
4468 Ty = OpTy;
4469 else if (SE.getEffectiveSCEVType(Ty) == SE.getEffectiveSCEVType(OpTy))
4471 Ty = OpTy;
4599 if (ICmpScaledV->getType() != OpTy) {
4602 OpTy, false),
4603 ICmpScaledV, OpTy, "tmp", CI);
4613 Constant *C = ConstantInt::getSigned(SE.getEffectiveSCEVType(OpTy),
4615 if (C->getType() != OpTy)
4617 OpTy, fals
4688 Type *OpTy = LF.OperandValToReplace->getType(); local
4718 Type *OpTy = LF.OperandValToReplace->getType(); local
[all...]
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp2358 llvm::Type *OpTy = OpInfo.CallOperandVal->getType(); local
2360 llvm::PointerType *PtrTy = dyn_cast<PointerType>(OpTy);
2363 OpTy = PtrTy->getElementType();
2367 if (StructType *STy = dyn_cast<StructType>(OpTy))
2369 OpTy = STy->getElementType(0);
2371 // If OpTy is not a single value, it may be a struct/union that we
2373 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
2374 unsigned BitSize = DL.getTypeSizeInBits(OpTy);
2384 MVT::getVT(IntegerType::get(OpTy
[all...]
H A DSelectionDAGBuilder.cpp5989 llvm::Type *OpTy = CallOperandVal->getType();
5995 llvm::PointerType *PtrTy = dyn_cast<PointerType>(OpTy);
5998 OpTy = PtrTy->getElementType();
6002 if (StructType *STy = dyn_cast<StructType>(OpTy))
6004 OpTy = STy->getElementType(0);
6006 // If OpTy is not a single value, it may be a struct/union that we
6008 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
6009 unsigned BitSize = DL.getTypeSizeInBits(OpTy);
6018 OpTy
[all...]
H A DLegalizeIntegerTypes.cpp574 EVT OpTy = N->getOperand(1).getValueType(); local
577 Mask = PromoteTargetBoolean(Mask, OpTy);
1115 EVT OpTy = N->getOperand(1).getValueType(); local
1118 EVT OpVT = N->getOpcode() == ISD::SELECT ? OpTy.getScalarType() : OpTy;
H A DLegalizeDAG.cpp3327 EVT OpTy = Node->getOperand(0).getValueType();
3330 Tmp1 = DAG.getNode(ISD::SRL, dl, OpTy, Node->getOperand(0),
3331 DAG.getConstant(OpTy.getSizeInBits() / 2, dl,
H A DSelectionDAG.cpp1822 EVT OpTy = Op.getValueType(); local
1824 if (OpTy == ShTy || OpTy.isVector()) return Op;
/freebsd-11.0-release/contrib/llvm/lib/Target/ARM/
H A DARMFastISel.cpp1600 Type *OpTy = I->getOperand(0)->getType(); local
1601 if (OpTy->isFloatTy()) Opc = isSigned ? ARM::VTOSIZS : ARM::VTOUIZS;
1602 else if (OpTy->isDoubleTy()) Opc = isSigned ? ARM::VTOSIZD : ARM::VTOUIZD;
/freebsd-11.0-release/contrib/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.cpp2366 MVT OpTy = Subtarget.useHVXSglOps() ? MVT::v16i32 : MVT::v32i32; local
2368 SDValue B0 = DAG.getNode(ISD::BITCAST, dl, OpTy, Vec0);
2369 SDValue B1 = DAG.getNode(ISD::BITCAST, dl, OpTy, Vec1);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGExprScalar.cpp1276 llvm::VectorType *OpTy = cast<llvm::VectorType>(SVOp->getType()); local
1278 if (OpTy->getNumElements() == ResElts) {
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExpr.cpp10233 QualType OpTy = Op->getType(); local
10238 S.CheckCompatibleReinterpretCast(OpOrigType, OpTy, /*IsDereference*/true,
10242 if (const PointerType *PT = OpTy->getAs<PointerType>())
10245 OpTy->getAs<ObjCObjectPointerType>())
10256 << OpTy << Op->getSourceRange();
10271 << OpTy << Op->getSourceRange();

Completed in 480 milliseconds