Searched refs:ResTy (Results 1 - 23 of 23) sorted by relevance

/external/llvm/lib/Target/Mips/
H A DMipsSEISelLowering.cpp1360 EVT ResTy = Op->getValueType(0); local
1363 SDValue Result = DAG.getNode(Opc, DL, ResTy, Vec, Idx,
1482 EVT ResTy = Op->getValueType(0); local
1484 SDValue One = DAG.getConstant(1, ResTy);
1485 SDValue Bit = DAG.getNode(ISD::SHL, DL, ResTy, One, Op->getOperand(2));
1487 return DAG.getNode(ISD::AND, DL, ResTy, Op->getOperand(1),
1488 DAG.getNOT(DL, Bit, ResTy));
1493 EVT ResTy = Op->getValueType(0); local
1494 APInt BitImm = APInt(ResTy.getVectorElementType().getSizeInBits(), 1)
1496 SDValue BitMask = DAG.getConstant(~BitImm, ResTy);
1837 EVT ResTy = Op->getValueType(0); local
1848 EVT ResTy = Op->getValueType(0); local
1866 EVT ResTy = Op->getValueType(0); local
1933 EVT ResTy = Op->getValueType(0); local
1942 EVT ResTy = Op->getValueType(0); local
2017 EVT ResTy = Op->getValueType(0); local
2152 EVT ResTy = Op->getValueType(0); local
2271 EVT ResTy = Op->getValueType(0); local
2321 EVT ResTy = Op->getValueType(0); local
2378 EVT ResTy = Node->getValueType(0); local
2413 lowerVECTOR_SHUFFLE_SHF(SDValue Op, EVT ResTy, SmallVector<int, 16> Indices, SelectionDAG &DAG) argument
2471 lowerVECTOR_SHUFFLE_ILVEV(SDValue Op, EVT ResTy, SmallVector<int, 16> Indices, SelectionDAG &DAG) argument
2501 lowerVECTOR_SHUFFLE_ILVOD(SDValue Op, EVT ResTy, SmallVector<int, 16> Indices, SelectionDAG &DAG) argument
2531 lowerVECTOR_SHUFFLE_ILVL(SDValue Op, EVT ResTy, SmallVector<int, 16> Indices, SelectionDAG &DAG) argument
2561 lowerVECTOR_SHUFFLE_ILVR(SDValue Op, EVT ResTy, SmallVector<int, 16> Indices, SelectionDAG &DAG) argument
2592 lowerVECTOR_SHUFFLE_PCKEV(SDValue Op, EVT ResTy, SmallVector<int, 16> Indices, SelectionDAG &DAG) argument
2618 lowerVECTOR_SHUFFLE_PCKOD(SDValue Op, EVT ResTy, SmallVector<int, 16> Indices, SelectionDAG &DAG) argument
2642 lowerVECTOR_SHUFFLE_VSHF(SDValue Op, EVT ResTy, SmallVector<int, 16> Indices, SelectionDAG &DAG) argument
2696 EVT ResTy = Op->getValueType(0); local
[all...]
/external/llvm/lib/Target/Sparc/AsmParser/
H A DSparcAsmParser.cpp573 OperandMatchResultTy ResTy = parseSparcAsmOperand(Offset); local
574 if (ResTy != MatchOperand_Success || !Offset)
587 OperandMatchResultTy ResTy = MatchOperandParserImpl(Operands, Mnemonic); local
592 if (ResTy == MatchOperand_Success || ResTy == MatchOperand_ParseFail)
593 return ResTy;
614 ResTy = MatchOperand_Success;
616 ResTy = parseMEMOperand(Operands);
619 if (ResTy != MatchOperand_Success)
620 return ResTy;
[all...]
/external/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp1605 OperandMatchResultTy ResTy = MatchOperandParserImpl(Operands, Mnemonic); local
1606 if (ResTy == MatchOperand_Success)
1611 if (ResTy == MatchOperand_ParseFail)
1654 OperandMatchResultTy ResTy = ParseImm(Operands); local
1655 return ResTy != MatchOperand_Success;
1800 OperandMatchResultTy ResTy = ParseAnyRegister(Operands); local
1801 if (ResTy == MatchOperand_Success) {
1948 OperandMatchResultTy ResTy = local
1950 if (ResTy == MatchOperand_Success) {
1953 } else if (ResTy
2024 OperandMatchResultTy ResTy = local
2059 OperandMatchResultTy ResTy = MatchAnyRegisterWithoutDollar(Operands, S); local
2098 OperandMatchResultTy ResTy = ParseImm(Operands); local
2560 OperandMatchResultTy ResTy = ParseAnyRegister(Reg); local
2582 OperandMatchResultTy ResTy = ParseAnyRegister(TmpReg); local
[all...]
/external/clang/lib/CodeGen/
H A DCodeGenTypes.h179 arrangeFreeFunctionDeclaration(QualType ResTy, const FunctionArgList &Args,
200 const CGFunctionInfo &arrangeFreeFunctionCall(QualType ResTy,
H A DCGCXXABI.h241 /// with the type of 'this' and ResTy has been initialized with the type of
250 CanQualType &ResTy,
267 /// with the type of 'this' and ResTy has been initialized with the type of
272 CanQualType &ResTy,
313 virtual void addImplicitStructorParams(CodeGenFunction &CGF, QualType &ResTy,
H A DCGExprScalar.cpp765 llvm::Type *ResTy = DstTy; local
801 if (DstTy != ResTy) {
802 assert(ResTy->isIntegerTy(16) && "Only half FP requires extra conversion");
2900 llvm::Type *ResTy = ConvertType(E->getType()); local
2911 return Builder.CreateZExtOrBitCast(RHSCond, ResTy, "land.ext");
2916 return llvm::Constant::getNullValue(ResTy);
2954 return Builder.CreateZExtOrBitCast(PN, ResTy, "land.ext");
2978 llvm::Type *ResTy = ConvertType(E->getType()); local
2989 return Builder.CreateZExtOrBitCast(RHSCond, ResTy, "lor.ext");
2994 return llvm::ConstantInt::get(ResTy,
[all...]
H A DCodeGenFunction.cpp766 QualType ResTy = FD->getReturnType(); local
772 ResTy = MD->getThisType(getContext());
780 CGM.getCXXABI().addImplicitStructorParams(*this, ResTy, Args);
800 StartFunction(GD, ResTy, Fn, FnInfo, Args, Loc, BodyRange.getBegin());
H A DItaniumCXXABI.cpp142 CXXCtorType T, CanQualType &ResTy,
148 CXXDtorType T, CanQualType &ResTy,
161 void addImplicitStructorParams(CodeGenFunction &CGF, QualType &ResTy,
291 QualType ResTy) override;
1073 CXXCtorType Type, CanQualType &ResTy,
1106 CanQualType &ResTy,
1135 QualType &ResTy,
1072 BuildConstructorSignature(const CXXConstructorDecl *Ctor, CXXCtorType Type, CanQualType &ResTy, SmallVectorImpl<CanQualType> &ArgTys) argument
1104 BuildDestructorSignature(const CXXDestructorDecl *Dtor, CXXDtorType Type, CanQualType &ResTy, SmallVectorImpl<CanQualType> &ArgTys) argument
1134 addImplicitStructorParams(CodeGenFunction &CGF, QualType &ResTy, FunctionArgList &Params) argument
H A DMicrosoftCXXABI.cpp95 CXXCtorType Type, CanQualType &ResTy,
141 CanQualType &ResTy,
175 void addImplicitStructorParams(CodeGenFunction &CGF, QualType &ResTy,
788 const CXXConstructorDecl *Ctor, CXXCtorType Type, CanQualType &ResTy,
914 CanQualType &ResTy,
1044 QualType &ResTy,
787 BuildConstructorSignature( const CXXConstructorDecl *Ctor, CXXCtorType Type, CanQualType &ResTy, SmallVectorImpl<CanQualType> &ArgTys) argument
912 BuildDestructorSignature(const CXXDestructorDecl *Dtor, CXXDtorType Type, CanQualType &ResTy, SmallVectorImpl<CanQualType> &ArgTys) argument
1043 addImplicitStructorParams(CodeGenFunction &CGF, QualType &ResTy, FunctionArgList &Params) argument
H A DCGBuiltin.cpp3000 llvm::Type *ResTy, unsigned IntID,
3032 TblF = CGF.CGM.getIntrinsic(IntID, ResTy);
2998 packTBLDVectorList(CodeGenFunction &CGF, ArrayRef<Value *> Ops, Value *ExtOp, Value *IndexOp, llvm::Type *ResTy, unsigned IntID, const char *Name) argument
/external/clang/lib/StaticAnalyzer/Checkers/
H A DCallAndMessageChecker.cpp500 QualType ResTy = msg.getResultType(); local
507 if (ResTy->isReferenceType()) {
/external/llvm/lib/Target/SystemZ/AsmParser/
H A DSystemZAsmParser.cpp637 OperandMatchResultTy ResTy = MatchOperandParserImpl(Operands, Mnemonic); local
638 if (ResTy == MatchOperand_Success)
644 if (ResTy == MatchOperand_ParseFail)
/external/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp2067 Type *ResTy = isX86_MMX ? IntegerType::get(*MS.C, 64) : I.getType(); local
2069 ResTy->getScalarSizeInBits() - SignificantBitsPerResultElement;
2073 S = IRB.CreateBitCast(S, ResTy);
2074 S = IRB.CreateSExt(IRB.CreateICmpNE(S, Constant::getNullValue(ResTy)),
2075 ResTy);
2086 Type *ResTy = isX86_MMX ? getMMXVectorTy(EltSizeInBits * 2) : I.getType(); local
2089 S = IRB.CreateBitCast(S, ResTy);
2090 S = IRB.CreateSExt(IRB.CreateICmpNE(S, Constant::getNullValue(ResTy)),
2091 ResTy);
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2416 Type *ResTy = getTypeByID(Record[OpNum]);
2418 if (Opc == -1 || !ResTy)
2421 if ((I = UpgradeBitCastInst(Opc, Op, ResTy, Temp))) {
2427 I = CastInst::Create((Instruction::CastOps)Opc, Op, ResTy);
3105 Type *ResTy = getTypeByID(Record[2]); local
3106 if (!OpTy || !Op || !ResTy)
3108 I = new VAArgInst(Op, ResTy);
/external/llvm/lib/Analysis/
H A DConstantFolding.cpp589 Type *ResTy = cast<PointerType>(C->getType())->getElementType(); local
591 return Constant::getNullValue(ResTy);
593 return UndefValue::get(ResTy);
H A DScalarEvolutionExpander.cpp1327 Type *ResTy = Result->getType(); local
1329 if (ResTy != SE.getEffectiveSCEVType(ResTy))
1330 Result = InsertNoopCastOfTo(Result, SE.getEffectiveSCEVType(ResTy));
/external/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp1455 Type *ResTy; local
1465 ResTy = T.getArch() == Triple::x86_64
1470 ResTy = StructType::get(ArgTy, ArgTy, NULL);
1475 ResTy, ArgTy, NULL);
/external/llvm/lib/Target/ARM/
H A DARMISelDAGToDAG.cpp1808 EVT ResTy; local
1810 ResTy = VT;
1815 ResTy = EVT::getVectorVT(*CurDAG->getContext(), MVT::i64, ResTyElts);
1818 ResTys.push_back(ResTy);
1859 SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF, dl, ResTy), 0);
1862 ResTy, AddrTy, MVT::Other, OpsA);
/external/clang/include/clang/AST/
H A DExpr.h2930 BinaryOperator(Expr *lhs, Expr *rhs, Opcode opc, QualType ResTy, argument
2933 : Expr(BinaryOperatorClass, ResTy, VK, OK,
3079 BinaryOperator(Expr *lhs, Expr *rhs, Opcode opc, QualType ResTy, argument
3082 : Expr(CompoundAssignOperatorClass, ResTy, VK, OK,
/external/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp2973 OperandMatchResultTy ResTy = MatchOperandParserImpl(Operands, Mnemonic); local
2974 if (ResTy == MatchOperand_Success)
2979 if (ResTy == MatchOperand_ParseFail)
/external/clang/lib/Sema/
H A DSemaExpr.cpp2923 QualType ResTy; local
2925 ResTy = Context.DependentTy;
2933 ResTy = Context.WideCharTy.withConst();
2935 ResTy = Context.CharTy.withConst();
2936 ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal, 0);
2939 return new (Context) PredefinedExpr(Loc, ResTy, IT);
/external/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp4796 OperandMatchResultTy ResTy = MatchOperandParserImpl(Operands, Mnemonic); local
4797 if (ResTy == MatchOperand_Success)
4802 if (ResTy == MatchOperand_ParseFail)
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp6725 EVT ResTy = N->getValueType(0); local
6743 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, ResTy, Convert, Lane);

Completed in 839 milliseconds