HomeSort by relevance Sort by last modified time
    Searched defs:EVT (Results 1 - 10 of 10) sorted by null

  /external/clang/test/CodeGenCXX/
debug-info-byval.cpp 11 class EVT {
23 void foo(EVT e);
24 EVT bar();
26 void get(int *i, unsigned dl, VAL v, VAL *p, unsigned n, EVT missing_arg) {
28 EVT e = bar();
  /frameworks/compile/slang/
slang_rs_export_element.cpp 106 RSExportVectorType *EVT =
114 slangAssert(EI->type == EVT->getType() && "Element has unexpected type");
115 slangAssert(EI->vsize == EVT->getNumElement() && "Element has unexpected "
117 ET = EVT;
slang_rs_export_type.cpp 222 const clang::ExtVectorType *EVT =
224 unsigned numElements = EVT->getNumElements();
226 const clang::Type *BaseElementType = GetExtVectorElementType(EVT);
387 const clang::ExtVectorType *EVT =
390 if (EVT->getNumElements() < 2 || EVT->getNumElements() > 4)
394 const clang::Type *ElementType = GetExtVectorElementType(EVT);
633 const clang::ExtVectorType *EVT =
635 const clang::Type *ElementType = GetExtVectorElementType(EVT);
638 EVT->getNumElements() == 3 &
    [all...]
slang_rs_reflection_cpp.cpp 87 const RSExportVectorType *EVT = static_cast<const RSExportVectorType *>(ET);
89 VecName << EVT->getRSReflectionType(EVT)->rs_c_vector_prefix
90 << EVT->getNumElement();
617 void RSReflectionCpp::genGetterAndSetter(const RSExportVectorType *EVT,
619 slangAssert(EVT != nullptr);
622 EVT->convertToRTD(&rtd);
626 << rtd.type->rs_c_vector_prefix << EVT->getNumElement()
634 mOut.indent() << rtd.type->rs_c_vector_prefix << EVT->getNumElement()
939 const RSExportVectorType *EVT = static_cast<const RSExportVectorType *>(ET)
    [all...]
slang_rs_reflection.cpp 206 const RSExportVectorType *EVT = static_cast<const RSExportVectorType *>(ET);
207 const auto ReflectionType = EVT->getRSReflectionType(EVT);
210 << EVT->getNumElement();
295 const RSExportVectorType *EVT = static_cast<const RSExportVectorType *>(ET);
296 if (EVT->getType() == DataTypeFloat32) {
297 if (EVT->getNumElement() == 2) {
299 } else if (EVT->getNumElement() == 3) {
301 } else if (EVT->getNumElement() == 4) {
306 } else if (EVT->getType() == DataTypeUnsigned8)
    [all...]
  /external/llvm/include/llvm/CodeGen/
ValueTypes.h 28 /// EVT - Extended Value Type. Capable of holding value types which are not
31 struct EVT {
37 LLVM_CONSTEXPR EVT() : V(MVT::INVALID_SIMPLE_VALUE_TYPE), LLVMTy(nullptr) {}
38 LLVM_CONSTEXPR EVT(MVT::SimpleValueType SVT) : V(SVT), LLVMTy(nullptr) {}
39 LLVM_CONSTEXPR EVT(MVT S) : V(S), LLVMTy(nullptr) {}
41 bool operator==(EVT VT) const {
44 bool operator!=(EVT VT) const {
52 /// getFloatingPointVT - Returns the EVT that represents a floating point
55 static EVT getFloatingPointVT(unsigned BitWidth) {
59 /// getIntegerVT - Returns the EVT that represents an integer with the give
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64FastISel.cpp 423 EVT DestEVT = TLI.getValueType(DL, GV->getType(), true);
462 EVT CEVT = TLI.getValueType(DL, C->getType(), true);
910 EVT evt = TLI.getValueType(DL, Ty, true); local
913 if (evt == MVT::Other || !evt.isSimple())
915 VT = evt.getSimpleVT();
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeIntegerTypes.cpp 182 EVT ResVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
211 EVT SVT = getSetCCResultType(N->getOperand(2).getValueType());
212 EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(1));
246 EVT InVT = InOp.getValueType();
247 EVT NInVT = TLI.getTypeToTransformTo(*DAG.getContext(), InVT);
248 EVT OutVT = N->getValueType(0);
249 EVT NOutVT = TLI.getTypeToTransformTo(*DAG.getContext(), OutVT);
290 EVT::getIntegerVT(*DAG.getContext(),
309 EVT OVT = N->getValueType(0);
310 EVT NVT = Op.getValueType()
    [all...]
SelectionDAG.cpp 59 static SDVTList makeVTList(const EVT *VTs, unsigned NumVTs) {
80 bool ConstantFPSDNode::isValueValidForType(EVT VT,
705 EVT VT = N->getValueType(0);
723 EVT EltVT = N->getValueType(0).getVectorElementType();
780 EVT VT = cast<VTSDNode>(N)->getVT();
895 unsigned SelectionDAG::getEVTAlignment(EVT VT) const {
    [all...]
DAGCombiner.cpp 204 SDNode *EVE, EVT InVecVT, SDValue EltNo, LoadSDNode *OriginalLoad);
206 SDValue PromoteOperand(SDValue Op, EVT PVT, bool &Replace);
207 SDValue SExtPromoteOperand(SDValue Op, EVT PVT);
208 SDValue ZExtPromoteOperand(SDValue Op, EVT PVT);
339 SDValue SimplifySetCC(EVT VT, SDValue N0, SDValue N1, ISD::CondCode Cond,
348 SDValue CombineConsecutiveLoads(SDNode *N, EVT VT);
351 SDValue ConstantFoldBITCASTofBUILD_VECTOR(SDNode *, EVT);
421 EVT Ty) const;
429 EVT LoadResultTy, EVT &ExtVT, EVT &LoadedVT
    [all...]

Completed in 299 milliseconds