reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1221 case ISD::BRCOND: return lowerBRCOND(Op, DAG); 1222 case ISD::ConstantPool: return lowerConstantPool(Op, DAG); 1223 case ISD::GlobalAddress: return lowerGlobalAddress(Op, DAG); 1224 case ISD::BlockAddress: return lowerBlockAddress(Op, DAG); 1225 case ISD::GlobalTLSAddress: return lowerGlobalTLSAddress(Op, DAG); 1226 case ISD::JumpTable: return lowerJumpTable(Op, DAG); 1227 case ISD::SELECT: return lowerSELECT(Op, DAG); 1228 case ISD::SETCC: return lowerSETCC(Op, DAG); 1229 case ISD::VASTART: return lowerVASTART(Op, DAG); 1230 case ISD::VAARG: return lowerVAARG(Op, DAG); 1231 case ISD::FCOPYSIGN: return lowerFCOPYSIGN(Op, DAG); 1232 case ISD::FABS: return lowerFABS(Op, DAG); 1233 case ISD::FRAMEADDR: return lowerFRAMEADDR(Op, DAG); 1234 case ISD::RETURNADDR: return lowerRETURNADDR(Op, DAG); 1235 case ISD::EH_RETURN: return lowerEH_RETURN(Op, DAG); 1236 case ISD::ATOMIC_FENCE: return lowerATOMIC_FENCE(Op, DAG); 1237 case ISD::SHL_PARTS: return lowerShiftLeftParts(Op, DAG); 1238 case ISD::SRA_PARTS: return lowerShiftRightParts(Op, DAG, true); 1239 case ISD::SRL_PARTS: return lowerShiftRightParts(Op, DAG, false); 1240 case ISD::LOAD: return lowerLOAD(Op, DAG); 1241 case ISD::STORE: return lowerSTORE(Op, DAG); 1242 case ISD::EH_DWARF_CFA: return lowerEH_DWARF_CFA(Op, DAG); 1243 case ISD::FP_TO_SINT: return lowerFP_TO_SINT(Op, DAG);