mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
d5a087b439
fixups yet, and doesn't handle actually encoding operand values, but this is enough for llc -show-mc-encoding to show the base instruction encoding information, e.g.: mflr r0 ; encoding: [0x7c,0x08,0x02,0xa6] stw r0, 8(r1) ; encoding: [0x90,0x00,0x00,0x00] stwu r1, -64(r1) ; encoding: [0x94,0x00,0x00,0x00] Ltmp0: lhz r4, 4(r3) ; encoding: [0xa0,0x00,0x00,0x00] cmplwi cr0, r4, 8 ; encoding: [0x28,0x00,0x00,0x00] beq cr0, LBB0_2 ; encoding: [0x40,0x00,0x00,0x00] llvm-svn: 119116
25 lines
856 B
Makefile
25 lines
856 B
Makefile
##===- lib/Target/PowerPC/Makefile -------------------------*- Makefile -*-===##
|
|
#
|
|
# The LLVM Compiler Infrastructure
|
|
#
|
|
# This file is distributed under the University of Illinois Open Source
|
|
# License. See LICENSE.TXT for details.
|
|
#
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
LEVEL = ../../..
|
|
LIBRARYNAME = LLVMPowerPCCodeGen
|
|
TARGET = PPC
|
|
|
|
# Make sure that tblgen is run, first thing.
|
|
BUILT_SOURCES = PPCGenInstrNames.inc PPCGenRegisterNames.inc \
|
|
PPCGenAsmWriter.inc PPCGenCodeEmitter.inc \
|
|
PPCGenRegisterInfo.h.inc PPCGenRegisterInfo.inc \
|
|
PPCGenInstrInfo.inc PPCGenDAGISel.inc \
|
|
PPCGenSubtarget.inc PPCGenCallingConv.inc \
|
|
PPCGenMCCodeEmitter.inc
|
|
|
|
DIRS = InstPrinter TargetInfo
|
|
|
|
include $(LEVEL)/Makefile.common
|