xref: /freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCSelectionDAGInfo.cpp (revision 700637cbb5e582861067a11aaca4d053546871d2)
1*700637cbSDimitry Andric //===----------------------------------------------------------------------===//
2*700637cbSDimitry Andric //
3*700637cbSDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*700637cbSDimitry Andric // See https://llvm.org/LICENSE.txt for license information.
5*700637cbSDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6*700637cbSDimitry Andric //
7*700637cbSDimitry Andric //===----------------------------------------------------------------------===//
8*700637cbSDimitry Andric 
9*700637cbSDimitry Andric #include "PPCSelectionDAGInfo.h"
10*700637cbSDimitry Andric #include "PPCISelLowering.h"
11*700637cbSDimitry Andric 
12*700637cbSDimitry Andric using namespace llvm;
13*700637cbSDimitry Andric 
14*700637cbSDimitry Andric PPCSelectionDAGInfo::~PPCSelectionDAGInfo() = default;
15*700637cbSDimitry Andric 
isTargetMemoryOpcode(unsigned Opcode) const16*700637cbSDimitry Andric bool PPCSelectionDAGInfo::isTargetMemoryOpcode(unsigned Opcode) const {
17*700637cbSDimitry Andric   return Opcode >= PPCISD::FIRST_MEMORY_OPCODE &&
18*700637cbSDimitry Andric          Opcode <= PPCISD::LAST_MEMORY_OPCODE;
19*700637cbSDimitry Andric }
20*700637cbSDimitry Andric 
isTargetStrictFPOpcode(unsigned Opcode) const21*700637cbSDimitry Andric bool PPCSelectionDAGInfo::isTargetStrictFPOpcode(unsigned Opcode) const {
22*700637cbSDimitry Andric   return Opcode >= PPCISD::FIRST_STRICTFP_OPCODE &&
23*700637cbSDimitry Andric          Opcode <= PPCISD::LAST_STRICTFP_OPCODE;
24*700637cbSDimitry Andric }
25