Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeFloatTypes.cpp174 if (IsStrict) in SoftenFloatRes_Unary()
195 if (IsStrict) in SoftenFloatRes_Binary()
465 if (IsStrict) in SoftenFloatRes_FMA()
534 if (IsStrict) in SoftenFloatRes_FP_EXTEND()
571 if (IsStrict) in SoftenFloatRes_FP_ROUND()
619 if (IsStrict) in SoftenFloatRes_FPOWI()
800 if (IsStrict) in SoftenFloatRes_XINT_TO_FP()
1309 if (IsStrict) in ExpandFloatRes_Unary()
1324 if (IsStrict) in ExpandFloatRes_Binary()
1475 if (IsStrict) in ExpandFloatRes_FMA()
[all …]
H A DLegalizeVectorOps.cpp608 bool IsStrict = Node->isStrictFPOpcode(); in PromoteINT_TO_FP() local
609 MVT VT = Node->getOperand(IsStrict ? 1 : 0).getSimpleValueType(); in PromoteINT_TO_FP()
628 if (IsStrict) { in PromoteINT_TO_FP()
649 bool IsStrict = Node->isStrictFPOpcode(); in PromoteFP_TO_INT() local
666 if (IsStrict) { in PromoteFP_TO_INT()
686 if (IsStrict) in PromoteFP_TO_INT()
1334 bool IsStrict = Node->isStrictFPOpcode(); in ExpandUINT_TO_FLOAT() local
1335 unsigned OpNo = IsStrict ? 1 : 0; in ExpandUINT_TO_FLOAT()
1345 if (IsStrict) in ExpandUINT_TO_FLOAT()
1356 if (IsStrict) { in ExpandUINT_TO_FLOAT()
[all …]
H A DLegalizeDAG.cpp2539 bool IsStrict = N->isStrictFPOpcode(); in PromoteLegalINT_TO_FP() local
2576 if (IsStrict) { in PromoteLegalINT_TO_FP()
2600 bool IsStrict = N->isStrictFPOpcode(); in PromoteLegalFP_TO_INT() local
2631 if (IsStrict) { in PromoteLegalFP_TO_INT()
2641 if (IsStrict) in PromoteLegalFP_TO_INT()
3625 unsigned Offset = IsStrict ? 1 : 0; in ExpandNode()
3642 if (IsStrict) { in ExpandNode()
3666 if (IsStrict) in ExpandNode()
4280 if (IsStrict) in ConvertNodeToLibcall()
4321 if (IsStrict) in ConvertNodeToLibcall()
[all …]
H A DLegalizeIntegerTypes.cpp2189 bool IsStrict = N->isStrictFPOpcode(); in PromoteIntOp_FPOWI() local
2208 unsigned OpOffset = IsStrict ? 1 : 0; in PromoteIntOp_FPOWI()
2219 if (IsStrict) in PromoteIntOp_FPOWI()
3389 bool IsStrict = N->isStrictFPOpcode(); in ExpandIntRes_FP_TO_SINT() local
3412 if (IsStrict) in ExpandIntRes_FP_TO_SINT()
3421 bool IsStrict = N->isStrictFPOpcode(); in ExpandIntRes_FP_TO_UINT() local
3443 if (IsStrict) in ExpandIntRes_FP_TO_UINT()
5001 bool IsStrict = N->isStrictFPOpcode(); in ExpandIntOp_SINT_TO_FP() local
5013 if (!IsStrict) in ExpandIntOp_SINT_TO_FP()
5121 bool IsStrict = N->isStrictFPOpcode(); in ExpandIntOp_UINT_TO_FP() local
[all …]
/llvm-project-15.0.7/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp20943 if (IsStrict) in lowerINT_TO_FP_vXi64()
20958 if (IsStrict) in promoteXINT_TO_FP()
21080 if (IsStrict) in LowerSINT_TO_FP()
21303 if (IsStrict) in lowerUINT_TO_FP_v2i32()
21541 !IsStrict) in LowerUINT_TO_FP()
21546 !IsStrict) in LowerUINT_TO_FP()
22953 if (IsStrict) in LowerFP_EXTEND()
23030 if (IsStrict) in LowerFP16_TO_FP()
23062 if (IsStrict) in LowerFP_TO_FP16()
52773 if (IsStrict) in combineSIntToFP()
[all …]
H A DX86ISelDAGToDAG.cpp1163 bool IsStrict = N->isStrictFPOpcode(); in PreprocessISelDAG() local
1165 if (IsStrict) in PreprocessISelDAG()
/llvm-project-15.0.7/llvm/utils/unittest/googlemock/src/
H A Dgmock-spec-builders.cc767 bool Mock::IsStrict(void* mock_obj) in IsStrict() function in testing::Mock
/llvm-project-15.0.7/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp3520 if (IsStrict) in LowerSETCC()
8060 if (IsStrict) { in convertFPToInt()
8081 if (IsStrict) { in convertFPToInt()
8180 if (IsStrict) { in LowerFP_TO_INT()
8196 if (IsStrict) { in LowerFP_TO_INT()
8485 if (IsStrict) in LowerINT_TO_FPVector()
8523 if (IsStrict) in LowerINT_TO_FP()
8654 if (IsStrict) in LowerINT_TO_FP()
8658 if (IsStrict) in LowerINT_TO_FP()
8736 if (IsStrict) in LowerINT_TO_FP()
[all …]
H A DPPCISelDAGToDAG.cpp4303 bool IsStrict = N->isStrictFPOpcode(); in trySETCC() local
4305 cast<CondCodeSDNode>(N->getOperand(IsStrict ? 3 : 2))->get(); in trySETCC()
4309 SDValue Chain = IsStrict ? N->getOperand(0) : SDValue(); in trySETCC()
4311 SDValue LHS = N->getOperand(IsStrict ? 1 : 0); in trySETCC()
4312 SDValue RHS = N->getOperand(IsStrict ? 2 : 1); in trySETCC()
4314 if (!IsStrict && !Subtarget->useCRBits() && isInt32Immediate(RHS, Imm)) { in trySETCC()
4399 if (!IsStrict && LHS.getValueType().isVector()) { in trySETCC()
4428 if (IsStrict) in trySETCC()
/llvm-project-15.0.7/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp3747 if (IsStrict) { in LowerVectorFP_TO_INT()
3762 if (IsStrict) { in LowerVectorFP_TO_INT()
3780 if (IsStrict) { in LowerVectorFP_TO_INT()
3798 if (IsStrict) in LowerVectorFP_TO_INT()
3819 if (IsStrict) { in LowerFP_TO_INT()
4000 if (IsStrict) { in LowerVectorINT_TO_FP()
4015 if (IsStrict) in LowerVectorINT_TO_FP()
4027 if (IsStrict) in LowerVectorINT_TO_FP()
4047 if (IsStrict) { in LowerINT_TO_FP()
8005 if (IsStrict) in LowerSETCC()
[all …]
/llvm-project-15.0.7/llvm/utils/unittest/googlemock/include/gmock/
H A Dgmock-spec-builders.h407 static bool IsStrict(void* mock_obj)
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaDeclAttr.cpp2430 bool IsStrict, StringRef Replacement, AvailabilityMergeKind AMK, in mergeAvailabilityAttr() argument
2583 Message, IsStrict, Replacement, Priority); in mergeAvailabilityAttr()
2615 bool IsStrict = AL.getStrictLoc().isValid(); in handleAvailabilityAttr() local
2646 Obsoleted.Version, IsUnavailable, Str, IsStrict, Replacement, in handleAvailabilityAttr()
2702 NewObsoleted, IsUnavailable, Str, IsStrict, Replacement, in handleAvailabilityAttr()
2744 NewObsoleted, IsUnavailable, Str, IsStrict, Replacement, in handleAvailabilityAttr()
2778 IsStrict, Replacement, Sema::AMK_None, in handleAvailabilityAttr()
2819 IsStrict, Replacement, Sema::AMK_None, in handleAvailabilityAttr()
/llvm-project-15.0.7/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp5845 bool IsStrict = Op->isStrictFPOpcode(); in LowerFP_TO_INT() local
5846 SDValue SrcVal = Op.getOperand(IsStrict ? 1 : 0); in LowerFP_TO_INT()
5867 if (IsStrict) { in LowerFP_TO_INT()
20562 bool IsStrict = Op->isStrictFPOpcode(); in LowerFP_EXTEND() local
20563 SDValue SrcVal = Op.getOperand(IsStrict ? 1 : 0); in LowerFP_EXTEND()
20578 if (IsStrict) { in LowerFP_EXTEND()
20595 SDValue Chain = IsStrict ? Op.getOperand(0) : SDValue(); in LowerFP_EXTEND()
20601 if (IsStrict) { in LowerFP_EXTEND()
20621 bool IsStrict = Op->isStrictFPOpcode(); in LowerFP_ROUND() local
20623 SDValue SrcVal = Op.getOperand(IsStrict ? 1 : 0); in LowerFP_ROUND()
[all …]
/llvm-project-15.0.7/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp6847 bool IsStrict = N->isStrictFPOpcode(); in ReplaceNodeResults() local
6850 SDValue Op0 = IsStrict ? N->getOperand(1) : N->getOperand(0); in ReplaceNodeResults()
6855 if (IsStrict) { in ReplaceNodeResults()
6885 SDValue Chain = IsStrict ? N->getOperand(0) : SDValue(); in ReplaceNodeResults()
6890 if (IsStrict) in ReplaceNodeResults()
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DSema.h3538 StringRef Message, bool IsStrict, StringRef Replacement,