HomeSort by relevance Sort by last modified time
    Searched refs:SDVTList (Results 1 - 25 of 29) sorted by null

1 2

  /external/llvm/include/llvm/CodeGen/
SelectionDAG.h 46 /// SDVTList contains all types which are frequently accessed in SelectionDAG.
52 /// The hash value for SDVTList is fixed, so cache it to avoid
60 SDVTList getSDVTList() {
61 SDVTList result = {VTs, NumVTs};
406 /// Return an SDVTList that represents the list of values specified.
407 SDVTList getVTList(EVT VT);
408 SDVTList getVTList(EVT VT1, EVT VT2);
409 SDVTList getVTList(EVT VT1, EVT VT2, EVT VT3);
410 SDVTList getVTList(EVT VT1, EVT VT2, EVT VT3, EVT VT4);
411 SDVTList getVTList(ArrayRef<EVT> VTs)
    [all...]
SelectionDAGNodes.h 60 struct SDVTList {
582 SDVTList getVTList() const {
583 SDVTList X = { ValueList, NumValues };
707 static SDVTList getSDVTList(EVT VT) {
708 SDVTList Ret = { getValueTypeList(VT), 1 };
712 SDNode(unsigned Opc, unsigned Order, DebugLoc dl, SDVTList VTs,
734 SDNode(unsigned Opc, unsigned Order, DebugLoc dl, SDVTList VTs)
934 UnarySDNode(unsigned Opc, unsigned Order, DebugLoc dl, SDVTList VTs,
946 BinarySDNode(unsigned Opc, unsigned Order, DebugLoc dl, SDVTList VTs,
976 BinaryWithFlagsSDNode(unsigned Opc, unsigned Order, DebugLoc dl, SDVTList VTs
    [all...]