Home
last modified time | relevance | path

Searched refs:Val0 (Results 1 – 15 of 15) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-stress/
Dllvm-stress.cpp377 Value *Val0 = getRandomVal(); in Act() local
378 Value *Val1 = getRandomValue(Val0->getType()); in Act()
381 if (Val0->getType()->isPointerTy() || in Act()
386 if (Val0->getType()->getScalarSizeInBits() == 1) in Act()
389 bool isFloat = Val0->getType()->getScalarType()->isFloatingPointTy(); in Act()
411 PT->push_back(BinaryOperator::Create(Op, Val0, Val1, "B", Term)); in Act()
484 Value *Val0 = getRandomVectorValue(); in Act() local
485 Value *V = ExtractElementInst::Create(Val0, in Act()
487 getRandom() % cast<VectorType>(Val0->getType())->getNumElements()), in Act()
498 Value *Val0 = getRandomVectorValue(); in Act() local
[all …]
/external/llvm/tools/llvm-stress/
Dllvm-stress.cpp329 Value *Val0 = getRandomVal(); in Act() local
330 Value *Val1 = getRandomValue(Val0->getType()); in Act()
333 if (Val0->getType()->isPointerTy() || in Act()
338 if (Val0->getType()->getScalarSizeInBits() == 1) in Act()
342 bool isFloat = Val0->getType()->getScalarType()->isFloatingPointTy(); in Act()
364 PT->push_back(BinaryOperator::Create(Op, Val0, Val1, "B", Term)); in Act()
429 Value *Val0 = getRandomVectorValue(); in Act() local
430 Value *V = ExtractElementInst::Create(Val0, in Act()
432 Ran->Rand() % cast<VectorType>(Val0->getType())->getNumElements()), in Act()
442 Value *Val0 = getRandomVectorValue(); in Act() local
[all …]
/external/clang/test/SemaTemplate/
Dtemp_arg_enum_printing.cpp8 Val0, enumerator
17 NamedEnumNS::foo<Val0>(); in test()
/external/swiftshader/third_party/LLVM/lib/AsmParser/
DLLParser.cpp2126 Constant *Val0, *Val1; in ParseValID() local
2129 ParseGlobalTypeAndValue(Val0) || in ParseValID()
2135 if (!Val0->getType()->isAggregateType()) in ParseValID()
2137 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices)) in ParseValID()
2139 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices); in ParseValID()
2146 Constant *Val0, *Val1; in ParseValID() local
2150 ParseGlobalTypeAndValue(Val0) || in ParseValID()
2156 if (Val0->getType() != Val1->getType()) in ParseValID()
2162 if (!Val0->getType()->isFPOrFPVectorTy()) in ParseValID()
2164 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1); in ParseValID()
[all …]
/external/llvm/lib/AsmParser/
DLLParser.cpp2970 Constant *Val0, *Val1; in ParseValID() local
2973 ParseGlobalTypeAndValue(Val0) || in ParseValID()
2979 if (!Val0->getType()->isAggregateType()) in ParseValID()
2982 ExtractValueInst::getIndexedType(Val0->getType(), Indices); in ParseValID()
2990 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices); in ParseValID()
2997 Constant *Val0, *Val1; in ParseValID() local
3001 ParseGlobalTypeAndValue(Val0) || in ParseValID()
3007 if (Val0->getType() != Val1->getType()) in ParseValID()
3013 if (!Val0->getType()->isFPOrFPVectorTy()) in ParseValID()
3015 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1); in ParseValID()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/AsmParser/
DLLParser.cpp3246 Constant *Val0, *Val1; in ParseValID() local
3249 ParseGlobalTypeAndValue(Val0) || in ParseValID()
3255 if (!Val0->getType()->isAggregateType()) in ParseValID()
3258 ExtractValueInst::getIndexedType(Val0->getType(), Indices); in ParseValID()
3266 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices); in ParseValID()
3273 Constant *Val0, *Val1; in ParseValID() local
3277 ParseGlobalTypeAndValue(Val0) || in ParseValID()
3283 if (Val0->getType() != Val1->getType()) in ParseValID()
3289 if (!Val0->getType()->isFPOrFPVectorTy()) in ParseValID()
3291 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1); in ParseValID()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/PowerPC/
Df128-arith.ll226 declare fp128 @llvm.minnum.f128(fp128 %Val0, fp128 %Val1)
241 declare fp128 @llvm.maxnum.f128(fp128 %Val0, fp128 %Val1)
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
DARMISelDAGToDAG.cpp2946 SDValue Val0 = N->getOperand(2); in Select() local
2953 Chain = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, ARM::R2, Val0, in Select()
2958 Val0 = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl, in Select()
2960 Glue = Val0.getValue(1); in Select()
2972 Ops.push_back(Val0); in Select()
/external/clang/lib/CodeGen/
DCGBuiltin.cpp4105 Value *Val0 = Builder.CreateExtractValue(Val, 1); in EmitARMBuiltinExpr() local
4107 Val0 = Builder.CreateZExt(Val0, Int64Ty); in EmitARMBuiltinExpr()
4111 Val = Builder.CreateShl(Val0, ShiftCst, "shl", true /* nuw */); in EmitARMBuiltinExpr()
4875 Value *Val0 = Builder.CreateExtractValue(Val, 1); in EmitAArch64BuiltinExpr() local
4878 Val0 = Builder.CreateZExt(Val0, Int128Ty); in EmitAArch64BuiltinExpr()
4882 Val = Builder.CreateShl(Val0, ShiftCst, "shl", true /* nuw */); in EmitAArch64BuiltinExpr()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
DInstCombineCalls.cpp3320 APFloat Val0 = C0->getValueAPF(); in visitCallInst() local
3322 Val0.convert(HalfSem, APFloat::rmTowardZero, &LosesInfo); in visitCallInst()
3326 ConstantFP::get(II->getContext(), Val0), in visitCallInst()
/external/llvm/lib/Target/ARM/
DARMISelDAGToDAG.cpp3469 SDValue Val0 = N->getOperand(2); in Select() local
3481 Ops.push_back(Val0); in Select()
3485 Ops.push_back(SDValue(createGPRPairNode(MVT::Untyped, Val0, Val1), 0)); in Select()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/
DARMISelDAGToDAG.cpp3453 SDValue Val0 = N->getOperand(2); in Select() local
3465 Ops.push_back(Val0); in Select()
3469 Ops.push_back(SDValue(createGPRPairNode(MVT::Untyped, Val0, Val1), 0)); in Select()
/external/llvm/lib/CodeGen/
DRegisterCoalescer.cpp1816 bool valuesIdentical(VNInfo *Val0, VNInfo *Val1, const JoinVals &Other) const;
/external/llvm/docs/
DLangRef.rst10367 declare float @llvm.minnum.f32(float %Val0, float %Val1)
10368 declare double @llvm.minnum.f64(double %Val0, double %Val1)
10369 declare x86_fp80 @llvm.minnum.f80(x86_fp80 %Val0, x86_fp80 %Val1)
10370 declare fp128 @llvm.minnum.f128(fp128 %Val0, fp128 %Val1)
10371 declare ppc_fp128 @llvm.minnum.ppcf128(ppc_fp128 %Val0, ppc_fp128 %Val1)
10409 declare float @llvm.maxnum.f32(float %Val0, float %Val1l)
10410 declare double @llvm.maxnum.f64(double %Val0, double %Val1)
10411 declare x86_fp80 @llvm.maxnum.f80(x86_fp80 %Val0, x86_fp80 %Val1)
10412 declare fp128 @llvm.maxnum.f128(fp128 %Val0, fp128 %Val1)
10413 declare ppc_fp128 @llvm.maxnum.ppcf128(ppc_fp128 %Val0, ppc_fp128 %Val1)
/external/swiftshader/third_party/llvm-7.0/llvm/docs/
DLangRef.rst11452 declare float @llvm.minnum.f32(float %Val0, float %Val1)
11453 declare double @llvm.minnum.f64(double %Val0, double %Val1)
11454 declare x86_fp80 @llvm.minnum.f80(x86_fp80 %Val0, x86_fp80 %Val1)
11455 declare fp128 @llvm.minnum.f128(fp128 %Val0, fp128 %Val1)
11456 declare ppc_fp128 @llvm.minnum.ppcf128(ppc_fp128 %Val0, ppc_fp128 %Val1)
11494 declare float @llvm.maxnum.f32(float %Val0, float %Val1l)
11495 declare double @llvm.maxnum.f64(double %Val0, double %Val1)
11496 declare x86_fp80 @llvm.maxnum.f80(x86_fp80 %Val0, x86_fp80 %Val1)
11497 declare fp128 @llvm.maxnum.f128(fp128 %Val0, fp128 %Val1)
11498 declare ppc_fp128 @llvm.maxnum.ppcf128(ppc_fp128 %Val0, ppc_fp128 %Val1)