HomeSort by relevance Sort by last modified time
    Searched defs:Promote (Results 1 - 3 of 3) sorted by null

  /external/clang/test/SemaTemplate/
nested-name-spec-template.cpp 5 template<typename T> struct Promote;
7 template<> struct Promote<short> {
11 template<> struct Promote<int> {
15 template<> struct Promote<float> {
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<int>::type *ret_intptr5(int* ip) { return ip;
    [all...]
  /external/llvm/include/llvm/Target/
TargetLowering.h 84 Promote, // This operation should be executed in a larger type.
252 /// it is already legal (return 'Legal') or we need to promote it to a larger
253 /// type (return 'Promote'), or we need to expand it into multiple registers
264 /// returns the larger type to promote to. For integer types that are larger
470 assert(Action != Promote && "Can't promote condition code!");
482 /// getTypeToPromoteTo - If the action for this operation is to promote, this
483 /// method returns the ValueType to promote to.
485 assert(getOperationAction(Op, VT) == Promote &&
501 "Didn't find type to promote to!")
    [all...]
  /external/llvm/lib/Target/CellSPU/
SPUISelLowering.cpp 112 setLoadExtAction(ISD::EXTLOAD, MVT::i1, Promote);
113 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
114 setLoadExtAction(ISD::ZEXTLOAD, MVT::i1, Promote);
301 setOperationAction(ISD::CTLZ , MVT::i8, Promote);
302 setOperationAction(ISD::CTLZ , MVT::i16, Promote);
331 setOperationAction(ISD::FP_TO_SINT, MVT::i8, Promote);
332 setOperationAction(ISD::FP_TO_UINT, MVT::i8, Promote);
333 setOperationAction(ISD::FP_TO_SINT, MVT::i16, Promote);
334 setOperationAction(ISD::FP_TO_UINT, MVT::i16, Promote);
349 setOperationAction(ISD::SINT_TO_FP, MVT::i16, Promote);
    [all...]

Completed in 172 milliseconds