Searched defs:Promote (Results 1 - 3 of 3) sorted by relevance

/external/clang/test/SemaTemplate/
H A Dnested-name-spec-template.cpp5 template<typename T> struct Promote;
7 template<> struct Promote<short> { struct in namespace:N::M
11 template<> struct Promote<int> { struct in namespace:N::M
15 template<> struct Promote<float> { struct in namespace:N::M
19 Promote<short>::type *ret_intptr(int* ip) { return ip; }
20 Promote<int>::type *ret_intptr2(int* ip) { return ip; }
23 M::Promote<int>::type *ret_intptr3(int* ip) { return ip; }
24 M::template Promote<int>::type *ret_intptr4(int* ip) { return ip; } // expected-warning{{'template' keyword outside of a template}}
25 M::template Promote<int> pi; // expected-warning{{'template' keyword outside of a template}}
28 N::M::Promote<in
33 N::M::template Promote; // expected-error{{expected unqualified-id}} member in class:N::M
[all...]
/external/llvm/include/llvm/Target/
H A DTargetLowering.h87 Promote, // This operation should be executed in a larger type. enumerator in enum:llvm::TargetLowering::LegalizeAction
282 /// type (return 'Promote'), or we need to expand it into multiple registers
501 assert(Action != Promote && "Can't promote condition code!");
516 assert(getOperationAction(Op, VT) == Promote &&
534 getOperationAction(Op, NVT) == Promote);
1954 && "Promote may not follow Expand or Promote");
2005 // Promote the integer element types until a legal vector type is found
/external/llvm/lib/Target/CellSPU/
H A DSPUISelLowering.cpp114 setLoadExtAction(ISD::EXTLOAD, MVT::i1, Promote);
115 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
116 setLoadExtAction(ISD::ZEXTLOAD, MVT::i1, Promote);
303 setOperationAction(ISD::CTLZ , MVT::i8, Promote);
304 setOperationAction(ISD::CTLZ , MVT::i16, Promote);
333 setOperationAction(ISD::FP_TO_SINT, MVT::i8, Promote);
334 setOperationAction(ISD::FP_TO_UINT, MVT::i8, Promote);
335 setOperationAction(ISD::FP_TO_SINT, MVT::i16, Promote);
336 setOperationAction(ISD::FP_TO_UINT, MVT::i16, Promote);
351 setOperationAction(ISD::SINT_TO_FP, MVT::i16, Promote);
2367 SDValue Promote = DAG.getNode(SPUISD::PREFSLOT2VEC, dl, vecVT, N, N); local
2384 SDValue Promote = DAG.getNode(SPUISD::PREFSLOT2VEC, dl, vecVT, N, N); local
2418 SDValue Promote = DAG.getNode(SPUISD::PREFSLOT2VEC, dl, vecVT, N, N); local
[all...]

Completed in 164 milliseconds