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 10 class EVT {
22 void foo(EVT e);
23 EVT bar();
25 void get(int *i, unsigned dl, VAL v, VAL *p, unsigned n, EVT missing_arg) {
27 EVT e = bar();
  /frameworks/compile/slang/
slang_rs_export_element.cpp 94 RSExportVectorType *EVT =
102 slangAssert(EI->type == EVT->getType() && "Element has unexpected type");
103 slangAssert(EI->vsize == EVT->getNumElement() && "Element has unexpected "
105 ET = EVT;
slang_rs_reflection_cpp.cpp 78 const RSExportVectorType *EVT =
81 VecName << EVT->getRSReflectionType(EVT)->rs_c_vector_prefix
82 << EVT->getNumElement();
slang_rs_export_type.cpp 131 const clang::ExtVectorType *EVT =
133 unsigned numElements = EVT->getNumElements();
135 const clang::Type *BaseElementType = GET_EXT_VECTOR_ELEMENT_TYPE(EVT);
286 const clang::ExtVectorType *EVT =
289 if (EVT->getNumElements() < 2 || EVT->getNumElements() > 4)
293 const clang::Type *ElementType = GET_EXT_VECTOR_ELEMENT_TYPE(EVT);
508 const clang::ExtVectorType *EVT =
510 const clang::Type *ElementType = GET_EXT_VECTOR_ELEMENT_TYPE(EVT);
513 EVT->getNumElements() == 3 &
    [all...]
slang_rs_reflection.cpp 178 const RSExportVectorType *EVT =
181 VecName << EVT->getRSReflectionType(EVT)->rs_java_vector_prefix
182 << EVT->getNumElement();
240 const RSExportVectorType *EVT = static_cast<const RSExportVectorType*>(ET);
241 if (EVT->getType() == RSExportPrimitiveType::DataTypeFloat32) {
242 if (EVT->getNumElement() == 2)
244 else if (EVT->getNumElement() == 3)
246 else if (EVT->getNumElement() == 4)
248 } else if (EVT->getType() == RSExportPrimitiveType::DataTypeUnsigned8)
    [all...]
  /external/llvm/include/llvm/CodeGen/
ValueTypes.h 28 struct EVT;
546 /// EVT - Extended Value Type. Capable of holding value types which are not
549 struct EVT {
555 EVT() : V((MVT::SimpleValueType)(MVT::INVALID_SIMPLE_VALUE_TYPE)),
557 EVT(MVT::SimpleValueType SVT) : V(SVT), LLVMTy(0) { }
558 EVT(MVT S) : V(S), LLVMTy(0) {}
560 bool operator==(EVT VT) const {
563 bool operator!=(EVT VT) const {
571 /// getFloatingPointVT - Returns the EVT that represents a floating point
574 static EVT getFloatingPointVT(unsigned BitWidth)
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeIntegerTypes.cpp 168 EVT ResVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
208 EVT InVT = InOp.getValueType();
209 EVT NInVT = TLI.getTypeToTransformTo(*DAG.getContext(), InVT);
210 EVT OutVT = N->getValueType(0);
211 EVT NOutVT = TLI.getTypeToTransformTo(*DAG.getContext(), OutVT);
246 EVT::getIntegerVT(*DAG.getContext(),
265 EVT OVT = N->getValueType(0);
266 EVT NVT = Op.getValueType();
284 EVT VT = N->getValueType(0);
303 EVT OutVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0))
    [all...]
SelectionDAG.cpp 58 static SDVTList makeVTList(const EVT *VTs, unsigned NumVTs) {
79 bool ConstantFPSDNode::isValueValidForType(EVT VT,
673 EVT VT = cast<VTSDNode>(N)->getVT();
793 EVT VT = N->getValueType(0);
811 EVT EltVT = N->getValueType(0).getVectorElementType();
866 unsigned SelectionDAG::getEVTAlignment(EVT VT) const {
    [all...]
DAGCombiner.cpp 149 SDValue PromoteOperand(SDValue Op, EVT PVT, bool &Replace);
150 SDValue SExtPromoteOperand(SDValue Op, EVT PVT);
151 SDValue ZExtPromoteOperand(SDValue Op, EVT PVT);
259 SDValue SimplifySetCC(EVT VT, SDValue N0, SDValue N1, ISD::CondCode Cond,
263 SDValue CombineConsecutiveLoads(SDNode *N, EVT VT);
264 SDValue ConstantFoldBITCASTofBUILD_VECTOR(SDNode *, EVT);
328 EVT getShiftAmountTy(EVT LHSTy) {
334 bool isTypeLegal(const EVT &VT) {
578 EVT VT = N0.getValueType()
    [all...]

Completed in 591 milliseconds