Home
last modified time | relevance | path

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

123

/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/swiftshader/third_party/llvm-7.0/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/swiftshader/third_party/LLVM/include/llvm/CodeGen/
DSelectionDAG.h317 SDVTList getVTList(EVT VT1, EVT VT2);
318 SDVTList getVTList(EVT VT1, EVT VT2, EVT VT3);
319 SDVTList getVTList(EVT VT1, EVT VT2, EVT VT3, EVT VT4);
730 SDNode *SelectNodeTo(SDNode *N, unsigned TargetOpc, EVT VT1, EVT VT2);
732 EVT VT2, const SDValue *Ops, unsigned NumOps);
734 EVT VT2, EVT VT3, const SDValue *Ops, unsigned NumOps);
736 EVT VT2, EVT VT3, EVT VT4, const SDValue *Ops,
739 EVT VT2, SDValue Op1);
741 EVT VT2, SDValue Op1, SDValue Op2);
743 EVT VT2, SDValue Op1, SDValue Op2, SDValue Op3);
[all …]
/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/swiftshader/third_party/llvm-7.0/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;
/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/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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DLegacyPassNameParser.h91 const PassNameParser::OptionInfo *VT2) { in ValCompare() argument
92 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/include/llvm/Support/
DPassNameParser.h89 static int ValLessThan(const void *VT1, const void *VT2) { in ValLessThan() argument
92 static_cast<const ValType *>(VT2)->Name); in ValLessThan()
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/WholeProgramDevirt/
Dimport.ll90 ; VCP: [[VT2:%.*]] = bitcast {{.*}} to i8*
91 …; VCP-X86: [[GEP2:%.*]] = getelementptr i8, i8* [[VT2]], i32 ptrtoint (i8* @__typeid_typeid2_8_3_b…
92 ; VCP-ARM: [[GEP2:%.*]] = getelementptr i8, i8* [[VT2]], i32 43
98 ; BRANCH-FUNNEL-NOVCP: [[VT2:%.*]] = bitcast {{.*}} to i8*
99 …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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
DSelectionDAG.h542 SDVTList getVTList(EVT VT1, EVT VT2);
543 SDVTList getVTList(EVT VT1, EVT VT2, EVT VT3);
544 SDVTList getVTList(EVT VT1, EVT VT2, EVT VT3, EVT VT4);
1174 SDNode *SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT1, EVT VT2);
1176 EVT VT2, ArrayRef<SDValue> Ops);
1178 EVT VT2, EVT VT3, ArrayRef<SDValue> Ops);
1180 EVT VT2, SDValue Op1);
1182 EVT VT2, SDValue Op1, SDValue Op2);
1212 EVT VT2, SDValue Op1, SDValue Op2);
1214 EVT VT2, SDValue Op1, SDValue Op2, SDValue Op3);
[all …]
/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")
Dvirtual-const-prop-end.ll89 ; CHECK: [[VT2:%[^ ]*]] = bitcast [3 x i8*]* {{.*}} to i8*
96 ; CHECK: [[VTGEP2:%[^ ]*]] = getelementptr i8, i8* [[VT2]], i64 28
/external/swiftshader/third_party/LLVM/lib/Target/MSP430/
DMSP430ISelLowering.h106 virtual bool isTruncateFree(EVT VT1, EVT VT2) const;
117 virtual bool isZExtFree(EVT VT1, EVT VT2) const;
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp1468 SDValue SelectionDAG::CreateStackTemporary(EVT VT1, EVT VT2) { in CreateStackTemporary() argument
1470 VT2.getStoreSizeInBits())/8; in CreateStackTemporary()
1472 Type *Ty2 = VT2.getTypeForEVT(*getContext()); in CreateStackTemporary()
4591 SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2) { in getVTList() argument
4594 if (I->NumVTs == 2 && I->VTs[0] == VT1 && I->VTs[1] == VT2) in getVTList()
4599 Array[1] = VT2; in getVTList()
4605 SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2, EVT VT3) { in getVTList() argument
4608 if (I->NumVTs == 3 && I->VTs[0] == VT1 && I->VTs[1] == VT2 && in getVTList()
4614 Array[1] = VT2; in getVTList()
4621 SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2, EVT VT3, EVT VT4) { in getVTList() argument
[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/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/AMDGPU/
DAMDGPUISelLowering.h130 bool isZExtFree(SDValue Val, EVT VT2) const override;
132 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;
/external/swiftshader/third_party/LLVM/lib/Target/X86/
DX86ISelLowering.h649 virtual bool isTruncateFree(EVT VT1, EVT VT2) const;
660 virtual bool isZExtFree(EVT VT1, EVT VT2) const;
665 virtual bool isNarrowingProfitable(EVT VT1, EVT VT2) const;

123