2016-11-11 09:27:37 +01:00
|
|
|
//===- ARMLegalizerInfo ------------------------------------------*- C++ -*-==//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
/// \file
|
|
|
|
/// This file declares the targeting of the Machinelegalizer class for ARM.
|
|
|
|
/// \todo This should be generated by TableGen.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_LIB_TARGET_ARM_ARMMACHINELEGALIZER_H
|
|
|
|
#define LLVM_LIB_TARGET_ARM_ARMMACHINELEGALIZER_H
|
|
|
|
|
2017-07-06 11:09:33 +02:00
|
|
|
#include "llvm/ADT/IndexedMap.h"
|
2016-11-11 09:27:37 +01:00
|
|
|
#include "llvm/CodeGen/GlobalISel/LegalizerInfo.h"
|
2017-07-06 11:09:33 +02:00
|
|
|
#include "llvm/CodeGen/RuntimeLibcalls.h"
|
|
|
|
#include "llvm/IR/Instructions.h"
|
2016-11-11 09:27:37 +01:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2017-02-17 12:25:17 +01:00
|
|
|
class ARMSubtarget;
|
2016-11-11 09:27:37 +01:00
|
|
|
|
|
|
|
/// This class provides the information for the target register banks.
|
|
|
|
class ARMLegalizerInfo : public LegalizerInfo {
|
|
|
|
public:
|
2017-02-17 12:25:17 +01:00
|
|
|
ARMLegalizerInfo(const ARMSubtarget &ST);
|
2017-04-24 11:12:19 +02:00
|
|
|
|
|
|
|
bool legalizeCustom(MachineInstr &MI, MachineRegisterInfo &MRI,
|
|
|
|
MachineIRBuilder &MIRBuilder) const override;
|
2017-07-06 11:09:33 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
void setFCmpLibcallsGNU();
|
|
|
|
void setFCmpLibcallsAEABI();
|
|
|
|
|
|
|
|
struct FCmpLibcallInfo {
|
|
|
|
// Which libcall this is.
|
|
|
|
RTLIB::Libcall LibcallID;
|
|
|
|
|
|
|
|
// The predicate to be used when comparing the value returned by the
|
|
|
|
// function with a relevant constant (currently hard-coded to zero). This is
|
|
|
|
// necessary because often the libcall will return e.g. a value greater than
|
|
|
|
// 0 to represent 'true' and anything negative to represent 'false', or
|
|
|
|
// maybe 0 to represent 'true' and non-zero for 'false'. If no comparison is
|
|
|
|
// needed, this should be CmpInst::BAD_ICMP_PREDICATE.
|
|
|
|
CmpInst::Predicate Predicate;
|
|
|
|
};
|
|
|
|
using FCmpLibcallsList = SmallVector<FCmpLibcallInfo, 2>;
|
|
|
|
|
|
|
|
// Map from each FCmp predicate to the corresponding libcall infos. A FCmp
|
|
|
|
// instruction may be lowered to one or two libcalls, which is why we need a
|
|
|
|
// list. If two libcalls are needed, their results will be OR'ed.
|
|
|
|
using FCmpLibcallsMapTy = IndexedMap<FCmpLibcallsList>;
|
|
|
|
|
|
|
|
FCmpLibcallsMapTy FCmp32Libcalls;
|
2017-07-11 10:50:01 +02:00
|
|
|
FCmpLibcallsMapTy FCmp64Libcalls;
|
2017-07-06 11:09:33 +02:00
|
|
|
|
2017-07-11 10:50:01 +02:00
|
|
|
// Get the libcall(s) corresponding to \p Predicate for operands of \p Size
|
|
|
|
// bits.
|
|
|
|
FCmpLibcallsList getFCmpLibcalls(CmpInst::Predicate, unsigned Size) const;
|
2016-11-11 09:27:37 +01:00
|
|
|
};
|
|
|
|
} // End llvm namespace.
|
|
|
|
#endif
|