Lines Matching refs:Action
722 default: llvm_unreachable("This action is not supported yet!");
830 default: llvm_unreachable("This action is not supported yet!");
879 default: llvm_unreachable("This action is not supported yet!");
1049 default: llvm_unreachable("This action is not supported yet!");
1156 // Figure out the correct action; the way to query this varies by opcode
1157 TargetLowering::LegalizeAction Action = TargetLowering::Legal;
1164 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
1167 Action = TLI.getOperationAction(Node->getOpcode(),
1169 if (Action != TargetLowering::Promote)
1170 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
1175 Action = TLI.getOperationAction(Node->getOpcode(),
1181 Action = TLI.getOperationAction(Node->getOpcode(), InnerType);
1185 Action = TLI.getOperationAction(Node->getOpcode(),
1198 Action = TLI.getCondCodeAction(CCCode, OpVT);
1199 if (Action == TargetLowering::Legal) {
1201 Action = TLI.getOperationAction(Node->getOpcode(),
1204 Action = TLI.getOperationAction(Node->getOpcode(), OpVT);
1237 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1238 if (Action == TargetLowering::Legal)
1239 Action = TargetLowering::Expand;
1247 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1248 if (Action == TargetLowering::Legal)
1249 Action = TargetLowering::Custom;
1252 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1253 if (Action == TargetLowering::Expand) {
1266 Action = TargetLowering::Legal;
1268 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1319 switch (Action) {
1607 default: llvm_unreachable("Unknown condition code action!");