HomeSort by relevance Sort by last modified time
    Searched defs:EVT (Results 1 - 8 of 8) 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_export_type.cpp 133 const clang::ExtVectorType *EVT =
135 unsigned numElements = EVT->getNumElements();
137 const clang::Type *BaseElementType = GET_EXT_VECTOR_ELEMENT_TYPE(EVT);
288 const clang::ExtVectorType *EVT =
291 if (EVT->getNumElements() < 2 || EVT->getNumElements() > 4)
295 const clang::Type *ElementType = GET_EXT_VECTOR_ELEMENT_TYPE(EVT);
510 const clang::ExtVectorType *EVT =
512 const clang::Type *ElementType = GET_EXT_VECTOR_ELEMENT_TYPE(EVT);
515 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;
440 /// EVT - Extended Value Type. Capable of holding value types which are not
443 struct EVT {
449 EVT() : V((MVT::SimpleValueType)(MVT::INVALID_SIMPLE_VALUE_TYPE)),
451 EVT(MVT::SimpleValueType SVT) : V(SVT), LLVMTy(0) { }
452 EVT(MVT S) : V(S), LLVMTy(0) {}
454 bool operator==(EVT VT) const {
457 bool operator!=(EVT VT) const {
465 /// getFloatingPointVT - Returns the EVT that represents a floating point
468 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 57 static SDVTList makeVTList(const EVT *VTs, unsigned NumVTs) {
62 static const fltSemantics *EVTToAPFloatSemantics(EVT VT) {
90 bool ConstantFPSDNode::isValueValidForType(EVT VT,
688 EVT VT = cast<VTSDNode>(N)->getVT();
808 EVT VT = N->getValueType(0);
826 EVT EltVT = N->getValueType(0).getVectorElementType();
881 unsigned SelectionDAG::getEVTAlignment(EVT VT) const {
    [all...]
DAGCombiner.cpp 148 SDValue PromoteOperand(SDValue Op, EVT PVT, bool &Replace);
149 SDValue SExtPromoteOperand(SDValue Op, EVT PVT);
150 SDValue ZExtPromoteOperand(SDValue Op, EVT PVT);
257 SDValue SimplifySetCC(EVT VT, SDValue N0, SDValue N1, ISD::CondCode Cond,
261 SDValue CombineConsecutiveLoads(SDNode *N, EVT VT);
262 SDValue ConstantFoldBITCASTofBUILD_VECTOR(SDNode *, EVT);
315 EVT getShiftAmountTy(EVT LHSTy) {
321 bool isTypeLegal(const EVT &VT) {
569 EVT VT = N0.getValueType()
    [all...]

Completed in 787 milliseconds