mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
[WebAssembly] Move InstPrinter files to MCTargetDesc. NFC
For some targets, there is a circular dependency between InstPrinter and MCTargetDesc. Merging them together will fix this. For the other targets, the merging is to maintain consistency so all targets will have the same structure. llvm-svn: 360550
This commit is contained in:
parent
2ca48a0383
commit
e4f7d3295f
@ -60,6 +60,5 @@ add_llvm_target(WebAssemblyCodeGen
|
||||
|
||||
add_subdirectory(AsmParser)
|
||||
add_subdirectory(Disassembler)
|
||||
add_subdirectory(InstPrinter)
|
||||
add_subdirectory(MCTargetDesc)
|
||||
add_subdirectory(TargetInfo)
|
||||
|
@ -18,5 +18,5 @@
|
||||
type = Library
|
||||
name = WebAssemblyDisassembler
|
||||
parent = WebAssembly
|
||||
required_libraries = MCDisassembler WebAssemblyInfo WebAssemblyAsmPrinter Support
|
||||
required_libraries = MCDisassembler WebAssemblyInfo Support
|
||||
add_to_library_groups = WebAssembly
|
||||
|
@ -14,7 +14,7 @@
|
||||
///
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "InstPrinter/WebAssemblyInstPrinter.h"
|
||||
#include "MCTargetDesc/WebAssemblyInstPrinter.h"
|
||||
#include "MCTargetDesc/WebAssemblyMCTargetDesc.h"
|
||||
#include "llvm/MC/MCContext.h"
|
||||
#include "llvm/MC/MCDisassembler/MCDisassembler.h"
|
||||
|
@ -1,3 +0,0 @@
|
||||
add_llvm_library(LLVMWebAssemblyAsmPrinter
|
||||
WebAssemblyInstPrinter.cpp
|
||||
)
|
@ -1,22 +0,0 @@
|
||||
;===- ./lib/Target/WebAssembly/InstPrinter/LLVMBuild.txt -------*- Conf -*--===;
|
||||
;
|
||||
; 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
|
||||
;
|
||||
;===------------------------------------------------------------------------===;
|
||||
;
|
||||
; This is an LLVMBuild description file for the components in this subdirectory.
|
||||
;
|
||||
; For more information on the LLVMBuild system, please see:
|
||||
;
|
||||
; http://llvm.org/docs/LLVMBuild.html
|
||||
;
|
||||
;===------------------------------------------------------------------------===;
|
||||
|
||||
[component_0]
|
||||
type = Library
|
||||
name = WebAssemblyAsmPrinter
|
||||
parent = WebAssembly
|
||||
required_libraries = MC Support
|
||||
add_to_library_groups = WebAssembly
|
@ -15,7 +15,7 @@
|
||||
;===------------------------------------------------------------------------===;
|
||||
|
||||
[common]
|
||||
subdirectories = AsmParser Disassembler InstPrinter MCTargetDesc TargetInfo
|
||||
subdirectories = AsmParser Disassembler MCTargetDesc TargetInfo
|
||||
|
||||
[component_0]
|
||||
type = TargetGroup
|
||||
@ -29,5 +29,5 @@ has_disassembler = 1
|
||||
type = Library
|
||||
name = WebAssemblyCodeGen
|
||||
parent = WebAssembly
|
||||
required_libraries = Analysis AsmPrinter BinaryFormat CodeGen Core MC Scalar SelectionDAG Support Target TransformUtils WebAssemblyAsmPrinter WebAssemblyDesc WebAssemblyInfo
|
||||
required_libraries = Analysis AsmPrinter BinaryFormat CodeGen Core MC Scalar SelectionDAG Support Target TransformUtils WebAssemblyDesc WebAssemblyInfo
|
||||
add_to_library_groups = WebAssembly
|
||||
|
@ -1,5 +1,6 @@
|
||||
add_llvm_library(LLVMWebAssemblyDesc
|
||||
WebAssemblyAsmBackend.cpp
|
||||
WebAssemblyInstPrinter.cpp
|
||||
WebAssemblyMCAsmInfo.cpp
|
||||
WebAssemblyMCCodeEmitter.cpp
|
||||
WebAssemblyMCTargetDesc.cpp
|
||||
|
@ -18,5 +18,5 @@
|
||||
type = Library
|
||||
name = WebAssemblyDesc
|
||||
parent = WebAssembly
|
||||
required_libraries = MC Support WebAssemblyAsmPrinter WebAssemblyInfo
|
||||
required_libraries = MC Support WebAssemblyInfo
|
||||
add_to_library_groups = WebAssembly
|
||||
|
@ -11,7 +11,7 @@
|
||||
///
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "InstPrinter/WebAssemblyInstPrinter.h"
|
||||
#include "MCTargetDesc/WebAssemblyInstPrinter.h"
|
||||
#include "MCTargetDesc/WebAssemblyMCTargetDesc.h"
|
||||
#include "WebAssembly.h"
|
||||
#include "WebAssemblyMachineFunctionInfo.h"
|
@ -11,10 +11,10 @@
|
||||
///
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "WebAssemblyMCTargetDesc.h"
|
||||
#include "InstPrinter/WebAssemblyInstPrinter.h"
|
||||
#include "WebAssemblyMCAsmInfo.h"
|
||||
#include "WebAssemblyTargetStreamer.h"
|
||||
#include "MCTargetDesc/WebAssemblyMCTargetDesc.h"
|
||||
#include "MCTargetDesc/WebAssemblyInstPrinter.h"
|
||||
#include "MCTargetDesc/WebAssemblyMCAsmInfo.h"
|
||||
#include "MCTargetDesc/WebAssemblyTargetStreamer.h"
|
||||
#include "llvm/MC/MCInstrInfo.h"
|
||||
#include "llvm/MC/MCRegisterInfo.h"
|
||||
#include "llvm/MC/MCSubtargetInfo.h"
|
||||
|
@ -12,9 +12,9 @@
|
||||
///
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "WebAssemblyTargetStreamer.h"
|
||||
#include "InstPrinter/WebAssemblyInstPrinter.h"
|
||||
#include "WebAssemblyMCTargetDesc.h"
|
||||
#include "MCTargetDesc/WebAssemblyTargetStreamer.h"
|
||||
#include "MCTargetDesc/WebAssemblyInstPrinter.h"
|
||||
#include "MCTargetDesc/WebAssemblyMCTargetDesc.h"
|
||||
#include "llvm/MC/MCContext.h"
|
||||
#include "llvm/MC/MCSectionWasm.h"
|
||||
#include "llvm/MC/MCSubtargetInfo.h"
|
||||
|
@ -14,7 +14,7 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "WebAssemblyAsmPrinter.h"
|
||||
#include "InstPrinter/WebAssemblyInstPrinter.h"
|
||||
#include "MCTargetDesc/WebAssemblyInstPrinter.h"
|
||||
#include "MCTargetDesc/WebAssemblyMCTargetDesc.h"
|
||||
#include "MCTargetDesc/WebAssemblyTargetStreamer.h"
|
||||
#include "WebAssembly.h"
|
||||
|
Loading…
Reference in New Issue
Block a user