Home
last modified time | relevance | path

Searched refs:hasSSE2 (Results 1 – 12 of 12) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/X86/
DX86GenFastISel.inc346 if ((Subtarget->hasSSE2() && !Subtarget->hasAVX())) {
359 if ((Subtarget->hasSSE2() && !Subtarget->hasAVX())) {
389 if ((Subtarget->hasSSE2() && !Subtarget->hasAVX())) {
402 if ((Subtarget->hasSSE2() && !Subtarget->hasAVX())) {
412 if ((Subtarget->hasMMX()) && (Subtarget->hasSSE2())) {
434 if ((Subtarget->hasMMX()) && (Subtarget->hasSSE2())) {
856 if ((!Subtarget->hasSSE2())) {
891 if ((!Subtarget->hasSSE2())) {
917 if ((Subtarget->hasSSE2() && !Subtarget->hasAVX())) {
958 if ((Subtarget->hasSSE2() && !Subtarget->hasAVX())) {
[all …]
DX86GenCallingConv.inc436 if (static_cast<const X86Subtarget&>(State.getMachineFunction().getSubtarget()).hasSSE2()) {
601 if (static_cast<const X86Subtarget&>(State.getMachineFunction().getSubtarget()).hasSSE2()) {
1467 if (static_cast<const X86Subtarget&>(State.getMachineFunction().getSubtarget()).hasSSE2()) {
2895 if (static_cast<const X86Subtarget&>(State.getMachineFunction().getSubtarget()).hasSSE2()) {
2932 if (static_cast<const X86Subtarget&>(State.getMachineFunction().getSubtarget()).hasSSE2()) {
2944 if (static_cast<const X86Subtarget&>(State.getMachineFunction().getSubtarget()).hasSSE2()) {
DX86GenGlobalISel.inc169 if (Subtarget->hasSSE2())
171 if (Subtarget->hasSSE2() && !Subtarget->hasAVX())
321 if (!Subtarget->hasSSE2())
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86TargetTransformInfo.cpp343 ST->hasSSE2() && !ST->hasXOP()) { in getArithmeticInstrCost()
434 ST->hasSSE2()) { in getArithmeticInstrCost()
478 if (ST->hasSSE2() && in getArithmeticInstrCost()
645 if (ST->hasSSE2() && in getArithmeticInstrCost()
663 if (((VT == MVT::v8i16 || VT == MVT::v4i32) && ST->hasSSE2()) || in getArithmeticInstrCost()
844 if (ST->hasSSE2()) in getArithmeticInstrCost()
1254 if (ST->hasSSE2()) in getShuffleCost()
1639 if (ST->hasSSE2() && !ST->hasAVX()) { in getCastInstrCost()
1694 if (ST->hasSSE2()) { in getCastInstrCost()
1739 (ST->hasSSE2() && MTy.getScalarSizeInBits() < 32)) { in getCmpSelInstrCost()
[all …]
DX86Subtarget.h585 bool hasSSE2() const { return X86SSELevel >= SSE2; } in hasSSE2() function
750 bool hasMFence() const { return hasSSE2() || is64Bit(); } in hasMFence()
DX86CallingConv.td267 CCIfInReg<CCIfSubtarget<"hasSSE2()",
279 CCIfType<[f32], CCIfSubtarget<"hasSSE2()", CCAssignToReg<[XMM0,XMM1,XMM2]>>>,
280 CCIfType<[f64], CCIfSubtarget<"hasSSE2()", CCAssignToReg<[XMM0,XMM1,XMM2]>>>,
528 CCIfSubtarget<"hasSSE2()",
798 CCIfSubtarget<"hasSSE2()",
941 CCIfSubtarget<"hasSSE2()",
DX86ISelLowering.cpp113 X86ScalarSSEf64 = Subtarget.hasSSE2(); in X86TargetLowering()
861 if (!Subtarget.useSoftFloat() && Subtarget.hasSSE2()) { in X86TargetLowering()
2276 if (Subtarget.hasSSE2() && (Subtarget.getPreferVectorWidth() >= 128)) in getOptimalMemOpType()
2284 !Subtarget.is64Bit() && Subtarget.hasSSE2()) { in getOptimalMemOpType()
2701 } else if (!Subtarget.hasSSE2() && in LowerReturn()
2733 if (!Subtarget.hasSSE2()) in LowerReturn()
3026 } else if (!Subtarget.hasSSE2() && in LowerCallResult()
3630 else if (Subtarget.hasSSE2()) in LowerFormalArguments()
5241 return Subtarget.hasSSE2(); in hasAndNot()
5604 if (!Subtarget.hasSSE2() && VT.is128BitVector()) { in getZeroVector()
[all …]
DX86LegalizerInfo.cpp314 if (!Subtarget.hasSSE2()) in setLegalizerInfoSSE2()
DX86FastISel.cpp65 X86ScalarSSEf64 = Subtarget->hasSSE2(); in X86FastISel()
487 bool HasSSE2 = Subtarget->hasSSE2(); in X86FastEmitStore()
1343 bool X86ScalarSSEf64 = Subtarget->hasSSE2(); in X86ChooseCmpOpcode()
2157 (Subtarget->hasSSE2() && RetVT == MVT::f64))) in X86FastEmitSSESelect()
3000 if (!Subtarget->hasSSE2()) in fastLowerIntrinsicCall()
3657 if (!Subtarget->hasSSE2()) in fastSelectInstruction()
DX86InstrInfo.td851 def HasSSE2 : Predicate<"Subtarget->hasSSE2()">;
852 def UseSSE2 : Predicate<"Subtarget->hasSSE2() && !Subtarget->hasAVX()">;
939 def FPStackf64 : Predicate<"!Subtarget->hasSSE2()">;
DX86InstrInfo.cpp1789 assert(Subtarget.hasSSE2() && "Commuting MOVHLP/UNPCKHPD requires SSE2!"); in commuteInstructionImpl()
2052 if (Subtarget.hasSSE2()) in findCommutedOpIndices()
DX86ISelDAGToDAG.cpp960 if (Subtarget->hasSSE2()) { in PreprocessISelDAG()