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 96 RSExportVectorType *EVT =
105 slangAssert(EI->type == EVT->getType() && "Element has unexpected type");
106 slangAssert(EI->vsize == EVT->getNumElement() && "Element has unexpected "
108 ET = EVT;
slang_rs_export_type.cpp 93 const clang::ExtVectorType *EVT =
95 unsigned numElements = EVT->getNumElements();
97 const clang::Type *BaseElementType = GET_EXT_VECTOR_ELEMENT_TYPE(EVT);
244 const clang::ExtVectorType *EVT =
247 if (EVT->getNumElements() < 2 || EVT->getNumElements() > 4)
251 const clang::Type *ElementType = GET_EXT_VECTOR_ELEMENT_TYPE(EVT);
372 const clang::ExtVectorType *EVT =
374 const clang::Type *ElementType = GET_EXT_VECTOR_ELEMENT_TYPE(EVT);
517 const clang::ExtVectorType *EVT
    [all...]
slang_rs_reflection.cpp 121 static const char *GetVectorTypeName(const RSExportVectorType *EVT) {
133 switch (EVT->getType()) {
169 slangAssert((EVT->getNumElement() > 1) &&
170 (EVT->getNumElement() <= 4) &&
173 return BaseElement[EVT->getNumElement() - 2];
176 static const char *GetVectorElementName(const RSExportVectorType *EVT) {
192 switch (EVT->getType()) {
240 slangAssert((EVT->getNumElement() > 1) &&
241 (EVT->getNumElement() <= 4) &&
244 return BaseElement[EVT->getNumElement() - 2]
    [all...]
  /external/llvm/include/llvm/CodeGen/
ValueTypes.h 27 struct EVT;
377 /// EVT - Extended Value Type. Capable of holding value types which are not
380 struct EVT {
386 EVT() : V((MVT::SimpleValueType)(MVT::INVALID_SIMPLE_VALUE_TYPE)),
388 EVT(MVT::SimpleValueType SVT) : V(SVT), LLVMTy(0) { }
389 EVT(MVT S) : V(S), LLVMTy(0) {}
391 bool operator==(EVT VT) const {
394 bool operator!=(EVT VT) const {
402 /// getFloatingPointVT - Returns the EVT that represents a floating point
405 static EVT getFloatingPointVT(unsigned BitWidth)
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp 338 RTLIB::Libcall RTLIB::getFPEXT(EVT OpVT, EVT RetVT) {
349 RTLIB::Libcall RTLIB::getFPROUND(EVT OpVT, EVT RetVT) {
369 RTLIB::Libcall RTLIB::getFPTOSINT(EVT OpVT, EVT RetVT) {
412 RTLIB::Libcall RTLIB::getFPTOUINT(EVT OpVT, EVT RetVT) {
455 RTLIB::Libcall RTLIB::getSINTTOFP(EVT OpVT, EVT RetVT)
    [all...]
LegalizeIntegerTypes.cpp 167 EVT ResVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
207 EVT InVT = InOp.getValueType();
208 EVT NInVT = TLI.getTypeToTransformTo(*DAG.getContext(), InVT);
209 EVT OutVT = N->getValueType(0);
210 EVT NOutVT = TLI.getTypeToTransformTo(*DAG.getContext(), OutVT);
248 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) {
63 static const fltSemantics *EVTToAPFloatSemantics(EVT VT) {
88 bool ConstantFPSDNode::isValueValidForType(EVT VT,
633 EVT VT = cast<VTSDNode>(N)->getVT();
755 EVT VT = N->getValueType(0);
773 EVT EltVT = N->getValueType(0).getVectorElementType();
828 unsigned SelectionDAG::getEVTAlignment(EVT VT) const {
884 SDValue SelectionDAG::getAnyExtOrTrunc(SDValue Op, DebugLoc DL, EVT VT) {
890 SDValue SelectionDAG::getSExtOrTrunc(SDValue Op, DebugLoc DL, EVT VT) {
896 SDValue SelectionDAG::getZExtOrTrunc(SDValue Op, DebugLoc DL, EVT VT)
    [all...]
DAGCombiner.cpp 133 SDValue PromoteOperand(SDValue Op, EVT PVT, bool &Replace);
134 SDValue SExtPromoteOperand(SDValue Op, EVT PVT);
135 SDValue ZExtPromoteOperand(SDValue Op, EVT PVT);
234 SDValue SimplifySetCC(EVT VT, SDValue N0, SDValue N1, ISD::CondCode Cond,
238 SDValue CombineConsecutiveLoads(SDNode *N, EVT VT);
239 SDValue ConstantFoldBITCASTofBUILD_VECTOR(SDNode *, EVT);
292 EVT getShiftAmountTy(EVT LHSTy) {
298 bool isTypeLegal(const EVT &VT) {
533 EVT VT = N0.getValueType()
    [all...]

Completed in 642 milliseconds