/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | LegacyPassNameParser.h | 90 const PassNameParser::OptionInfo *VT2) { in ValCompare() argument 91 return VT1->Name.compare(VT2->Name); in ValCompare()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/MSP430/ |
D | MSP430ISelLowering.h | 113 bool isTruncateFree(EVT VT1, EVT VT2) const override; 124 bool isZExtFree(EVT VT1, EVT VT2) const override; 125 bool isZExtFree(SDValue Val, EVT VT2) const override;
|
D | MSP430ISelLowering.cpp | 1400 bool MSP430TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const { in isTruncateFree() 1401 if (!VT1.isInteger() || !VT2.isInteger()) in isTruncateFree() 1404 return (VT1.getSizeInBits() > VT2.getSizeInBits()); in isTruncateFree() 1412 bool MSP430TargetLowering::isZExtFree(EVT VT1, EVT VT2) const { in isZExtFree() 1414 return 0 && VT1 == MVT::i8 && VT2 == MVT::i16; in isZExtFree() 1417 bool MSP430TargetLowering::isZExtFree(SDValue Val, EVT VT2) const { in isZExtFree() 1418 return isZExtFree(Val.getValueType(), VT2); in isZExtFree()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | SelectionDAG.h | 572 SDVTList getVTList(EVT VT1, EVT VT2); 573 SDVTList getVTList(EVT VT1, EVT VT2, EVT VT3); 574 SDVTList getVTList(EVT VT1, EVT VT2, EVT VT3, EVT VT4); 1250 SDNode *SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT1, EVT VT2); 1252 EVT VT2, ArrayRef<SDValue> Ops); 1254 EVT VT2, EVT VT3, ArrayRef<SDValue> Ops); 1256 EVT VT2, SDValue Op1); 1258 EVT VT2, SDValue Op1, SDValue Op2); 1288 EVT VT2, SDValue Op1, SDValue Op2); 1290 EVT VT2, SDValue Op1, SDValue Op2, SDValue Op3); [all …]
|
D | TargetLowering.h | 1319 MVT VT2; in getNumRegisters() local 1321 return getVectorTypeBreakdown(Context, VT, VT1, NumIntermediates, VT2); in getNumRegisters() 2469 virtual bool isZExtFree(SDValue Val, EVT VT2) const { in isZExtFree() argument 2470 return isZExtFree(Val.getValueType(), VT2); in isZExtFree()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
D | AArch64ISelLowering.h | 398 bool isTruncateFree(EVT VT1, EVT VT2) const override; 403 bool isZExtFree(EVT VT1, EVT VT2) const override; 404 bool isZExtFree(SDValue Val, EVT VT2) const override;
|
D | AArch64ISelLowering.cpp | 8847 bool AArch64TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const { in isTruncateFree() 8848 if (VT1.isVector() || VT2.isVector() || !VT1.isInteger() || !VT2.isInteger()) in isTruncateFree() 8851 unsigned NumBits2 = VT2.getSizeInBits(); in isTruncateFree() 8892 bool AArch64TargetLowering::isZExtFree(EVT VT1, EVT VT2) const { in isZExtFree() 8893 if (VT1.isVector() || VT2.isVector() || !VT1.isInteger() || !VT2.isInteger()) in isZExtFree() 8896 unsigned NumBits2 = VT2.getSizeInBits(); in isZExtFree() 8900 bool AArch64TargetLowering::isZExtFree(SDValue Val, EVT VT2) const { in isZExtFree() 8902 if (isZExtFree(VT1, VT2)) { in isZExtFree() 8911 VT2.isSimple() && !VT2.isVector() && VT2.isInteger() && in isZExtFree()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | AMDGPUISelLowering.h | 173 bool isZExtFree(SDValue Val, EVT VT2) const override; 175 bool isNarrowingProfitable(EVT VT1, EVT VT2) const override;
|
D | AMDGPUISelLowering.cpp | 816 bool AMDGPUTargetLowering::isZExtFree(SDValue Val, EVT VT2) const { in isZExtFree() 817 return isZExtFree(Val.getValueType(), VT2); in isZExtFree()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAG.cpp | 1993 SDValue SelectionDAG::CreateStackTemporary(EVT VT1, EVT VT2) { in CreateStackTemporary() argument 1994 unsigned Bytes = std::max(VT1.getStoreSize(), VT2.getStoreSize()); in CreateStackTemporary() 1996 Type *Ty2 = VT2.getTypeForEVT(*getContext()); in CreateStackTemporary() 7533 SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2) { in getVTList() argument 7537 ID.AddInteger(VT2.getRawBits()); in getVTList() 7544 Array[1] = VT2; in getVTList() 7551 SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2, EVT VT3) { in getVTList() argument 7555 ID.AddInteger(VT2.getRawBits()); in getVTList() 7563 Array[1] = VT2; in getVTList() 7571 SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2, EVT VT3, EVT VT4) { in getVTList() argument [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86ISelLowering.h | 1062 bool isTruncateFree(EVT VT1, EVT VT2) const override; 1075 bool isZExtFree(EVT VT1, EVT VT2) const override; 1076 bool isZExtFree(SDValue Val, EVT VT2) const override; 1091 bool isNarrowingProfitable(EVT VT1, EVT VT2) const override;
|
D | X86ISelLowering.cpp | 30106 bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const { in isTruncateFree() 30107 if (!VT1.isInteger() || !VT2.isInteger()) in isTruncateFree() 30110 unsigned NumBits2 = VT2.getSizeInBits(); in isTruncateFree() 30119 bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const { in isZExtFree() 30121 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget.is64Bit(); in isZExtFree() 30124 bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const { in isZExtFree() 30126 if (isZExtFree(VT1, VT2)) in isZExtFree() 30133 !VT2.isSimple() || !VT2.isInteger()) in isZExtFree() 30182 bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const { in isNarrowingProfitable() 30184 return !(VT1 == MVT::i32 && VT2 == MVT::i16); in isNarrowingProfitable() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/XCore/ |
D | XCoreISelLowering.h | 99 bool isZExtFree(SDValue Val, EVT VT2) const override;
|
D | XCoreISelLowering.cpp | 179 bool XCoreTargetLowering::isZExtFree(SDValue Val, EVT VT2) const { in isZExtFree() 185 !VT2.isSimple() || !VT2.isInteger()) in isZExtFree()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/ |
D | RISCVISelLowering.h | 75 bool isZExtFree(SDValue Val, EVT VT2) const override;
|
D | RISCVISelLowering.cpp | 321 bool RISCVTargetLowering::isZExtFree(SDValue Val, EVT VT2) const { in isZExtFree() 332 return TargetLowering::isZExtFree(Val, VT2); in isZExtFree()
|
/third_party/pcre2/pcre2/src/sljit/ |
D | sljitNativeARM_64.c | 62 #define VT2(vt) ((sljit_ins)freg_map[vt] << 10) macro 985 FAIL_IF(push_inst(compiler, STP_F64 | VT(fprev) | VT2(i) | RN(SLJIT_SP) | offs)); in sljit_emit_enter() 995 FAIL_IF(push_inst(compiler, STP_F64 | VT(fprev) | VT2(i) | RN(SLJIT_SP) | offs)); in sljit_emit_enter() 1168 FAIL_IF(push_inst(compiler, LDP_F64 | VT(fprev) | VT2(i) | RN(SLJIT_SP) | offs)); in emit_stack_frame_release() 1178 FAIL_IF(push_inst(compiler, LDP_F64 | VT(fprev) | VT2(i) | RN(SLJIT_SP) | offs)); in emit_stack_frame_release()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
D | PPCISelLowering.h | 858 bool isTruncateFree(EVT VT1, EVT VT2) const override; 860 bool isZExtFree(SDValue Val, EVT VT2) const override;
|
D | PPCISelLowering.cpp | 15192 bool PPCTargetLowering::isTruncateFree(EVT VT1, EVT VT2) const { in isTruncateFree() 15193 if (!VT1.isInteger() || !VT2.isInteger()) in isTruncateFree() 15196 unsigned NumBits2 = VT2.getSizeInBits(); in isTruncateFree() 15200 bool PPCTargetLowering::isZExtFree(SDValue Val, EVT VT2) const { in isZExtFree() 15217 return TargetLowering::isZExtFree(Val, VT2); in isZExtFree()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonISelLowering.h | 126 bool isTruncateFree(EVT VT1, EVT VT2) const override;
|
D | HexagonISelLowering.cpp | 1902 bool HexagonTargetLowering::isTruncateFree(EVT VT1, EVT VT2) const { in isTruncateFree() 1903 if (!VT1.isSimple() || !VT2.isSimple()) in isTruncateFree() 1905 return VT1.getSimpleVT() == MVT::i64 && VT2.getSimpleVT() == MVT::i32; in isTruncateFree()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
D | ARMISelLowering.h | 356 bool isZExtFree(SDValue Val, EVT VT2) const override;
|
D | ARMInstrMVE.td | 3931 foreach VT2 = [ v4i1, v8i1, v16i1 ] in 3932 def : Pat<(VT (predicate_cast (VT2 VCCR:$src))), 3933 (VT (COPY_TO_REGCLASS (VT2 VCCR:$src), VCCR))>;
|
D | ARMISelLowering.cpp | 14893 bool ARMTargetLowering::isZExtFree(SDValue Val, EVT VT2) const { in isZExtFree() 14899 !VT2.isSimple() || !VT2.isInteger()) in isZExtFree()
|
/third_party/chromium/patch/ |
D | 0001-cve.patch | 69175 z;b`MqD>;>81r~1n?gD}DQ1kpN=hicuEB&jVIy{p1xHez9-*D;O>VT2^a?(v~4xarn
|