2011-12-12 21:14:40 +00:00
|
|
|
//=-- Hexagon.h - Top-level interface for Hexagon representation --*- C++ -*-=//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the entry points for global functions defined in the LLVM
|
|
|
|
// Hexagon back-end.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-13 16:26:38 +00:00
|
|
|
#ifndef LLVM_LIB_TARGET_HEXAGON_HEXAGON_H
|
|
|
|
#define LLVM_LIB_TARGET_HEXAGON_HEXAGON_H
|
2011-12-12 21:14:40 +00:00
|
|
|
|
2015-06-15 19:05:35 +00:00
|
|
|
#include "MCTargetDesc/HexagonMCTargetDesc.h"
|
2017-11-17 01:07:10 +00:00
|
|
|
#include "llvm/CodeGen/TargetLowering.h"
|
2015-06-15 19:05:35 +00:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
class HexagonTargetMachine;
|
|
|
|
|
2018-05-01 15:54:18 +00:00
|
|
|
/// Creates a Hexagon-specific Target Transformation Info pass.
|
2015-06-15 19:05:35 +00:00
|
|
|
ImmutablePass *createHexagonTargetTransformInfoPass(const HexagonTargetMachine *TM);
|
2015-06-23 09:49:53 +00:00
|
|
|
} // end namespace llvm;
|
2015-06-15 19:05:35 +00:00
|
|
|
|
2011-12-12 21:14:40 +00:00
|
|
|
#endif
|