mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-12 13:30:51 +00:00
Sort includes for all of the .h files under the 'lib' tree. These were
missed in the first pass because the script didn't yet handle include guards. Note that the script is now able to handle all of these headers without manual edits. =] git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169224 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e6f2df9610
commit
a1514e24cc
@ -14,10 +14,9 @@
|
||||
#ifndef LIB_ARCHIVE_ARCHIVEINTERNALS_H
|
||||
#define LIB_ARCHIVE_ARCHIVEINTERNALS_H
|
||||
|
||||
#include "llvm/ADT/StringExtras.h"
|
||||
#include "llvm/Bitcode/Archive.h"
|
||||
#include "llvm/Support/TimeValue.h"
|
||||
#include "llvm/ADT/StringExtras.h"
|
||||
|
||||
#include <cstring>
|
||||
|
||||
#define ARFILE_MAGIC "!<arch>\n" ///< magic string
|
||||
|
@ -15,8 +15,8 @@
|
||||
#define LIB_ASMPARSER_LLLEXER_H
|
||||
|
||||
#include "LLToken.h"
|
||||
#include "llvm/ADT/APSInt.h"
|
||||
#include "llvm/ADT/APFloat.h"
|
||||
#include "llvm/ADT/APSInt.h"
|
||||
#include "llvm/Support/SourceMgr.h"
|
||||
#include <string>
|
||||
|
||||
|
@ -15,14 +15,14 @@
|
||||
#define LLVM_ASMPARSER_LLPARSER_H
|
||||
|
||||
#include "LLLexer.h"
|
||||
#include "llvm/ADT/DenseMap.h"
|
||||
#include "llvm/ADT/StringMap.h"
|
||||
#include "llvm/Attributes.h"
|
||||
#include "llvm/Instructions.h"
|
||||
#include "llvm/Module.h"
|
||||
#include "llvm/Operator.h"
|
||||
#include "llvm/Type.h"
|
||||
#include "llvm/ADT/DenseMap.h"
|
||||
#include "llvm/ADT/StringMap.h"
|
||||
#include "llvm/Support/ValueHandle.h"
|
||||
#include "llvm/Type.h"
|
||||
#include <map>
|
||||
|
||||
namespace llvm {
|
||||
|
@ -14,14 +14,14 @@
|
||||
#ifndef BITCODE_READER_H
|
||||
#define BITCODE_READER_H
|
||||
|
||||
#include "llvm/GVMaterializer.h"
|
||||
#include "llvm/ADT/DenseMap.h"
|
||||
#include "llvm/Attributes.h"
|
||||
#include "llvm/Type.h"
|
||||
#include "llvm/OperandTraits.h"
|
||||
#include "llvm/Bitcode/BitstreamReader.h"
|
||||
#include "llvm/Bitcode/LLVMBitCodes.h"
|
||||
#include "llvm/GVMaterializer.h"
|
||||
#include "llvm/OperandTraits.h"
|
||||
#include "llvm/Support/ValueHandle.h"
|
||||
#include "llvm/ADT/DenseMap.h"
|
||||
#include "llvm/Type.h"
|
||||
#include <vector>
|
||||
|
||||
namespace llvm {
|
||||
|
@ -18,15 +18,15 @@
|
||||
#define LLVM_CODEGEN_AGGRESSIVEANTIDEPBREAKER_H
|
||||
|
||||
#include "AntiDepBreaker.h"
|
||||
#include "llvm/ADT/BitVector.h"
|
||||
#include "llvm/ADT/SmallSet.h"
|
||||
#include "llvm/CodeGen/MachineBasicBlock.h"
|
||||
#include "llvm/CodeGen/MachineFrameInfo.h"
|
||||
#include "llvm/CodeGen/MachineFunction.h"
|
||||
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
||||
#include "llvm/CodeGen/ScheduleDAG.h"
|
||||
#include "llvm/Target/TargetSubtargetInfo.h"
|
||||
#include "llvm/Target/TargetRegisterInfo.h"
|
||||
#include "llvm/ADT/BitVector.h"
|
||||
#include "llvm/ADT/SmallSet.h"
|
||||
#include "llvm/Target/TargetSubtargetInfo.h"
|
||||
#include <map>
|
||||
|
||||
namespace llvm {
|
||||
|
@ -20,9 +20,9 @@
|
||||
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
||||
#include "llvm/CodeGen/RegisterClassInfo.h"
|
||||
#include "llvm/CodeGen/VirtRegMap.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
|
@ -17,8 +17,8 @@
|
||||
#ifndef LLVM_CODEGEN_ALLOCATIONORDER_H
|
||||
#define LLVM_CODEGEN_ALLOCATIONORDER_H
|
||||
|
||||
#include "llvm/MC/MCRegisterInfo.h"
|
||||
#include "llvm/ADT/ArrayRef.h"
|
||||
#include "llvm/MC/MCRegisterInfo.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
|
@ -14,18 +14,18 @@
|
||||
#ifndef CODEGEN_ASMPRINTER_DWARFACCELTABLE_H__
|
||||
#define CODEGEN_ASMPRINTER_DWARFACCELTABLE_H__
|
||||
|
||||
#include "llvm/ADT/StringMap.h"
|
||||
#include "DIE.h"
|
||||
#include "llvm/ADT/ArrayRef.h"
|
||||
#include "llvm/ADT/StringMap.h"
|
||||
#include "llvm/MC/MCSymbol.h"
|
||||
#include "llvm/Support/Dwarf.h"
|
||||
#include "llvm/Support/DataTypes.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Support/Dwarf.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Support/Format.h"
|
||||
#include "llvm/Support/FormattedStream.h"
|
||||
#include "DIE.h"
|
||||
#include <vector>
|
||||
#include <map>
|
||||
#include <vector>
|
||||
|
||||
// The dwarf accelerator tables are an indirect hash table optimized
|
||||
// for null lookup rather than access to known data. They are output into
|
||||
|
@ -15,10 +15,10 @@
|
||||
#define CODEGEN_ASMPRINTER_DWARFCOMPILEUNIT_H
|
||||
|
||||
#include "DIE.h"
|
||||
#include "llvm/DebugInfo.h"
|
||||
#include "llvm/ADT/DenseMap.h"
|
||||
#include "llvm/ADT/StringMap.h"
|
||||
#include "llvm/ADT/OwningPtr.h"
|
||||
#include "llvm/ADT/StringMap.h"
|
||||
#include "llvm/DebugInfo.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
|
@ -15,15 +15,15 @@
|
||||
#define CODEGEN_ASMPRINTER_DWARFDEBUG_H__
|
||||
|
||||
#include "DIE.h"
|
||||
#include "llvm/DebugInfo.h"
|
||||
#include "llvm/CodeGen/AsmPrinter.h"
|
||||
#include "llvm/CodeGen/LexicalScopes.h"
|
||||
#include "llvm/MC/MachineLocation.h"
|
||||
#include "llvm/ADT/DenseMap.h"
|
||||
#include "llvm/ADT/FoldingSet.h"
|
||||
#include "llvm/ADT/SetVector.h"
|
||||
#include "llvm/ADT/SmallPtrSet.h"
|
||||
#include "llvm/ADT/StringMap.h"
|
||||
#include "llvm/CodeGen/AsmPrinter.h"
|
||||
#include "llvm/CodeGen/LexicalScopes.h"
|
||||
#include "llvm/DebugInfo.h"
|
||||
#include "llvm/MC/MachineLocation.h"
|
||||
#include "llvm/Support/Allocator.h"
|
||||
#include "llvm/Support/DebugLoc.h"
|
||||
|
||||
|
@ -17,13 +17,13 @@
|
||||
#define LLVM_CODEGEN_CRITICALANTIDEPBREAKER_H
|
||||
|
||||
#include "AntiDepBreaker.h"
|
||||
#include "llvm/ADT/BitVector.h"
|
||||
#include "llvm/CodeGen/MachineBasicBlock.h"
|
||||
#include "llvm/CodeGen/MachineFrameInfo.h"
|
||||
#include "llvm/CodeGen/MachineFunction.h"
|
||||
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
||||
#include "llvm/CodeGen/RegisterClassInfo.h"
|
||||
#include "llvm/CodeGen/ScheduleDAG.h"
|
||||
#include "llvm/ADT/BitVector.h"
|
||||
#include <map>
|
||||
|
||||
namespace llvm {
|
||||
|
@ -22,11 +22,11 @@
|
||||
#ifndef LLVM_CODEGEN_PEI_H
|
||||
#define LLVM_CODEGEN_PEI_H
|
||||
|
||||
#include "llvm/CodeGen/Passes.h"
|
||||
#include "llvm/ADT/DenseMap.h"
|
||||
#include "llvm/ADT/SparseBitVector.h"
|
||||
#include "llvm/CodeGen/MachineFunctionPass.h"
|
||||
#include "llvm/CodeGen/MachineLoopInfo.h"
|
||||
#include "llvm/ADT/SparseBitVector.h"
|
||||
#include "llvm/ADT/DenseMap.h"
|
||||
#include "llvm/CodeGen/Passes.h"
|
||||
#include "llvm/Target/TargetRegisterInfo.h"
|
||||
|
||||
namespace llvm {
|
||||
|
@ -37,9 +37,9 @@
|
||||
#ifndef LLVM_CODEGEN_REGALLOCBASE
|
||||
#define LLVM_CODEGEN_REGALLOCBASE
|
||||
|
||||
#include "llvm/CodeGen/RegisterClassInfo.h"
|
||||
#include "llvm/CodeGen/LiveIntervalUnion.h"
|
||||
#include "llvm/ADT/OwningPtr.h"
|
||||
#include "llvm/CodeGen/LiveIntervalUnion.h"
|
||||
#include "llvm/CodeGen/RegisterClassInfo.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
|
@ -16,9 +16,9 @@
|
||||
#ifndef INSTREMITTER_H
|
||||
#define INSTREMITTER_H
|
||||
|
||||
#include "llvm/CodeGen/SelectionDAG.h"
|
||||
#include "llvm/CodeGen/MachineBasicBlock.h"
|
||||
#include "llvm/ADT/DenseMap.h"
|
||||
#include "llvm/CodeGen/MachineBasicBlock.h"
|
||||
#include "llvm/CodeGen/SelectionDAG.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
|
@ -17,12 +17,12 @@
|
||||
#define SELECTIONDAG_LEGALIZETYPES_H
|
||||
|
||||
#define DEBUG_TYPE "legalize-types"
|
||||
#include "llvm/CodeGen/SelectionDAG.h"
|
||||
#include "llvm/Target/TargetLowering.h"
|
||||
#include "llvm/ADT/DenseMap.h"
|
||||
#include "llvm/ADT/DenseSet.h"
|
||||
#include "llvm/CodeGen/SelectionDAG.h"
|
||||
#include "llvm/Support/Compiler.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Target/TargetLowering.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
|
@ -15,8 +15,8 @@
|
||||
#define LLVM_CODEGEN_SDNODEDBGVALUE_H
|
||||
|
||||
#include "llvm/ADT/SmallVector.h"
|
||||
#include "llvm/Support/DebugLoc.h"
|
||||
#include "llvm/Support/DataTypes.h"
|
||||
#include "llvm/Support/DebugLoc.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
|
@ -14,12 +14,12 @@
|
||||
#ifndef SELECTIONDAGBUILDER_H
|
||||
#define SELECTIONDAGBUILDER_H
|
||||
|
||||
#include "llvm/Constants.h"
|
||||
#include "llvm/CodeGen/SelectionDAG.h"
|
||||
#include "llvm/ADT/APInt.h"
|
||||
#include "llvm/ADT/DenseMap.h"
|
||||
#include "llvm/CodeGen/SelectionDAG.h"
|
||||
#include "llvm/CodeGen/SelectionDAGNodes.h"
|
||||
#include "llvm/CodeGen/ValueTypes.h"
|
||||
#include "llvm/Constants.h"
|
||||
#include "llvm/Support/CallSite.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include <vector>
|
||||
|
@ -14,9 +14,9 @@
|
||||
#include "DWARFDebugAranges.h"
|
||||
#include "DWARFDebugLine.h"
|
||||
#include "DWARFDebugRangeList.h"
|
||||
#include "llvm/DebugInfo/DIContext.h"
|
||||
#include "llvm/ADT/OwningPtr.h"
|
||||
#include "llvm/ADT/SmallVector.h"
|
||||
#include "llvm/DebugInfo/DIContext.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
|
@ -14,11 +14,11 @@
|
||||
#ifndef EVENT_LISTENER_COMMON_H
|
||||
#define EVENT_LISTENER_COMMON_H
|
||||
|
||||
#include "llvm/ADT/DenseMap.h"
|
||||
#include "llvm/DebugInfo.h"
|
||||
#include "llvm/Metadata.h"
|
||||
#include "llvm/ADT/DenseMap.h"
|
||||
#include "llvm/Support/ValueHandle.h"
|
||||
#include "llvm/Support/Path.h"
|
||||
#include "llvm/Support/ValueHandle.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
|
@ -15,10 +15,10 @@
|
||||
#define LLI_INTERPRETER_H
|
||||
|
||||
#include "llvm/DataLayout.h"
|
||||
#include "llvm/Function.h"
|
||||
#include "llvm/InstVisitor.h"
|
||||
#include "llvm/ExecutionEngine/ExecutionEngine.h"
|
||||
#include "llvm/ExecutionEngine/GenericValue.h"
|
||||
#include "llvm/Function.h"
|
||||
#include "llvm/InstVisitor.h"
|
||||
#include "llvm/Support/CallSite.h"
|
||||
#include "llvm/Support/DataTypes.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
|
@ -10,10 +10,10 @@
|
||||
#ifndef LLVM_LIB_EXECUTIONENGINE_MCJIT_H
|
||||
#define LLVM_LIB_EXECUTIONENGINE_MCJIT_H
|
||||
|
||||
#include "llvm/PassManager.h"
|
||||
#include "llvm/ADT/SmallVector.h"
|
||||
#include "llvm/ExecutionEngine/ExecutionEngine.h"
|
||||
#include "llvm/ExecutionEngine/RuntimeDyld.h"
|
||||
#include "llvm/PassManager.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
|
@ -14,9 +14,9 @@
|
||||
#ifndef LLVM_RUNTIMEDYLD_OBJECTIMAGECOMMON_H
|
||||
#define LLVM_RUNTIMEDYLD_OBJECTIMAGECOMMON_H
|
||||
|
||||
#include "llvm/Object/ObjectFile.h"
|
||||
#include "llvm/ExecutionEngine/ObjectImage.h"
|
||||
#include "llvm/ExecutionEngine/ObjectBuffer.h"
|
||||
#include "llvm/ExecutionEngine/ObjectImage.h"
|
||||
#include "llvm/Object/ObjectFile.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
|
@ -14,12 +14,12 @@
|
||||
#ifndef LLVM_RUNTIME_DYLD_IMPL_H
|
||||
#define LLVM_RUNTIME_DYLD_IMPL_H
|
||||
|
||||
#include "llvm/ExecutionEngine/RuntimeDyld.h"
|
||||
#include "llvm/ExecutionEngine/ObjectImage.h"
|
||||
#include "llvm/ADT/DenseMap.h"
|
||||
#include "llvm/ADT/SmallVector.h"
|
||||
#include "llvm/ADT/StringMap.h"
|
||||
#include "llvm/ADT/Triple.h"
|
||||
#include "llvm/ExecutionEngine/ObjectImage.h"
|
||||
#include "llvm/ExecutionEngine/RuntimeDyld.h"
|
||||
#include "llvm/Object/ObjectFile.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
|
@ -14,10 +14,10 @@
|
||||
#ifndef LLVM_RUNTIME_DYLD_MACHO_H
|
||||
#define LLVM_RUNTIME_DYLD_MACHO_H
|
||||
|
||||
#include "RuntimeDyldImpl.h"
|
||||
#include "llvm/ADT/IndexedMap.h"
|
||||
#include "llvm/Object/MachOObject.h"
|
||||
#include "llvm/Support/Format.h"
|
||||
#include "RuntimeDyldImpl.h"
|
||||
|
||||
using namespace llvm;
|
||||
using namespace llvm::object;
|
||||
|
@ -18,10 +18,10 @@
|
||||
#define LLVM_MC_DISASSEMBLER_H
|
||||
|
||||
#include "llvm-c/Disassembler.h"
|
||||
#include <string>
|
||||
#include "llvm/ADT/OwningPtr.h"
|
||||
#include "llvm/ADT/SmallString.h"
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
#include <string>
|
||||
|
||||
namespace llvm {
|
||||
class MCContext;
|
||||
|
@ -17,12 +17,10 @@
|
||||
#define LLVM_EDDISASSEMBLER_H
|
||||
|
||||
#include "EDInfo.h"
|
||||
|
||||
#include "llvm/ADT/OwningPtr.h"
|
||||
#include "llvm/ADT/Triple.h"
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
#include "llvm/Support/Mutex.h"
|
||||
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
#include <map>
|
||||
#include <set>
|
||||
#include <string>
|
||||
|
@ -16,8 +16,8 @@
|
||||
#ifndef LLVM_EDINST_H
|
||||
#define LLVM_EDINST_H
|
||||
|
||||
#include "llvm/Support/DataTypes.h"
|
||||
#include "llvm/ADT/SmallVector.h"
|
||||
#include "llvm/Support/DataTypes.h"
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
|
@ -21,12 +21,12 @@
|
||||
|
||||
#include "llvm/Config/config.h" // Get autoconf configuration settings
|
||||
#include "llvm/Support/Errno.h"
|
||||
#include <cstdlib>
|
||||
#include <cstdio>
|
||||
#include <cstring>
|
||||
#include <cerrno>
|
||||
#include <string>
|
||||
#include <algorithm>
|
||||
#include <cerrno>
|
||||
#include <cstdio>
|
||||
#include <cstdlib>
|
||||
#include <cstring>
|
||||
#include <string>
|
||||
|
||||
#ifdef HAVE_UNISTD_H
|
||||
#include <unistd.h>
|
||||
|
@ -15,9 +15,9 @@
|
||||
#define TGLEXER_H
|
||||
|
||||
#include "llvm/Support/DataTypes.h"
|
||||
#include <cassert>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <cassert>
|
||||
|
||||
namespace llvm {
|
||||
class MemoryBuffer;
|
||||
|
@ -14,11 +14,11 @@
|
||||
#ifndef TGPARSER_H
|
||||
#define TGPARSER_H
|
||||
|
||||
#include "llvm/TableGen/Record.h"
|
||||
#include "TGLexer.h"
|
||||
#include "llvm/TableGen/Error.h"
|
||||
#include "llvm/ADT/Twine.h"
|
||||
#include "llvm/Support/SourceMgr.h"
|
||||
#include "llvm/TableGen/Error.h"
|
||||
#include "llvm/TableGen/Record.h"
|
||||
#include <map>
|
||||
|
||||
namespace llvm {
|
||||
|
@ -15,10 +15,10 @@
|
||||
#define ARMBASEINSTRUCTIONINFO_H
|
||||
|
||||
#include "ARM.h"
|
||||
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
||||
#include "llvm/Target/TargetInstrInfo.h"
|
||||
#include "llvm/ADT/DenseMap.h"
|
||||
#include "llvm/ADT/SmallSet.h"
|
||||
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
||||
#include "llvm/Target/TargetInstrInfo.h"
|
||||
|
||||
#define GET_INSTRINFO_HEADER
|
||||
#include "ARMGenInstrInfo.inc"
|
||||
|
@ -17,11 +17,11 @@
|
||||
|
||||
#include "ARM.h"
|
||||
#include "ARMSubtarget.h"
|
||||
#include "llvm/Target/TargetLowering.h"
|
||||
#include "llvm/Target/TargetRegisterInfo.h"
|
||||
#include "llvm/CodeGen/CallingConvLower.h"
|
||||
#include "llvm/CodeGen/FastISel.h"
|
||||
#include "llvm/CodeGen/SelectionDAG.h"
|
||||
#include "llvm/CodeGen/CallingConvLower.h"
|
||||
#include "llvm/Target/TargetLowering.h"
|
||||
#include "llvm/Target/TargetRegisterInfo.h"
|
||||
#include <vector>
|
||||
|
||||
namespace llvm {
|
||||
|
@ -15,12 +15,12 @@
|
||||
#define ARMJITINFO_H
|
||||
|
||||
#include "ARMMachineFunctionInfo.h"
|
||||
#include "llvm/ADT/DenseMap.h"
|
||||
#include "llvm/ADT/SmallVector.h"
|
||||
#include "llvm/CodeGen/MachineConstantPool.h"
|
||||
#include "llvm/CodeGen/MachineFunction.h"
|
||||
#include "llvm/CodeGen/MachineJumpTableInfo.h"
|
||||
#include "llvm/Target/TargetJITInfo.h"
|
||||
#include "llvm/ADT/DenseMap.h"
|
||||
#include "llvm/ADT/SmallVector.h"
|
||||
|
||||
namespace llvm {
|
||||
class ARMTargetMachine;
|
||||
|
@ -15,10 +15,10 @@
|
||||
#define ARMMACHINEFUNCTIONINFO_H
|
||||
|
||||
#include "ARMSubtarget.h"
|
||||
#include "llvm/CodeGen/MachineFunction.h"
|
||||
#include "llvm/Target/TargetRegisterInfo.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "llvm/ADT/BitVector.h"
|
||||
#include "llvm/CodeGen/MachineFunction.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "llvm/Target/TargetRegisterInfo.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
|
@ -15,9 +15,9 @@
|
||||
#define ARMSUBTARGET_H
|
||||
|
||||
#include "MCTargetDesc/ARMMCTargetDesc.h"
|
||||
#include "llvm/Target/TargetSubtargetInfo.h"
|
||||
#include "llvm/MC/MCInstrItineraries.h"
|
||||
#include "llvm/ADT/Triple.h"
|
||||
#include "llvm/MC/MCInstrItineraries.h"
|
||||
#include "llvm/Target/TargetSubtargetInfo.h"
|
||||
#include <string>
|
||||
|
||||
#define GET_SUBTARGETINFO_HEADER
|
||||
|
@ -14,20 +14,20 @@
|
||||
#ifndef ARMTARGETMACHINE_H
|
||||
#define ARMTARGETMACHINE_H
|
||||
|
||||
#include "ARMInstrInfo.h"
|
||||
#include "ARMFrameLowering.h"
|
||||
#include "ARMJITInfo.h"
|
||||
#include "ARMSubtarget.h"
|
||||
#include "ARMISelLowering.h"
|
||||
#include "ARMInstrInfo.h"
|
||||
#include "ARMJITInfo.h"
|
||||
#include "ARMSelectionDAGInfo.h"
|
||||
#include "Thumb1InstrInfo.h"
|
||||
#include "ARMSubtarget.h"
|
||||
#include "Thumb1FrameLowering.h"
|
||||
#include "Thumb1InstrInfo.h"
|
||||
#include "Thumb2InstrInfo.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "llvm/Target/TargetTransformImpl.h"
|
||||
#include "llvm/ADT/OwningPtr.h"
|
||||
#include "llvm/DataLayout.h"
|
||||
#include "llvm/MC/MCStreamer.h"
|
||||
#include "llvm/ADT/OwningPtr.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "llvm/Target/TargetTransformImpl.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
|
@ -14,8 +14,8 @@
|
||||
#ifndef CPPTARGETMACHINE_H
|
||||
#define CPPTARGETMACHINE_H
|
||||
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "llvm/DataLayout.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
|
@ -17,9 +17,9 @@
|
||||
#define LLVM_Hexagon_CODEGEN_CALLINGCONVLOWER_H
|
||||
|
||||
#include "llvm/ADT/SmallVector.h"
|
||||
#include "llvm/CodeGen/ValueTypes.h"
|
||||
#include "llvm/CodeGen/SelectionDAGNodes.h"
|
||||
#include "llvm/CodeGen/CallingConvLower.h"
|
||||
#include "llvm/CodeGen/SelectionDAGNodes.h"
|
||||
#include "llvm/CodeGen/ValueTypes.h"
|
||||
|
||||
//
|
||||
// Need to handle varargs.
|
||||
|
@ -16,9 +16,9 @@
|
||||
#define Hexagon_ISELLOWERING_H
|
||||
|
||||
#include "Hexagon.h"
|
||||
#include "llvm/Target/TargetLowering.h"
|
||||
#include "llvm/CallingConv.h"
|
||||
#include "llvm/CodeGen/CallingConvLower.h"
|
||||
#include "llvm/Target/TargetLowering.h"
|
||||
|
||||
namespace llvm {
|
||||
namespace HexagonISD {
|
||||
|
@ -16,8 +16,8 @@
|
||||
|
||||
#include "HexagonRegisterInfo.h"
|
||||
#include "MCTargetDesc/HexagonBaseInfo.h"
|
||||
#include "llvm/Target/TargetInstrInfo.h"
|
||||
#include "llvm/Target/TargetFrameLowering.h"
|
||||
#include "llvm/Target/TargetInstrInfo.h"
|
||||
|
||||
|
||||
#define GET_INSTRINFO_HEADER
|
||||
|
@ -14,8 +14,8 @@
|
||||
#ifndef HEXAGONMCINST_H
|
||||
#define HEXAGONMCINST_H
|
||||
|
||||
#include "llvm/MC/MCInst.h"
|
||||
#include "llvm/CodeGen/MachineInstr.h"
|
||||
#include "llvm/MC/MCInst.h"
|
||||
|
||||
namespace llvm {
|
||||
class HexagonMCInst: public MCInst {
|
||||
|
@ -14,6 +14,9 @@
|
||||
#ifndef HEXAGONASMPRINTER_H
|
||||
#define HEXAGONASMPRINTER_H
|
||||
|
||||
#include "llvm/ADT/OwningPtr.h"
|
||||
#include "llvm/ADT/PriorityQueue.h"
|
||||
#include "llvm/Analysis/AliasAnalysis.h"
|
||||
#include "llvm/CodeGen/LiveIntervalAnalysis.h"
|
||||
#include "llvm/CodeGen/MachineScheduler.h"
|
||||
#include "llvm/CodeGen/Passes.h"
|
||||
@ -22,14 +25,11 @@
|
||||
#include "llvm/CodeGen/ResourcePriorityQueue.h"
|
||||
#include "llvm/CodeGen/ScheduleDAGInstrs.h"
|
||||
#include "llvm/CodeGen/ScheduleHazardRecognizer.h"
|
||||
#include "llvm/Analysis/AliasAnalysis.h"
|
||||
#include "llvm/Target/TargetInstrInfo.h"
|
||||
#include "llvm/Support/CommandLine.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
#include "llvm/ADT/OwningPtr.h"
|
||||
#include "llvm/ADT/PriorityQueue.h"
|
||||
#include "llvm/Target/TargetInstrInfo.h"
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
|
@ -15,8 +15,8 @@
|
||||
#ifndef HexagonREGISTERINFO_H
|
||||
#define HexagonREGISTERINFO_H
|
||||
|
||||
#include "llvm/Target/TargetRegisterInfo.h"
|
||||
#include "llvm/MC/MachineLocation.h"
|
||||
#include "llvm/Target/TargetRegisterInfo.h"
|
||||
|
||||
#define GET_REGINFO_HEADER
|
||||
#include "HexagonGenRegisterInfo.inc"
|
||||
|
@ -14,8 +14,8 @@
|
||||
#ifndef Hexagon_SUBTARGET_H
|
||||
#define Hexagon_SUBTARGET_H
|
||||
|
||||
#include "llvm/Target/TargetSubtargetInfo.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "llvm/Target/TargetSubtargetInfo.h"
|
||||
#include <string>
|
||||
|
||||
#define GET_SUBTARGETINFO_HEADER
|
||||
|
@ -14,13 +14,13 @@
|
||||
#ifndef HexagonTARGETMACHINE_H
|
||||
#define HexagonTARGETMACHINE_H
|
||||
|
||||
#include "HexagonInstrInfo.h"
|
||||
#include "HexagonSubtarget.h"
|
||||
#include "HexagonISelLowering.h"
|
||||
#include "HexagonSelectionDAGInfo.h"
|
||||
#include "HexagonFrameLowering.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "HexagonISelLowering.h"
|
||||
#include "HexagonInstrInfo.h"
|
||||
#include "HexagonSelectionDAGInfo.h"
|
||||
#include "HexagonSubtarget.h"
|
||||
#include "llvm/DataLayout.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "llvm/Target/TargetTransformImpl.h"
|
||||
|
||||
namespace llvm {
|
||||
|
@ -17,8 +17,8 @@
|
||||
|
||||
#include "MBlaze.h"
|
||||
#include "MBlazeSubtarget.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/CodeGen/SelectionDAG.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Target/TargetLowering.h"
|
||||
|
||||
namespace llvm {
|
||||
|
@ -16,8 +16,8 @@
|
||||
|
||||
#include "llvm/ADT/DenseMap.h"
|
||||
#include "llvm/ADT/SmallVector.h"
|
||||
#include "llvm/CodeGen/MachineFunction.h"
|
||||
#include "llvm/CodeGen/MachineFrameInfo.h"
|
||||
#include "llvm/CodeGen/MachineFunction.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
|
@ -14,8 +14,8 @@
|
||||
#ifndef MBLAZESUBTARGET_H
|
||||
#define MBLAZESUBTARGET_H
|
||||
|
||||
#include "llvm/Target/TargetSubtargetInfo.h"
|
||||
#include "llvm/MC/MCInstrItineraries.h"
|
||||
#include "llvm/Target/TargetSubtargetInfo.h"
|
||||
#include <string>
|
||||
|
||||
#define GET_SUBTARGETINFO_HEADER
|
||||
|
@ -14,16 +14,16 @@
|
||||
#ifndef MBLAZE_TARGETMACHINE_H
|
||||
#define MBLAZE_TARGETMACHINE_H
|
||||
|
||||
#include "MBlazeSubtarget.h"
|
||||
#include "MBlazeInstrInfo.h"
|
||||
#include "MBlazeISelLowering.h"
|
||||
#include "MBlazeSelectionDAGInfo.h"
|
||||
#include "MBlazeIntrinsicInfo.h"
|
||||
#include "MBlazeFrameLowering.h"
|
||||
#include "llvm/MC/MCStreamer.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "MBlazeISelLowering.h"
|
||||
#include "MBlazeInstrInfo.h"
|
||||
#include "MBlazeIntrinsicInfo.h"
|
||||
#include "MBlazeSelectionDAGInfo.h"
|
||||
#include "MBlazeSubtarget.h"
|
||||
#include "llvm/DataLayout.h"
|
||||
#include "llvm/MC/MCStreamer.h"
|
||||
#include "llvm/Target/TargetFrameLowering.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "llvm/Target/TargetTransformImpl.h"
|
||||
|
||||
namespace llvm {
|
||||
|
@ -15,11 +15,11 @@
|
||||
#ifndef LLVM_TARGET_MSP430_TARGETMACHINE_H
|
||||
#define LLVM_TARGET_MSP430_TARGETMACHINE_H
|
||||
|
||||
#include "MSP430InstrInfo.h"
|
||||
#include "MSP430ISelLowering.h"
|
||||
#include "MSP430FrameLowering.h"
|
||||
#include "MSP430SelectionDAGInfo.h"
|
||||
#include "MSP430ISelLowering.h"
|
||||
#include "MSP430InstrInfo.h"
|
||||
#include "MSP430RegisterInfo.h"
|
||||
#include "MSP430SelectionDAGInfo.h"
|
||||
#include "MSP430Subtarget.h"
|
||||
#include "llvm/DataLayout.h"
|
||||
#include "llvm/Target/TargetFrameLowering.h"
|
||||
|
@ -14,8 +14,8 @@
|
||||
#ifndef MIPS16INSTRUCTIONINFO_H
|
||||
#define MIPS16INSTRUCTIONINFO_H
|
||||
|
||||
#include "MipsInstrInfo.h"
|
||||
#include "Mips16RegisterInfo.h"
|
||||
#include "MipsInstrInfo.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
|
@ -14,8 +14,8 @@
|
||||
#ifndef MIPSASMPRINTER_H
|
||||
#define MIPSASMPRINTER_H
|
||||
|
||||
#include "MipsMachineFunction.h"
|
||||
#include "MipsMCInstLower.h"
|
||||
#include "MipsMachineFunction.h"
|
||||
#include "MipsSubtarget.h"
|
||||
#include "llvm/CodeGen/AsmPrinter.h"
|
||||
#include "llvm/Support/Compiler.h"
|
||||
|
@ -15,8 +15,8 @@
|
||||
#define MIPS_MACHINE_FUNCTION_INFO_H
|
||||
|
||||
#include "MipsSubtarget.h"
|
||||
#include "llvm/CodeGen/MachineFunction.h"
|
||||
#include "llvm/CodeGen/MachineFrameInfo.h"
|
||||
#include "llvm/CodeGen/MachineFunction.h"
|
||||
#include "llvm/Target/TargetFrameLowering.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include <utility>
|
||||
|
@ -14,8 +14,8 @@
|
||||
#ifndef MIPSSUBTARGET_H
|
||||
#define MIPSSUBTARGET_H
|
||||
|
||||
#include "llvm/Target/TargetSubtargetInfo.h"
|
||||
#include "llvm/MC/MCInstrItineraries.h"
|
||||
#include "llvm/Target/TargetSubtargetInfo.h"
|
||||
#include <string>
|
||||
|
||||
#define GET_SUBTARGETINFO_HEADER
|
||||
|
@ -15,14 +15,14 @@
|
||||
#define MIPSTARGETMACHINE_H
|
||||
|
||||
#include "MipsFrameLowering.h"
|
||||
#include "MipsInstrInfo.h"
|
||||
#include "MipsISelLowering.h"
|
||||
#include "MipsInstrInfo.h"
|
||||
#include "MipsJITInfo.h"
|
||||
#include "MipsSelectionDAGInfo.h"
|
||||
#include "MipsSubtarget.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "llvm/DataLayout.h"
|
||||
#include "llvm/Target/TargetFrameLowering.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "llvm/Target/TargetTransformImpl.h"
|
||||
|
||||
namespace llvm {
|
||||
|
@ -15,11 +15,11 @@
|
||||
#ifndef LLVM_TARGET_NVPTX_H
|
||||
#define LLVM_TARGET_NVPTX_H
|
||||
|
||||
#include "llvm/Value.h"
|
||||
#include "MCTargetDesc/NVPTXBaseInfo.h"
|
||||
#include "llvm/Module.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "MCTargetDesc/NVPTXBaseInfo.h"
|
||||
#include "llvm/Value.h"
|
||||
#include <cassert>
|
||||
#include <iosfwd>
|
||||
|
||||
|
@ -15,8 +15,8 @@
|
||||
#define NVPTX_ALLOCA_HOISTING_H_
|
||||
|
||||
#include "llvm/CodeGen/MachineFunctionAnalysis.h"
|
||||
#include "llvm/Pass.h"
|
||||
#include "llvm/DataLayout.h"
|
||||
#include "llvm/Pass.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
|
@ -16,19 +16,19 @@
|
||||
#define NVPTXASMPRINTER_H
|
||||
|
||||
#include "NVPTX.h"
|
||||
#include "NVPTXTargetMachine.h"
|
||||
#include "NVPTXSubtarget.h"
|
||||
#include "llvm/Function.h"
|
||||
#include "llvm/CodeGen/AsmPrinter.h"
|
||||
#include "llvm/Support/CommandLine.h"
|
||||
#include "llvm/MC/MCAsmInfo.h"
|
||||
#include "llvm/MC/MCExpr.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "llvm/MC/MCSymbol.h"
|
||||
#include "llvm/Support/FormattedStream.h"
|
||||
#include "llvm/Target/Mangler.h"
|
||||
#include "NVPTXTargetMachine.h"
|
||||
#include "llvm/ADT/SmallString.h"
|
||||
#include "llvm/ADT/StringExtras.h"
|
||||
#include "llvm/CodeGen/AsmPrinter.h"
|
||||
#include "llvm/Function.h"
|
||||
#include "llvm/MC/MCAsmInfo.h"
|
||||
#include "llvm/MC/MCExpr.h"
|
||||
#include "llvm/MC/MCSymbol.h"
|
||||
#include "llvm/Support/CommandLine.h"
|
||||
#include "llvm/Support/FormattedStream.h"
|
||||
#include "llvm/Target/Mangler.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include <fstream>
|
||||
|
||||
// The ptx syntax and format is very different from that usually seem in a .s
|
||||
|
@ -15,9 +15,9 @@
|
||||
#ifndef NVPTX_LOWER_AGGR_COPIES_H
|
||||
#define NVPTX_LOWER_AGGR_COPIES_H
|
||||
|
||||
#include "llvm/Pass.h"
|
||||
#include "llvm/CodeGen/MachineFunctionAnalysis.h"
|
||||
#include "llvm/DataLayout.h"
|
||||
#include "llvm/Pass.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
|
@ -14,8 +14,8 @@
|
||||
#ifndef LLVM_NVPTXSECTION_H
|
||||
#define LLVM_NVPTXSECTION_H
|
||||
|
||||
#include "llvm/MC/MCSection.h"
|
||||
#include "llvm/GlobalVariable.h"
|
||||
#include "llvm/MC/MCSection.h"
|
||||
#include <vector>
|
||||
|
||||
namespace llvm {
|
||||
|
@ -15,8 +15,8 @@
|
||||
#ifndef NVPTX_SPLIT_BB_AT_BAR_H
|
||||
#define NVPTX_SPLIT_BB_AT_BAR_H
|
||||
|
||||
#include "llvm/Pass.h"
|
||||
#include "llvm/CodeGen/MachineFunctionAnalysis.h"
|
||||
#include "llvm/Pass.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
|
@ -14,8 +14,8 @@
|
||||
#ifndef NVPTXSUBTARGET_H
|
||||
#define NVPTXSUBTARGET_H
|
||||
|
||||
#include "llvm/Target/TargetSubtargetInfo.h"
|
||||
#include "NVPTX.h"
|
||||
#include "llvm/Target/TargetSubtargetInfo.h"
|
||||
|
||||
#define GET_SUBTARGETINFO_HEADER
|
||||
#include "NVPTXGenSubtargetInfo.inc"
|
||||
|
@ -15,12 +15,12 @@
|
||||
#ifndef NVPTX_TARGETMACHINE_H
|
||||
#define NVPTX_TARGETMACHINE_H
|
||||
|
||||
#include "NVPTXInstrInfo.h"
|
||||
#include "ManagedStringPool.h"
|
||||
#include "NVPTXFrameLowering.h"
|
||||
#include "NVPTXISelLowering.h"
|
||||
#include "NVPTXInstrInfo.h"
|
||||
#include "NVPTXRegisterInfo.h"
|
||||
#include "NVPTXSubtarget.h"
|
||||
#include "NVPTXFrameLowering.h"
|
||||
#include "ManagedStringPool.h"
|
||||
#include "llvm/DataLayout.h"
|
||||
#include "llvm/Target/TargetFrameLowering.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
|
@ -14,10 +14,10 @@
|
||||
#ifndef NVPTXUTILITIES_H
|
||||
#define NVPTXUTILITIES_H
|
||||
|
||||
#include "llvm/Value.h"
|
||||
#include "llvm/GlobalVariable.h"
|
||||
#include "llvm/Function.h"
|
||||
#include "llvm/GlobalVariable.h"
|
||||
#include "llvm/IntrinsicInst.h"
|
||||
#include "llvm/Value.h"
|
||||
#include <cstdarg>
|
||||
#include <set>
|
||||
#include <string>
|
||||
|
@ -15,9 +15,9 @@
|
||||
|
||||
#include "PPC.h"
|
||||
#include "PPCSubtarget.h"
|
||||
#include "llvm/ADT/STLExtras.h"
|
||||
#include "llvm/Target/TargetFrameLowering.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "llvm/ADT/STLExtras.h"
|
||||
|
||||
namespace llvm {
|
||||
class PPCSubtarget;
|
||||
|
@ -17,8 +17,8 @@
|
||||
|
||||
#include "PPC.h"
|
||||
#include "PPCSubtarget.h"
|
||||
#include "llvm/Target/TargetLowering.h"
|
||||
#include "llvm/CodeGen/SelectionDAG.h"
|
||||
#include "llvm/Target/TargetLowering.h"
|
||||
|
||||
namespace llvm {
|
||||
namespace PPCISD {
|
||||
|
@ -14,8 +14,8 @@
|
||||
#ifndef POWERPC_JITINFO_H
|
||||
#define POWERPC_JITINFO_H
|
||||
|
||||
#include "llvm/Target/TargetJITInfo.h"
|
||||
#include "llvm/CodeGen/JITCodeEmitter.h"
|
||||
#include "llvm/Target/TargetJITInfo.h"
|
||||
|
||||
namespace llvm {
|
||||
class PPCTargetMachine;
|
||||
|
@ -14,9 +14,9 @@
|
||||
#ifndef POWERPCSUBTARGET_H
|
||||
#define POWERPCSUBTARGET_H
|
||||
|
||||
#include "llvm/Target/TargetSubtargetInfo.h"
|
||||
#include "llvm/MC/MCInstrItineraries.h"
|
||||
#include "llvm/ADT/Triple.h"
|
||||
#include "llvm/MC/MCInstrItineraries.h"
|
||||
#include "llvm/Target/TargetSubtargetInfo.h"
|
||||
#include <string>
|
||||
|
||||
#define GET_SUBTARGETINFO_HEADER
|
||||
|
@ -15,14 +15,14 @@
|
||||
#define PPC_TARGETMACHINE_H
|
||||
|
||||
#include "PPCFrameLowering.h"
|
||||
#include "PPCSubtarget.h"
|
||||
#include "PPCJITInfo.h"
|
||||
#include "PPCInstrInfo.h"
|
||||
#include "PPCISelLowering.h"
|
||||
#include "PPCInstrInfo.h"
|
||||
#include "PPCJITInfo.h"
|
||||
#include "PPCSelectionDAGInfo.h"
|
||||
#include "PPCSubtarget.h"
|
||||
#include "llvm/DataLayout.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "llvm/Target/TargetTransformImpl.h"
|
||||
#include "llvm/DataLayout.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
|
@ -14,14 +14,14 @@
|
||||
#ifndef SPARCTARGETMACHINE_H
|
||||
#define SPARCTARGETMACHINE_H
|
||||
|
||||
#include "SparcInstrInfo.h"
|
||||
#include "SparcISelLowering.h"
|
||||
#include "SparcFrameLowering.h"
|
||||
#include "SparcISelLowering.h"
|
||||
#include "SparcInstrInfo.h"
|
||||
#include "SparcSelectionDAGInfo.h"
|
||||
#include "SparcSubtarget.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "llvm/DataLayout.h"
|
||||
#include "llvm/Target/TargetFrameLowering.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "llvm/Target/TargetTransformImpl.h"
|
||||
|
||||
namespace llvm {
|
||||
|
@ -15,8 +15,8 @@
|
||||
#define X86COFF_MACHINEMODULEINFO_H
|
||||
|
||||
#include "X86MachineFunctionInfo.h"
|
||||
#include "llvm/CodeGen/MachineModuleInfo.h"
|
||||
#include "llvm/ADT/DenseSet.h"
|
||||
#include "llvm/CodeGen/MachineModuleInfo.h"
|
||||
|
||||
namespace llvm {
|
||||
class X86MachineFunctionInfo;
|
||||
|
@ -15,15 +15,15 @@
|
||||
#ifndef X86ISELLOWERING_H
|
||||
#define X86ISELLOWERING_H
|
||||
|
||||
#include "X86Subtarget.h"
|
||||
#include "X86RegisterInfo.h"
|
||||
#include "X86MachineFunctionInfo.h"
|
||||
#include "llvm/Target/TargetLowering.h"
|
||||
#include "llvm/Target/TargetTransformImpl.h"
|
||||
#include "llvm/Target/TargetOptions.h"
|
||||
#include "X86RegisterInfo.h"
|
||||
#include "X86Subtarget.h"
|
||||
#include "llvm/CodeGen/CallingConvLower.h"
|
||||
#include "llvm/CodeGen/FastISel.h"
|
||||
#include "llvm/CodeGen/SelectionDAG.h"
|
||||
#include "llvm/CodeGen/CallingConvLower.h"
|
||||
#include "llvm/Target/TargetLowering.h"
|
||||
#include "llvm/Target/TargetOptions.h"
|
||||
#include "llvm/Target/TargetTransformImpl.h"
|
||||
|
||||
namespace llvm {
|
||||
namespace X86ISD {
|
||||
|
@ -14,8 +14,8 @@
|
||||
#ifndef X86JITINFO_H
|
||||
#define X86JITINFO_H
|
||||
|
||||
#include "llvm/Function.h"
|
||||
#include "llvm/CodeGen/JITCodeEmitter.h"
|
||||
#include "llvm/Function.h"
|
||||
#include "llvm/Target/TargetJITInfo.h"
|
||||
|
||||
namespace llvm {
|
||||
|
@ -14,8 +14,8 @@
|
||||
#ifndef X86SUBTARGET_H
|
||||
#define X86SUBTARGET_H
|
||||
|
||||
#include "llvm/CallingConv.h"
|
||||
#include "llvm/ADT/Triple.h"
|
||||
#include "llvm/CallingConv.h"
|
||||
#include "llvm/Target/TargetSubtargetInfo.h"
|
||||
#include <string>
|
||||
|
||||
|
@ -15,15 +15,15 @@
|
||||
#define X86TARGETMACHINE_H
|
||||
|
||||
#include "X86.h"
|
||||
#include "X86InstrInfo.h"
|
||||
#include "X86ISelLowering.h"
|
||||
#include "X86FrameLowering.h"
|
||||
#include "X86ISelLowering.h"
|
||||
#include "X86InstrInfo.h"
|
||||
#include "X86JITInfo.h"
|
||||
#include "X86SelectionDAGInfo.h"
|
||||
#include "X86Subtarget.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "llvm/DataLayout.h"
|
||||
#include "llvm/Target/TargetFrameLowering.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "llvm/Target/TargetTransformImpl.h"
|
||||
|
||||
namespace llvm {
|
||||
|
@ -11,8 +11,8 @@
|
||||
#define LLVM_TARGET_X86_TARGETOBJECTFILE_H
|
||||
|
||||
#include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "llvm/Target/TargetLoweringObjectFile.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
|
@ -14,8 +14,8 @@
|
||||
#ifndef XCOREMACHINEFUNCTIONINFO_H
|
||||
#define XCOREMACHINEFUNCTIONINFO_H
|
||||
|
||||
#include "llvm/CodeGen/MachineFunction.h"
|
||||
#include "llvm/CodeGen/MachineFrameInfo.h"
|
||||
#include "llvm/CodeGen/MachineFunction.h"
|
||||
#include <vector>
|
||||
|
||||
namespace llvm {
|
||||
|
@ -14,8 +14,8 @@
|
||||
#ifndef XCORESUBTARGET_H
|
||||
#define XCORESUBTARGET_H
|
||||
|
||||
#include "llvm/Target/TargetSubtargetInfo.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "llvm/Target/TargetSubtargetInfo.h"
|
||||
#include <string>
|
||||
|
||||
#define GET_SUBTARGETINFO_HEADER
|
||||
|
@ -15,13 +15,13 @@
|
||||
#define XCORETARGETMACHINE_H
|
||||
|
||||
#include "XCoreFrameLowering.h"
|
||||
#include "XCoreSubtarget.h"
|
||||
#include "XCoreInstrInfo.h"
|
||||
#include "XCoreISelLowering.h"
|
||||
#include "XCoreInstrInfo.h"
|
||||
#include "XCoreSelectionDAGInfo.h"
|
||||
#include "XCoreSubtarget.h"
|
||||
#include "llvm/DataLayout.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "llvm/Target/TargetTransformImpl.h"
|
||||
#include "llvm/DataLayout.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
|
@ -11,12 +11,12 @@
|
||||
#define INSTCOMBINE_INSTCOMBINE_H
|
||||
|
||||
#include "InstCombineWorklist.h"
|
||||
#include "llvm/Analysis/ValueTracking.h"
|
||||
#include "llvm/IRBuilder.h"
|
||||
#include "llvm/InstVisitor.h"
|
||||
#include "llvm/IntrinsicInst.h"
|
||||
#include "llvm/Operator.h"
|
||||
#include "llvm/Pass.h"
|
||||
#include "llvm/Analysis/ValueTracking.h"
|
||||
#include "llvm/Support/TargetFolder.h"
|
||||
#include "llvm/Transforms/Utils/SimplifyLibCalls.h"
|
||||
|
||||
|
@ -11,11 +11,11 @@
|
||||
#define INSTCOMBINE_WORKLIST_H
|
||||
|
||||
#define DEBUG_TYPE "instcombine"
|
||||
#include "llvm/Instruction.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Support/Compiler.h"
|
||||
#include "llvm/ADT/SmallVector.h"
|
||||
#include "llvm/ADT/DenseMap.h"
|
||||
#include "llvm/ADT/SmallVector.h"
|
||||
#include "llvm/Instruction.h"
|
||||
#include "llvm/Support/Compiler.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
|
||||
namespace llvm {
|
||||
|
@ -15,10 +15,10 @@
|
||||
#ifndef LLVM_ANALYSIS_MAXIMUMSPANNINGTREE_H
|
||||
#define LLVM_ANALYSIS_MAXIMUMSPANNINGTREE_H
|
||||
|
||||
#include "llvm/BasicBlock.h"
|
||||
#include "llvm/ADT/EquivalenceClasses.h"
|
||||
#include <vector>
|
||||
#include "llvm/BasicBlock.h"
|
||||
#include <algorithm>
|
||||
#include <vector>
|
||||
|
||||
namespace llvm {
|
||||
|
||||
|
@ -15,8 +15,8 @@
|
||||
#ifndef LLVM_ATTRIBUTESIMPL_H
|
||||
#define LLVM_ATTRIBUTESIMPL_H
|
||||
|
||||
#include "llvm/Attributes.h"
|
||||
#include "llvm/ADT/FoldingSet.h"
|
||||
#include "llvm/Attributes.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
|
@ -15,22 +15,22 @@
|
||||
#ifndef LLVM_LLVMCONTEXT_IMPL_H
|
||||
#define LLVM_LLVMCONTEXT_IMPL_H
|
||||
|
||||
#include "llvm/LLVMContext.h"
|
||||
#include "AttributesImpl.h"
|
||||
#include "ConstantsContext.h"
|
||||
#include "LeaksContext.h"
|
||||
#include "llvm/Constants.h"
|
||||
#include "llvm/DerivedTypes.h"
|
||||
#include "llvm/Metadata.h"
|
||||
#include "llvm/Support/ValueHandle.h"
|
||||
#include "llvm/ADT/APFloat.h"
|
||||
#include "llvm/ADT/APInt.h"
|
||||
#include "llvm/ADT/ArrayRef.h"
|
||||
#include "llvm/ADT/DenseMap.h"
|
||||
#include "llvm/ADT/FoldingSet.h"
|
||||
#include "llvm/ADT/Hashing.h"
|
||||
#include "llvm/ADT/SmallPtrSet.h"
|
||||
#include "llvm/ADT/StringMap.h"
|
||||
#include "llvm/ADT/Hashing.h"
|
||||
#include "llvm/Constants.h"
|
||||
#include "llvm/DerivedTypes.h"
|
||||
#include "llvm/LLVMContext.h"
|
||||
#include "llvm/Metadata.h"
|
||||
#include "llvm/Support/ValueHandle.h"
|
||||
#include <vector>
|
||||
|
||||
namespace llvm {
|
||||
|
Loading…
Reference in New Issue
Block a user