HomeSort by relevance Sort by last modified time
    Searched defs:EVT (Results 1 - 9 of 9) 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 105 RSExportVectorType *EVT =
113 slangAssert(EI->type == EVT->getType() && "Element has unexpected type");
114 slangAssert(EI->vsize == EVT->getNumElement() && "Element has unexpected "
116 ET = EVT;
slang_rs_export_type.cpp 206 const clang::ExtVectorType *EVT =
208 unsigned numElements = EVT->getNumElements();
210 const clang::Type *BaseElementType = GetExtVectorElementType(EVT);
354 const clang::ExtVectorType *EVT =
357 if (EVT->getNumElements() < 2 || EVT->getNumElements() > 4)
361 const clang::Type *ElementType = GetExtVectorElementType(EVT);
578 const clang::ExtVectorType *EVT =
580 const clang::Type *ElementType = GetExtVectorElementType(EVT);
583 EVT->getNumElements() == 3 &
    [all...]
slang_rs_reflection_cpp.cpp 84 const RSExportVectorType *EVT = static_cast<const RSExportVectorType *>(ET);
86 VecName << EVT->getRSReflectionType(EVT)->rs_c_vector_prefix
87 << EVT->getNumElement();
606 void RSReflectionCpp::genGetterAndSetter(const RSExportVectorType *EVT,
608 slangAssert(EVT != NULL);
611 EVT->convertToRTD(&rtd);
615 << rtd.type->rs_c_vector_prefix << EVT->getNumElement()
623 mOut.indent() << rtd.type->rs_c_vector_prefix << EVT->getNumElement()
888 const RSExportVectorType *EVT = static_cast<const RSExportVectorType *>(ET)
    [all...]
slang_rs_reflection.cpp 192 const RSExportVectorType *EVT = static_cast<const RSExportVectorType *>(ET);
194 VecName << EVT->getRSReflectionType(EVT)->rs_java_vector_prefix
195 << EVT->getNumElement();
249 const RSExportVectorType *EVT = static_cast<const RSExportVectorType *>(ET);
250 if (EVT->getType() == DataTypeFloat32) {
251 if (EVT->getNumElement() == 2) {
253 } else if (EVT->getNumElement() == 3) {
255 } else if (EVT->getNumElement() == 4) {
260 } 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 EVT() : V((MVT::SimpleValueType)(MVT::INVALID_SIMPLE_VALUE_TYPE)),
39 EVT(MVT::SimpleValueType SVT) : V(SVT), LLVMTy(nullptr) { }
40 EVT(MVT S) : V(S), LLVMTy(nullptr) {}
42 bool operator==(EVT VT) const {
45 bool operator!=(EVT VT) const {
53 /// getFloatingPointVT - Returns the EVT that represents a floating point
56 static EVT getFloatingPointVT(unsigned BitWidth) {
60 /// getIntegerVT - Returns the EVT that represents an integer with the give
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeIntegerTypes.cpp 172 EVT ResVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
201 EVT SVT = getSetCCResultType(N->getOperand(2).getValueType());
202 EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(1));
237 EVT InVT = InOp.getValueType();
238 EVT NInVT = TLI.getTypeToTransformTo(*DAG.getContext(), InVT);
239 EVT OutVT = N->getValueType(0);
240 EVT NOutVT = TLI.getTypeToTransformTo(*DAG.getContext(), OutVT);
275 EVT::getIntegerVT(*DAG.getContext(),
294 EVT OVT = N->getValueType(0);
295 EVT NVT = Op.getValueType()
    [all...]
SelectionDAG.cpp 56 static SDVTList makeVTList(const EVT *VTs, unsigned NumVTs) {
77 bool ConstantFPSDNode::isValueValidForType(EVT VT,
730 EVT VT = cast<VTSDNode>(N)->getVT();
849 EVT VT = N->getValueType(0);
867 EVT EltVT = N->getValueType(0).getVectorElementType();
    [all...]
DAGCombiner.cpp 181 SDNode *EVE, EVT InVecVT, SDValue EltNo, LoadSDNode *OriginalLoad);
183 SDValue PromoteOperand(SDValue Op, EVT PVT, bool &Replace);
184 SDValue SExtPromoteOperand(SDValue Op, EVT PVT);
185 SDValue ZExtPromoteOperand(SDValue Op, EVT PVT);
295 SDValue SimplifySetCC(EVT VT, SDValue N0, SDValue N1, ISD::CondCode Cond,
304 SDValue CombineConsecutiveLoads(SDNode *N, EVT VT);
305 SDValue ConstantFoldBITCASTofBUILD_VECTOR(SDNode *, EVT);
369 EVT getShiftAmountTy(EVT LHSTy) {
379 bool isTypeLegal(const EVT &VT)
    [all...]

Completed in 892 milliseconds