2011-12-13 05:14:40 +08:00
|
|
|
//=-- Hexagon.h - Top-level interface for Hexagon representation --*- C++ -*-=//
|
|
|
|
//
|
2019-01-19 16:50:56 +08: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-13 05:14:40 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the entry points for global functions defined in the LLVM
|
|
|
|
// Hexagon back-end.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-14 00:26:38 +08:00
|
|
|
#ifndef LLVM_LIB_TARGET_HEXAGON_HEXAGON_H
|
|
|
|
#define LLVM_LIB_TARGET_HEXAGON_HEXAGON_H
|
2011-12-13 05:14:40 +08:00
|
|
|
|
2015-06-16 03:05:35 +08:00
|
|
|
#include "MCTargetDesc/HexagonMCTargetDesc.h"
|
2017-11-17 09:07:10 +08:00
|
|
|
#include "llvm/CodeGen/TargetLowering.h"
|
2015-06-16 03:05:35 +08:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
class HexagonTargetMachine;
|
|
|
|
|
2018-05-01 23:54:18 +08:00
|
|
|
/// Creates a Hexagon-specific Target Transformation Info pass.
|
2015-06-16 03:05:35 +08:00
|
|
|
ImmutablePass *createHexagonTargetTransformInfoPass(const HexagonTargetMachine *TM);
|
2015-06-23 17:49:53 +08:00
|
|
|
} // end namespace llvm;
|
2015-06-16 03:05:35 +08:00
|
|
|
|
2011-12-13 05:14:40 +08:00
|
|
|
#endif
|