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 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();
  /external/llvm/test/FrontendC++/
2010-08-31-ByValArg.cpp 13 class EVT {
25 void foo(EVT e);
26 EVT bar();
28 void get(int *i, unsigned dl, VAL v, VAL *p, unsigned n, EVT missing_arg) {
30 EVT e = bar();
36 EVT bar() {
37 EVT e;
41 void foo(EVT e) {}
45 EVT ma;
  /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);
240 const clang::ExtVectorType *EVT =
243 if (EVT->getNumElements() < 2 || EVT->getNumElements() > 4)
247 const clang::Type *ElementType = GET_EXT_VECTOR_ELEMENT_TYPE(EVT);
368 const clang::ExtVectorType *EVT =
370 const clang::Type *ElementType = GET_EXT_VECTOR_ELEMENT_TYPE(EVT);
513 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 179 EVT InVT = InOp.getValueType();
180 EVT NInVT = TLI.getTypeToTransformTo(*DAG.getContext(), InVT);
181 EVT OutVT = N->getValueType(0);
182 EVT NOutVT = TLI.getTypeToTransformTo(*DAG.getContext(), OutVT);
220 EVT::getIntegerVT(*DAG.getContext(),
237 EVT OVT = N->getValueType(0);
238 EVT NVT = Op.getValueType();
256 EVT VT = N->getValueType(0);
275 EVT OutVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
285 EVT OVT = 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,
631 EVT VT = cast<VTSDNode>(N)->getVT();
753 EVT VT = N->getValueType(0);
771 EVT EltVT = N->getValueType(0).getVectorElementType();
823 unsigned SelectionDAG::getEVTAlignment(EVT VT) const {
879 SDValue SelectionDAG::getSExtOrTrunc(SDValue Op, DebugLoc DL, EVT VT) {
885 SDValue SelectionDAG::getZExtOrTrunc(SDValue Op, DebugLoc DL, EVT VT) {
891 SDValue SelectionDAG::getZeroExtendInReg(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);
233 SDValue SimplifySetCC(EVT VT, SDValue N0, SDValue N1, ISD::CondCode Cond,
237 SDValue CombineConsecutiveLoads(SDNode *N, EVT VT);
238 SDValue ConstantFoldBITCASTofBUILD_VECTOR(SDNode *, EVT);
291 EVT getShiftAmountTy(EVT LHSTy) {
297 bool isTypeLegal(const EVT &VT) {
532 EVT VT = N0.getValueType()
    [all...]

Completed in 221 milliseconds