2017-09-13 23:15:20 +02:00
|
|
|
//==- llvm/CodeGen/SelectionDAGTargetInfo.h - SelectionDAG Info --*- C++ -*-==//
|
2010-04-16 23:12:11 +02:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2016-01-27 17:32:26 +01:00
|
|
|
// This file declares the SelectionDAGTargetInfo class, which targets can
|
2010-04-16 23:12:11 +02:00
|
|
|
// subclass to parameterize the SelectionDAG lowering and instruction
|
|
|
|
// selection process.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2016-01-27 17:32:26 +01:00
|
|
|
#ifndef LLVM_CODEGEN_SELECTIONDAGTARGETINFO_H
|
|
|
|
#define LLVM_CODEGEN_SELECTIONDAGTARGETINFO_H
|
2010-04-16 23:12:11 +02:00
|
|
|
|
2017-09-13 23:15:20 +02:00
|
|
|
#include "llvm/CodeGen/MachineMemOperand.h"
|
2010-05-11 19:31:57 +02:00
|
|
|
#include "llvm/CodeGen/SelectionDAGNodes.h"
|
2016-04-24 07:14:01 +02:00
|
|
|
#include "llvm/Support/CodeGen.h"
|
2017-09-13 23:15:20 +02:00
|
|
|
#include <utility>
|
2010-05-11 19:31:57 +02:00
|
|
|
|
2010-04-16 23:12:11 +02:00
|
|
|
namespace llvm {
|
|
|
|
|
2017-09-13 23:15:20 +02:00
|
|
|
class SelectionDAG;
|
|
|
|
|
2010-04-16 23:12:11 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2015-12-04 18:54:31 +01:00
|
|
|
/// Targets can subclass this to parameterize the
|
2010-04-16 23:12:11 +02:00
|
|
|
/// SelectionDAG lowering and instruction selection process.
|
|
|
|
///
|
2016-01-27 17:32:26 +01:00
|
|
|
class SelectionDAGTargetInfo {
|
2010-04-16 23:12:11 +02:00
|
|
|
public:
|
2016-01-27 17:32:26 +01:00
|
|
|
explicit SelectionDAGTargetInfo() = default;
|
2017-09-13 23:15:20 +02:00
|
|
|
SelectionDAGTargetInfo(const SelectionDAGTargetInfo &) = delete;
|
|
|
|
SelectionDAGTargetInfo &operator=(const SelectionDAGTargetInfo &) = delete;
|
2016-01-27 17:32:26 +01:00
|
|
|
virtual ~SelectionDAGTargetInfo();
|
2010-05-11 19:31:57 +02:00
|
|
|
|
2015-12-04 18:54:31 +01:00
|
|
|
/// Emit target-specific code that performs a memcpy.
|
|
|
|
/// This can be used by targets to provide code sequences for cases
|
2010-05-11 19:31:57 +02:00
|
|
|
/// that don't fit the target's parameters for simple loads/stores and can be
|
|
|
|
/// more efficient than using a library call. This function can return a null
|
|
|
|
/// SDValue if the target declines to use custom code and a different
|
|
|
|
/// lowering strategy should be used.
|
2014-07-23 02:42:52 +02:00
|
|
|
///
|
2010-05-11 19:31:57 +02:00
|
|
|
/// If AlwaysInline is true, the size is constant and the target should not
|
|
|
|
/// emit any calls and is strongly encouraged to attempt to emit inline code
|
|
|
|
/// even if it is beyond the usual threshold because this intrinsic is being
|
|
|
|
/// expanded in a place where calls are not feasible (e.g. within the prologue
|
|
|
|
/// for another call). If the target chooses to decline an AlwaysInline
|
|
|
|
/// request here, legalize will resort to using simple loads and stores.
|
2016-06-12 17:39:02 +02:00
|
|
|
virtual SDValue EmitTargetCodeForMemcpy(SelectionDAG &DAG, const SDLoc &dl,
|
|
|
|
SDValue Chain, SDValue Op1,
|
|
|
|
SDValue Op2, SDValue Op3,
|
|
|
|
unsigned Align, bool isVolatile,
|
|
|
|
bool AlwaysInline,
|
|
|
|
MachinePointerInfo DstPtrInfo,
|
|
|
|
MachinePointerInfo SrcPtrInfo) const {
|
2010-05-11 19:31:57 +02:00
|
|
|
return SDValue();
|
|
|
|
}
|
|
|
|
|
2015-12-04 18:54:31 +01:00
|
|
|
/// Emit target-specific code that performs a memmove.
|
|
|
|
/// This can be used by targets to provide code sequences for cases
|
2010-05-11 19:31:57 +02:00
|
|
|
/// that don't fit the target's parameters for simple loads/stores and can be
|
|
|
|
/// more efficient than using a library call. This function can return a null
|
|
|
|
/// SDValue if the target declines to use custom code and a different
|
|
|
|
/// lowering strategy should be used.
|
2016-01-27 17:32:26 +01:00
|
|
|
virtual SDValue EmitTargetCodeForMemmove(
|
2016-06-12 17:39:02 +02:00
|
|
|
SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Op1,
|
|
|
|
SDValue Op2, SDValue Op3, unsigned Align, bool isVolatile,
|
2016-01-27 17:32:26 +01:00
|
|
|
MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const {
|
2010-05-11 19:31:57 +02:00
|
|
|
return SDValue();
|
|
|
|
}
|
|
|
|
|
2015-12-04 18:54:31 +01:00
|
|
|
/// Emit target-specific code that performs a memset.
|
|
|
|
/// This can be used by targets to provide code sequences for cases
|
2010-05-11 19:31:57 +02:00
|
|
|
/// that don't fit the target's parameters for simple stores and can be more
|
|
|
|
/// efficient than using a library call. This function can return a null
|
|
|
|
/// SDValue if the target declines to use custom code and a different
|
|
|
|
/// lowering strategy should be used.
|
2016-06-12 17:39:02 +02:00
|
|
|
virtual SDValue EmitTargetCodeForMemset(SelectionDAG &DAG, const SDLoc &dl,
|
2016-01-27 17:32:26 +01:00
|
|
|
SDValue Chain, SDValue Op1,
|
|
|
|
SDValue Op2, SDValue Op3,
|
|
|
|
unsigned Align, bool isVolatile,
|
|
|
|
MachinePointerInfo DstPtrInfo) const {
|
2010-05-11 19:31:57 +02:00
|
|
|
return SDValue();
|
|
|
|
}
|
2013-08-12 12:28:10 +02:00
|
|
|
|
2015-12-04 18:54:31 +01:00
|
|
|
/// Emit target-specific code that performs a memcmp, in cases where that is
|
|
|
|
/// faster than a libcall. The first returned SDValue is the result of the
|
|
|
|
/// memcmp and the second is the chain. Both SDValues can be null if a normal
|
|
|
|
/// libcall should be used.
|
2013-08-12 12:28:10 +02:00
|
|
|
virtual std::pair<SDValue, SDValue>
|
2016-06-12 17:39:02 +02:00
|
|
|
EmitTargetCodeForMemcmp(SelectionDAG &DAG, const SDLoc &dl, SDValue Chain,
|
2016-01-27 17:32:26 +01:00
|
|
|
SDValue Op1, SDValue Op2, SDValue Op3,
|
|
|
|
MachinePointerInfo Op1PtrInfo,
|
2013-08-12 12:28:10 +02:00
|
|
|
MachinePointerInfo Op2PtrInfo) const {
|
|
|
|
return std::make_pair(SDValue(), SDValue());
|
2013-08-20 11:38:48 +02:00
|
|
|
}
|
|
|
|
|
2015-12-04 18:54:31 +01:00
|
|
|
/// Emit target-specific code that performs a memchr, in cases where that is
|
|
|
|
/// faster than a libcall. The first returned SDValue is the result of the
|
|
|
|
/// memchr and the second is the chain. Both SDValues can be null if a normal
|
|
|
|
/// libcall should be used.
|
2013-08-20 11:38:48 +02:00
|
|
|
virtual std::pair<SDValue, SDValue>
|
2016-06-12 17:39:02 +02:00
|
|
|
EmitTargetCodeForMemchr(SelectionDAG &DAG, const SDLoc &dl, SDValue Chain,
|
2013-08-20 11:38:48 +02:00
|
|
|
SDValue Src, SDValue Char, SDValue Length,
|
|
|
|
MachinePointerInfo SrcPtrInfo) const {
|
|
|
|
return std::make_pair(SDValue(), SDValue());
|
2013-08-12 12:28:10 +02:00
|
|
|
}
|
2013-08-16 13:21:54 +02:00
|
|
|
|
2015-12-04 18:54:31 +01:00
|
|
|
/// Emit target-specific code that performs a strcpy or stpcpy, in cases
|
|
|
|
/// where that is faster than a libcall.
|
2013-08-16 13:29:37 +02:00
|
|
|
/// The first returned SDValue is the result of the copy (the start
|
|
|
|
/// of the destination string for strcpy, a pointer to the null terminator
|
|
|
|
/// for stpcpy) and the second is the chain. Both SDValues can be null
|
|
|
|
/// if a normal libcall should be used.
|
|
|
|
virtual std::pair<SDValue, SDValue>
|
2016-06-12 17:39:02 +02:00
|
|
|
EmitTargetCodeForStrcpy(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain,
|
2013-08-16 13:29:37 +02:00
|
|
|
SDValue Dest, SDValue Src,
|
|
|
|
MachinePointerInfo DestPtrInfo,
|
2016-01-27 17:32:26 +01:00
|
|
|
MachinePointerInfo SrcPtrInfo, bool isStpcpy) const {
|
2013-08-16 13:29:37 +02:00
|
|
|
return std::make_pair(SDValue(), SDValue());
|
|
|
|
}
|
|
|
|
|
2015-12-04 18:54:31 +01:00
|
|
|
/// Emit target-specific code that performs a strcmp, in cases where that is
|
|
|
|
/// faster than a libcall.
|
|
|
|
/// The first returned SDValue is the result of the strcmp and the second is
|
|
|
|
/// the chain. Both SDValues can be null if a normal libcall should be used.
|
2016-06-12 17:39:02 +02:00
|
|
|
virtual std::pair<SDValue, SDValue>
|
|
|
|
EmitTargetCodeForStrcmp(SelectionDAG &DAG, const SDLoc &dl, SDValue Chain,
|
|
|
|
SDValue Op1, SDValue Op2,
|
|
|
|
MachinePointerInfo Op1PtrInfo,
|
|
|
|
MachinePointerInfo Op2PtrInfo) const {
|
2013-08-16 13:21:54 +02:00
|
|
|
return std::make_pair(SDValue(), SDValue());
|
|
|
|
}
|
2013-08-16 13:41:43 +02:00
|
|
|
|
|
|
|
virtual std::pair<SDValue, SDValue>
|
2016-06-12 17:39:02 +02:00
|
|
|
EmitTargetCodeForStrlen(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain,
|
2013-08-16 13:41:43 +02:00
|
|
|
SDValue Src, MachinePointerInfo SrcPtrInfo) const {
|
|
|
|
return std::make_pair(SDValue(), SDValue());
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual std::pair<SDValue, SDValue>
|
2016-06-12 17:39:02 +02:00
|
|
|
EmitTargetCodeForStrnlen(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain,
|
2013-08-16 13:41:43 +02:00
|
|
|
SDValue Src, SDValue MaxLength,
|
|
|
|
MachinePointerInfo SrcPtrInfo) const {
|
|
|
|
return std::make_pair(SDValue(), SDValue());
|
|
|
|
}
|
2017-09-13 23:15:20 +02:00
|
|
|
|
2016-04-24 07:14:01 +02:00
|
|
|
// Return true when the decision to generate FMA's (or FMS, FMLA etc) rather
|
|
|
|
// than FMUL and ADD is delegated to the machine combiner.
|
2016-04-27 19:27:16 +02:00
|
|
|
virtual bool generateFMAsInMachineCombiner(CodeGenOpt::Level OptLevel) const {
|
2016-04-24 07:14:01 +02:00
|
|
|
return false;
|
|
|
|
}
|
2010-04-16 23:12:11 +02:00
|
|
|
};
|
|
|
|
|
2017-09-13 23:15:20 +02:00
|
|
|
} // end namespace llvm
|
2010-04-16 23:12:11 +02:00
|
|
|
|
2017-09-13 23:15:20 +02:00
|
|
|
#endif // LLVM_CODEGEN_SELECTIONDAGTARGETINFO_H
|