Home
last modified time | relevance | path

Searched refs:VT2 (Results 1 – 25 of 88) sorted by relevance

1234

/external/llvm-project/llvm/unittests/Transforms/IPO/
DWholeProgramDevirt.cpp22 VTableBits VT2; in TEST() local
23 VT2.ObjectSize = 8; in TEST()
24 VT2.Before.BytesUsed = {1 << 1}; in TEST()
25 VT2.After.BytesUsed = {1 << 0}; in TEST()
28 TypeMemberInfo TM2{&VT2, 0}; in TEST()
56 VT2.After.BytesUsed = {0xff, 1, 0, 0, 0}; in TEST()
65 VTableBits VT2; in TEST() local
66 VT2.ObjectSize = 8; in TEST()
69 TypeMemberInfo TM2{&VT2, 0}; in TEST()
88 EXPECT_EQ(std::vector<uint8_t>{0}, VT2.Before.Bytes); in TEST()
[all …]
/external/llvm/unittests/Transforms/IPO/
DWholeProgramDevirt.cpp23 VTableBits VT2; in TEST() local
24 VT2.ObjectSize = 8; in TEST()
25 VT2.Before.BytesUsed = {1 << 1}; in TEST()
26 VT2.After.BytesUsed = {1 << 0}; in TEST()
29 TypeMemberInfo TM2{&VT2, 0}; in TEST()
57 VT2.After.BytesUsed = {0xff, 1, 0, 0, 0}; in TEST()
66 VTableBits VT2; in TEST() local
67 VT2.ObjectSize = 8; in TEST()
70 TypeMemberInfo TM2{&VT2, 0}; in TEST()
89 EXPECT_EQ(std::vector<uint8_t>{0}, VT2.Before.Bytes); in TEST()
[all …]
/external/autotest/client/site_tests/graphics_VTSwitch/
Dcontrol.10011 - VT1 and VT2 are not sufficiently different.
13 - VT2 does not remain the same between VT switches.
25 Switches between VT1 and VT2 repeatedly and logs in/out of Chrome to make sure
27 sure each VT remains the same between VT switches, and that VT1 and VT2 are
Dcontrol11 - VT1 and VT2 are not sufficiently different.
13 - VT2 does not remain the same between VT switches.
26 Switches between VT1 and VT2 repeatedly and logs in/out of Chrome to make sure
28 sure each VT remains the same between VT switches, and that VT1 and VT2 are
/external/llvm/include/llvm/CodeGen/
DSelectionDAG.h462 SDVTList getVTList(EVT VT1, EVT VT2);
463 SDVTList getVTList(EVT VT1, EVT VT2, EVT VT3);
464 SDVTList getVTList(EVT VT1, EVT VT2, EVT VT3, EVT VT4);
1023 SDNode *SelectNodeTo(SDNode *N, unsigned TargetOpc, EVT VT1, EVT VT2);
1025 EVT VT2, ArrayRef<SDValue> Ops);
1027 EVT VT2, EVT VT3, ArrayRef<SDValue> Ops);
1029 EVT VT2, EVT VT3, EVT VT4, ArrayRef<SDValue> Ops);
1031 EVT VT2, SDValue Op1);
1033 EVT VT2, SDValue Op1, SDValue Op2);
1035 EVT VT2, SDValue Op1, SDValue Op2, SDValue Op3);
[all …]
/external/llvm-project/llvm/include/llvm/IR/
DLegacyPassNameParser.h90 const PassNameParser::OptionInfo *VT2) { in ValCompare() argument
91 return VT1->Name.compare(VT2->Name); in ValCompare()
/external/llvm-project/mlir/tools/mlir-tblgen/
Dmlir-tblgen.cpp48 const GenNameParser::OptionInfo *VT2) { in printOptionInfo() argument
49 return VT1->Name.compare(VT2->Name); in printOptionInfo()
/external/llvm/lib/Target/MSP430/
DMSP430ISelLowering.h110 bool isTruncateFree(EVT VT1, EVT VT2) const override;
121 bool isZExtFree(EVT VT1, EVT VT2) const override;
122 bool isZExtFree(SDValue Val, EVT VT2) const override;
DMSP430ISelLowering.cpp1144 bool MSP430TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const { in isTruncateFree()
1145 if (!VT1.isInteger() || !VT2.isInteger()) in isTruncateFree()
1148 return (VT1.getSizeInBits() > VT2.getSizeInBits()); in isTruncateFree()
1156 bool MSP430TargetLowering::isZExtFree(EVT VT1, EVT VT2) const { in isZExtFree()
1158 return 0 && VT1 == MVT::i8 && VT2 == MVT::i16; in isZExtFree()
1161 bool MSP430TargetLowering::isZExtFree(SDValue Val, EVT VT2) const { in isZExtFree()
1162 return isZExtFree(Val.getValueType(), VT2); in isZExtFree()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DLegacyPassNameParser.h90 const PassNameParser::OptionInfo *VT2) { in ValCompare() argument
91 return VT1->Name.compare(VT2->Name); in ValCompare()
/external/llvm/include/llvm/IR/
DLegacyPassNameParser.h91 const PassNameParser::OptionInfo *VT2) { in ValLessThan() argument
92 return std::strcmp(VT1->Name, VT2->Name); in ValLessThan()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/MSP430/
DMSP430ISelLowering.h113 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;
/external/llvm-project/llvm/lib/Target/MSP430/
DMSP430ISelLowering.h117 bool isTruncateFree(EVT VT1, EVT VT2) const override;
128 bool isZExtFree(EVT VT1, EVT VT2) const override;
129 bool isZExtFree(SDValue Val, EVT VT2) const override;
/external/eigen/unsupported/test/
DFFTW.cpp28 template <typename VT1,typename VT2>
29 long double fft_rmse( const VT1 & fftbuf,const VT2 & timebuf) in fft_rmse()
50 template <typename VT1,typename VT2>
51 long double dif_rmse( const VT1 buf1,const VT2 buf2) in dif_rmse()
/external/llvm-project/llvm/test/Transforms/WholeProgramDevirt/
Dimport.ll91 ; VCP: [[VT2:%.*]] = bitcast {{.*}} to i8*
92 …; VCP-X86: [[GEP2:%.*]] = getelementptr i8, i8* [[VT2]], i32 ptrtoint ([0 x i8]* @__typeid_typeid2…
93 ; VCP-ARM: [[GEP2:%.*]] = getelementptr i8, i8* [[VT2]], i32 43
99 ; BRANCH-FUNNEL-NOVCP: [[VT2:%.*]] = bitcast {{.*}} to i8*
100 …id ()* @__typeid_typeid2_8_branch_funnel to i1 (i8*, i8*, i32)*)(i8* nest [[VT2]], i8* %obj, i32 3)
Dexpand-check.ll49 ; CHECK: [[GEP2:%[^ ]*]] = getelementptr i8, i8* [[VT2:%[^,]*]], i32 1
52 ; CHECK: [[TT2:%[^ ]*]] = call i1 @llvm.type.test(i8* [[VT2]], metadata !"typeid")
/external/llvm-project/llvm/lib/Target/BPF/
DBPFISelLowering.h129 bool isTruncateFree(EVT VT1, EVT VT2) const override;
133 bool isZExtFree(EVT VT1, EVT VT2) const override;
DBPFISelLowering.cpp181 bool BPFTargetLowering::isTruncateFree(EVT VT1, EVT VT2) const { in isTruncateFree()
182 if (!VT1.isInteger() || !VT2.isInteger()) in isTruncateFree()
185 unsigned NumBits2 = VT2.getSizeInBits(); in isTruncateFree()
197 bool BPFTargetLowering::isZExtFree(EVT VT1, EVT VT2) const { in isZExtFree()
198 if (!getHasAlu32() || !VT1.isInteger() || !VT2.isInteger()) in isZExtFree()
201 unsigned NumBits2 = VT2.getSizeInBits(); in isZExtFree()
/external/llvm/test/Transforms/WholeProgramDevirt/
Dexpand-check.ll49 ; CHECK: [[GEP2:%[^ ]*]] = getelementptr i8, i8* [[VT2:%[^,]*]], i32 1
52 ; CHECK: [[TT2:%[^ ]*]] = call i1 @llvm.type.test(i8* [[VT2]], metadata !"typeid")
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DSelectionDAG.h572 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 …]
/external/llvm-project/llvm/include/llvm/CodeGen/
DSelectionDAG.h610 SDVTList getVTList(EVT VT1, EVT VT2);
611 SDVTList getVTList(EVT VT1, EVT VT2, EVT VT3);
612 SDVTList getVTList(EVT VT1, EVT VT2, EVT VT3, EVT VT4);
1452 SDNode *SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT1, EVT VT2);
1454 EVT VT2, ArrayRef<SDValue> Ops);
1456 EVT VT2, EVT VT3, ArrayRef<SDValue> Ops);
1458 EVT VT2, SDValue Op1, SDValue Op2);
1488 EVT VT2, SDValue Op1, SDValue Op2);
1490 EVT VT2, SDValue Op1, SDValue Op2, SDValue Op3);
1492 EVT VT2, ArrayRef<SDValue> Ops);
[all …]
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp1878 SDValue SelectionDAG::CreateStackTemporary(EVT VT1, EVT VT2) { in CreateStackTemporary() argument
1879 unsigned Bytes = std::max(VT1.getStoreSize(), VT2.getStoreSize()); in CreateStackTemporary()
1881 Type *Ty2 = VT2.getTypeForEVT(*getContext()); in CreateStackTemporary()
5636 SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2) { in getVTList() argument
5640 ID.AddInteger(VT2.getRawBits()); in getVTList()
5647 Array[1] = VT2; in getVTList()
5654 SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2, EVT VT3) { in getVTList() argument
5658 ID.AddInteger(VT2.getRawBits()); in getVTList()
5666 Array[1] = VT2; in getVTList()
5674 SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2, EVT VT3, EVT VT4) { in getVTList() argument
[all …]
/external/llvm/lib/Target/AMDGPU/
DAMDGPUISelLowering.h130 bool isZExtFree(SDValue Val, EVT VT2) const override;
132 bool isNarrowingProfitable(EVT VT1, EVT VT2) const override;
/external/llvm/lib/Target/X86/
DX86ISelLowering.h863 bool isTruncateFree(EVT VT1, EVT VT2) const override;
876 bool isZExtFree(EVT VT1, EVT VT2) const override;
877 bool isZExtFree(SDValue Val, EVT VT2) const override;
891 bool isNarrowingProfitable(EVT VT1, EVT VT2) const override;
/external/llvm/lib/Target/AArch64/
DAArch64ISelLowering.h290 bool isTruncateFree(EVT VT1, EVT VT2) const override;
295 bool isZExtFree(EVT VT1, EVT VT2) const override;
296 bool isZExtFree(SDValue Val, EVT VT2) const override;

1234