You've already forked linux-packaging-mono
acceptance-tests
data
debian
docs
external
Newtonsoft.Json
api-doc-tools
api-snapshot
aspnetwebstack
binary-reference-assemblies
bockbuild
boringssl
cecil
cecil-legacy
corefx
corert
helix-binaries
ikdasm
ikvm
illinker-test-assets
linker
llvm
bindings
cmake
docs
examples
include
lib
Analysis
AsmParser
BinaryFormat
Bitcode
CodeGen
DebugInfo
Demangle
ExecutionEngine
FuzzMutate
Fuzzer
IR
IRReader
LTO
LineEditor
Linker
MC
Object
ObjectYAML
Option
Passes
ProfileData
Support
TableGen
Target
AArch64
AMDGPU
ARC
ARM
AVR
BPF
Hexagon
Lanai
MSP430
Mips
NVPTX
Nios2
PowerPC
RISCV
Sparc
AsmParser
Disassembler
InstPrinter
MCTargetDesc
TargetInfo
CMakeLists.txt
DelaySlotFiller.cpp
LLVMBuild.txt
LeonFeatures.td
LeonPasses.cpp
LeonPasses.h
README.txt
Sparc.h
Sparc.td
SparcAsmPrinter.cpp
SparcCallingConv.td
SparcFrameLowering.cpp
SparcFrameLowering.h
SparcISelDAGToDAG.cpp
SparcISelLowering.cpp.REMOVED.git-id
SparcISelLowering.h
SparcInstr64Bit.td
SparcInstrAliases.td
SparcInstrFormats.td
SparcInstrInfo.cpp
SparcInstrInfo.h
SparcInstrInfo.td
SparcInstrVIS.td
SparcMCInstLower.cpp
SparcMachineFunctionInfo.cpp
SparcMachineFunctionInfo.h
SparcRegisterInfo.cpp
SparcRegisterInfo.h
SparcRegisterInfo.td
SparcSchedule.td
SparcSubtarget.cpp
SparcSubtarget.h
SparcTargetMachine.cpp
SparcTargetMachine.h
SparcTargetObjectFile.cpp
SparcTargetObjectFile.h
SparcTargetStreamer.h
SystemZ
WebAssembly
X86
XCore
CMakeLists.txt
LLVMBuild.txt
README.txt
Target.cpp
TargetIntrinsicInfo.cpp
TargetLoweringObjectFile.cpp
TargetMachine.cpp
TargetMachineC.cpp
Testing
ToolDrivers
Transforms
WindowsManifest
XRay
CMakeLists.txt
LLVMBuild.txt
projects
resources
runtimes
scripts
test
tools
unittests
utils
.arcconfig
.clang-format
.clang-tidy
.gitattributes
.gitignore
CMakeLists.txt
CODE_OWNERS.TXT
CREDITS.TXT
LICENSE.TXT
LLVMBuild.txt
README.txt
RELEASE_TESTERS.TXT
configure
llvm.spec.in
nuget-buildtasks
nunit-lite
roslyn-binaries
rx
xunit-binaries
ikvm-native
libgc
llvm
m4
man
mcs
mk
mono
msvc
po
runtime
samples
scripts
support
tools
COPYING.LIB
LICENSE
Makefile.am
Makefile.in
NEWS
README.md
acinclude.m4
aclocal.m4
autogen.sh
code_of_conduct.md
compile
config.guess
config.h.in
config.rpath
config.sub
configure.REMOVED.git-id
configure.ac.REMOVED.git-id
depcomp
install-sh
ltmain.sh.REMOVED.git-id
missing
mkinstalldirs
mono-uninstalled.pc.in
test-driver
winconfig.h
109 lines
3.3 KiB
C++
109 lines
3.3 KiB
C++
![]() |
//===-- SparcMCInstLower.cpp - Convert Sparc MachineInstr to MCInst -------===//
|
||
|
//
|
||
|
// The LLVM Compiler Infrastructure
|
||
|
//
|
||
|
// This file is distributed under the University of Illinois Open Source
|
||
|
// License. See LICENSE.TXT for details.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
//
|
||
|
// This file contains code to lower Sparc MachineInstrs to their corresponding
|
||
|
// MCInst records.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
#include "MCTargetDesc/SparcMCExpr.h"
|
||
|
#include "Sparc.h"
|
||
|
#include "llvm/CodeGen/AsmPrinter.h"
|
||
|
#include "llvm/CodeGen/MachineFunction.h"
|
||
|
#include "llvm/CodeGen/MachineInstr.h"
|
||
|
#include "llvm/CodeGen/MachineOperand.h"
|
||
|
#include "llvm/IR/Mangler.h"
|
||
|
#include "llvm/MC/MCAsmInfo.h"
|
||
|
#include "llvm/MC/MCContext.h"
|
||
|
#include "llvm/MC/MCExpr.h"
|
||
|
#include "llvm/MC/MCInst.h"
|
||
|
|
||
|
using namespace llvm;
|
||
|
|
||
|
|
||
|
static MCOperand LowerSymbolOperand(const MachineInstr *MI,
|
||
|
const MachineOperand &MO,
|
||
|
AsmPrinter &AP) {
|
||
|
|
||
|
SparcMCExpr::VariantKind Kind =
|
||
|
(SparcMCExpr::VariantKind)MO.getTargetFlags();
|
||
|
const MCSymbol *Symbol = nullptr;
|
||
|
|
||
|
switch(MO.getType()) {
|
||
|
default: llvm_unreachable("Unknown type in LowerSymbolOperand");
|
||
|
case MachineOperand::MO_MachineBasicBlock:
|
||
|
Symbol = MO.getMBB()->getSymbol();
|
||
|
break;
|
||
|
|
||
|
case MachineOperand::MO_GlobalAddress:
|
||
|
Symbol = AP.getSymbol(MO.getGlobal());
|
||
|
break;
|
||
|
|
||
|
case MachineOperand::MO_BlockAddress:
|
||
|
Symbol = AP.GetBlockAddressSymbol(MO.getBlockAddress());
|
||
|
break;
|
||
|
|
||
|
case MachineOperand::MO_ExternalSymbol:
|
||
|
Symbol = AP.GetExternalSymbolSymbol(MO.getSymbolName());
|
||
|
break;
|
||
|
|
||
|
case MachineOperand::MO_ConstantPoolIndex:
|
||
|
Symbol = AP.GetCPISymbol(MO.getIndex());
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
const MCSymbolRefExpr *MCSym = MCSymbolRefExpr::create(Symbol,
|
||
|
AP.OutContext);
|
||
|
const SparcMCExpr *expr = SparcMCExpr::create(Kind, MCSym,
|
||
|
AP.OutContext);
|
||
|
return MCOperand::createExpr(expr);
|
||
|
}
|
||
|
|
||
|
static MCOperand LowerOperand(const MachineInstr *MI,
|
||
|
const MachineOperand &MO,
|
||
|
AsmPrinter &AP) {
|
||
|
switch(MO.getType()) {
|
||
|
default: llvm_unreachable("unknown operand type"); break;
|
||
|
case MachineOperand::MO_Register:
|
||
|
if (MO.isImplicit())
|
||
|
break;
|
||
|
return MCOperand::createReg(MO.getReg());
|
||
|
|
||
|
case MachineOperand::MO_Immediate:
|
||
|
return MCOperand::createImm(MO.getImm());
|
||
|
|
||
|
case MachineOperand::MO_MachineBasicBlock:
|
||
|
case MachineOperand::MO_GlobalAddress:
|
||
|
case MachineOperand::MO_BlockAddress:
|
||
|
case MachineOperand::MO_ExternalSymbol:
|
||
|
case MachineOperand::MO_ConstantPoolIndex:
|
||
|
return LowerSymbolOperand(MI, MO, AP);
|
||
|
|
||
|
case MachineOperand::MO_RegisterMask: break;
|
||
|
|
||
|
}
|
||
|
return MCOperand();
|
||
|
}
|
||
|
|
||
|
void llvm::LowerSparcMachineInstrToMCInst(const MachineInstr *MI,
|
||
|
MCInst &OutMI,
|
||
|
AsmPrinter &AP)
|
||
|
{
|
||
|
|
||
|
OutMI.setOpcode(MI->getOpcode());
|
||
|
|
||
|
for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
|
||
|
const MachineOperand &MO = MI->getOperand(i);
|
||
|
MCOperand MCOp = LowerOperand(MI, MO, AP);
|
||
|
|
||
|
if (MCOp.isValid())
|
||
|
OutMI.addOperand(MCOp);
|
||
|
}
|
||
|
}
|