diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2017-12-24 01:00:08 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2017-12-24 01:00:08 +0000 | 
| commit | c7dac04c3480f3c20487f912f77343139fce2d99 (patch) | |
| tree | 21a09bce0171e27bd1e92649db9df797fa097cea /include/llvm/CodeGen/TargetLowering.h | |
| parent | 044eb2f6afba375a914ac9d8024f8f5142bb912e (diff) | |
Notes
Diffstat (limited to 'include/llvm/CodeGen/TargetLowering.h')
| -rw-r--r-- | include/llvm/CodeGen/TargetLowering.h | 11 | 
1 files changed, 7 insertions, 4 deletions
diff --git a/include/llvm/CodeGen/TargetLowering.h b/include/llvm/CodeGen/TargetLowering.h index 0fa19d09e776a..380e3b19dc80f 100644 --- a/include/llvm/CodeGen/TargetLowering.h +++ b/include/llvm/CodeGen/TargetLowering.h @@ -824,8 +824,8 @@ public:    /// also combined within this function. Currently, the minimum size check is    /// performed in findJumpTable() in SelectionDAGBuiler and    /// getEstimatedNumberOfCaseClusters() in BasicTTIImpl. -  bool isSuitableForJumpTable(const SwitchInst *SI, uint64_t NumCases, -                              uint64_t Range) const { +  virtual bool isSuitableForJumpTable(const SwitchInst *SI, uint64_t NumCases, +                                      uint64_t Range) const {      const bool OptForSize = SI->getParent()->getParent()->optForSize();      const unsigned MinDensity = getMinimumJumpTableDensity(OptForSize);      const unsigned MaxJumpTableSize = @@ -1276,7 +1276,7 @@ public:    }    /// Return lower limit for number of blocks in a jump table. -  unsigned getMinimumJumpTableEntries() const; +  virtual unsigned getMinimumJumpTableEntries() const;    /// Return lower limit of the density in a jump table.    unsigned getMinimumJumpTableDensity(bool OptForSize) const; @@ -2429,7 +2429,7 @@ private:      PromoteToType;    /// Stores the name each libcall. -  const char *LibcallRoutineNames[RTLIB::UNKNOWN_LIBCALL]; +  const char *LibcallRoutineNames[RTLIB::UNKNOWN_LIBCALL + 1];    /// The ISD::CondCode that should be used to test the result of each of the    /// comparison libcall against zero. @@ -2438,6 +2438,9 @@ private:    /// Stores the CallingConv that should be used for each libcall.    CallingConv::ID LibcallCallingConvs[RTLIB::UNKNOWN_LIBCALL]; +  /// Set default libcall names and calling conventions. +  void InitLibcalls(const Triple &TT); +  protected:    /// Return true if the extension represented by \p I is free.    /// \pre \p I is a sign, zero, or fp extension and  | 
