mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-14 16:33:28 +00:00
Tighten up some whitespace. Include SparcV9TmpInstr.h to pick up
the def. of TmpInstruction, instead of InstrSelection.h, which is dead. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15475 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
aceb7d8b97
commit
f7d4efb3ed
@ -13,7 +13,7 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "../Target/SparcV9/MachineInstrAnnot.h"
|
||||
#include "llvm/CodeGen/InstrSelection.h"
|
||||
#include "../Target/SparcV9/SparcV9TmpInstr.h"
|
||||
#include "llvm/CodeGen/MachineCodeForInstruction.h"
|
||||
#include "llvm/Instructions.h"
|
||||
#include "llvm/Type.h"
|
||||
@ -27,8 +27,7 @@ CallArgsDescriptor::CallArgsDescriptor(CallInst* _callInstr,
|
||||
? NULL : _callInstr->getCalledValue()),
|
||||
retAddrReg(_retAddrReg),
|
||||
isVarArgs(_isVarArgs),
|
||||
noPrototype(_noPrototype)
|
||||
{
|
||||
noPrototype(_noPrototype) {
|
||||
unsigned int numArgs = callInstr->getNumOperands();
|
||||
argInfoVec.reserve(numArgs);
|
||||
assert(callInstr->getOperand(0) == callInstr->getCalledValue()
|
||||
@ -41,14 +40,10 @@ CallArgsDescriptor::CallArgsDescriptor(CallInst* _callInstr,
|
||||
MachineCodeForInstruction::get(callInstr).setCallArgsDescriptor(this);
|
||||
}
|
||||
|
||||
|
||||
CallInst*
|
||||
CallArgsDescriptor::getReturnValue() const
|
||||
{
|
||||
CallInst *CallArgsDescriptor::getReturnValue() const {
|
||||
return (callInstr->getType() == Type::VoidTy? NULL : callInstr);
|
||||
}
|
||||
|
||||
|
||||
// Mechanism to get the descriptor for a CALL MachineInstr.
|
||||
// We get the LLVM CallInstr from the ret. addr. register argument
|
||||
// of the CALL MachineInstr (which is explicit operand #3 for indirect
|
||||
@ -58,8 +53,7 @@ CallArgsDescriptor::getReturnValue() const
|
||||
// This is roundabout but avoids adding a new map or annotation just
|
||||
// to keep track of CallArgsDescriptors.
|
||||
//
|
||||
CallArgsDescriptor *CallArgsDescriptor::get(const MachineInstr* MI)
|
||||
{
|
||||
CallArgsDescriptor *CallArgsDescriptor::get(const MachineInstr* MI) {
|
||||
const TmpInstruction* retAddrReg =
|
||||
cast<TmpInstruction>(isa<Function>(MI->getOperand(0).getVRegValue())
|
||||
? MI->getImplicitRef(MI->getNumImplicitRefs()-1)
|
||||
|
Loading…
x
Reference in New Issue
Block a user