2011-12-12 22:14:40 +01:00
|
|
|
//=-- Hexagon.h - Top-level interface for Hexagon representation --*- C++ -*-=//
|
|
|
|
//
|
2019-01-19 09:50:56 +01:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2011-12-12 22:14:40 +01:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the entry points for global functions defined in the LLVM
|
|
|
|
// Hexagon back-end.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-13 18:26:38 +02:00
|
|
|
#ifndef LLVM_LIB_TARGET_HEXAGON_HEXAGON_H
|
|
|
|
#define LLVM_LIB_TARGET_HEXAGON_HEXAGON_H
|
2011-12-12 22:14:40 +01:00
|
|
|
|
2015-06-15 21:05:35 +02:00
|
|
|
namespace llvm {
|
|
|
|
class HexagonTargetMachine;
|
2020-09-10 17:52:05 +02:00
|
|
|
class ImmutablePass;
|
2015-06-15 21:05:35 +02:00
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Creates a Hexagon-specific Target Transformation Info pass.
|
2015-06-15 21:05:35 +02:00
|
|
|
ImmutablePass *createHexagonTargetTransformInfoPass(const HexagonTargetMachine *TM);
|
2015-06-23 11:49:53 +02:00
|
|
|
} // end namespace llvm;
|
2015-06-15 21:05:35 +02:00
|
|
|
|
2011-12-12 22:14:40 +01:00
|
|
|
#endif
|