Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:Action

718         default: llvm_unreachable("This action is not supported yet!");
826 default: llvm_unreachable("This action is not supported yet!");
875 default: llvm_unreachable("This action is not supported yet!");
1045 default: llvm_unreachable("This action is not supported yet!");
1152 // Figure out the correct action; the way to query this varies by opcode
1153 TargetLowering::LegalizeAction Action = TargetLowering::Legal;
1160 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
1163 Action = TLI.getOperationAction(Node->getOpcode(),
1165 if (Action != TargetLowering::Promote)
1166 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
1171 Action = TLI.getOperationAction(Node->getOpcode(),
1177 Action = TLI.getOperationAction(Node->getOpcode(), InnerType);
1181 Action = TLI.getOperationAction(Node->getOpcode(),
1194 Action = TLI.getCondCodeAction(CCCode, OpVT);
1195 if (Action == TargetLowering::Legal) {
1197 Action = TLI.getOperationAction(Node->getOpcode(),
1200 Action = TLI.getOperationAction(Node->getOpcode(), OpVT);
1233 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1234 if (Action == TargetLowering::Legal)
1235 Action = TargetLowering::Expand;
1243 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1244 if (Action == TargetLowering::Legal)
1245 Action = TargetLowering::Custom;
1248 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1249 if (Action == TargetLowering::Expand) {
1262 Action = TargetLowering::Legal;
1264 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1315 switch (Action) {
1601 default: llvm_unreachable("Unknown condition code action!");