2008-05-13 09:02:57 +00:00
|
|
|
//===-- PIC16AsmPrinter.cpp - PIC16 LLVM assembly writer ------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains a printer that converts from our internal representation
|
|
|
|
// of machine-dependent LLVM code to PIC16 assembly language.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2008-11-19 11:00:54 +00:00
|
|
|
#include "PIC16AsmPrinter.h"
|
|
|
|
#include "PIC16TargetAsmInfo.h"
|
2009-02-18 23:12:06 +00:00
|
|
|
#include "llvm/DerivedTypes.h"
|
2008-11-19 11:00:54 +00:00
|
|
|
#include "llvm/Function.h"
|
2008-05-13 09:02:57 +00:00
|
|
|
#include "llvm/Module.h"
|
2009-02-18 23:12:06 +00:00
|
|
|
#include "llvm/CodeGen/DwarfWriter.h"
|
2008-05-13 09:02:57 +00:00
|
|
|
#include "llvm/CodeGen/MachineFrameInfo.h"
|
2009-02-18 23:12:06 +00:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
#include "llvm/Support/Mangler.h"
|
2008-05-13 09:02:57 +00:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
#include "PIC16GenAsmWriter.inc"
|
2009-01-13 19:18:47 +00:00
|
|
|
bool PIC16AsmPrinter::inSameBank (char *s1, char *s2){
|
|
|
|
|
|
|
|
assert (s1 && s2 && "Null pointer assignment");
|
|
|
|
|
|
|
|
if ((*s1 == '.') && (*s2 == '.')) { //skip if they both start with '.'
|
|
|
|
s1++;
|
|
|
|
s2++;
|
|
|
|
}
|
|
|
|
while (*s1 && *s2) {
|
|
|
|
if (*s1 != *s2)
|
|
|
|
goto _NotInSameBank;
|
|
|
|
|
|
|
|
if ((*s1 == '.') && (*s2 == '.')) //both symbols in same function
|
|
|
|
goto _InSameBank; //in the same bank
|
|
|
|
|
|
|
|
s1++;
|
|
|
|
s2++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*s1 && *s1) {
|
|
|
|
_InSameBank:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
_NotInSameBank:
|
|
|
|
return false;
|
|
|
|
}
|
2008-05-13 09:02:57 +00:00
|
|
|
|
2008-11-19 11:00:54 +00:00
|
|
|
bool PIC16AsmPrinter::printMachineInstruction(const MachineInstr *MI) {
|
|
|
|
std::string NewBankselLabel;
|
|
|
|
unsigned Operands = MI->getNumOperands();
|
|
|
|
if (Operands > 1) {
|
|
|
|
// Global address or external symbol should be second operand from last
|
|
|
|
// if we want to print banksel for it.
|
|
|
|
const MachineOperand &Op = MI->getOperand(Operands-2);
|
|
|
|
unsigned OpType = Op.getType();
|
|
|
|
if (OpType == MachineOperand::MO_GlobalAddress ||
|
|
|
|
OpType == MachineOperand::MO_ExternalSymbol) {
|
|
|
|
if (OpType == MachineOperand::MO_GlobalAddress )
|
|
|
|
NewBankselLabel = Mang->getValueName(Op.getGlobal());
|
|
|
|
else
|
|
|
|
NewBankselLabel = Op.getSymbolName();
|
|
|
|
|
|
|
|
// Operand after global address or external symbol should be banksel.
|
|
|
|
// Value 1 for this operand means we need to generate banksel else do not
|
|
|
|
// generate banksel.
|
|
|
|
const MachineOperand &BS = MI->getOperand(Operands-1);
|
|
|
|
if (((int)BS.getImm() == 1) &&
|
2009-01-13 19:18:47 +00:00
|
|
|
(!inSameBank ((char *)CurrentBankselLabelInBasicBlock.c_str(),
|
|
|
|
(char *)NewBankselLabel.c_str()))) {
|
2008-11-19 11:00:54 +00:00
|
|
|
CurrentBankselLabelInBasicBlock = NewBankselLabel;
|
|
|
|
O << "\tbanksel ";
|
|
|
|
printOperand(MI, Operands-2);
|
|
|
|
O << "\n";
|
|
|
|
}
|
2008-05-14 11:31:39 +00:00
|
|
|
}
|
|
|
|
}
|
2008-11-19 11:00:54 +00:00
|
|
|
printInstruction(MI);
|
|
|
|
return true;
|
2008-05-13 09:02:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// runOnMachineFunction - This uses the printInstruction()
|
|
|
|
/// method to print assembly for each instruction.
|
|
|
|
///
|
2008-11-19 11:00:54 +00:00
|
|
|
bool PIC16AsmPrinter::runOnMachineFunction(MachineFunction &MF) {
|
|
|
|
// This calls the base class function required to be called at beginning
|
|
|
|
// of runOnMachineFunction.
|
2008-05-13 09:02:57 +00:00
|
|
|
SetupMachineFunction(MF);
|
|
|
|
|
2008-11-19 11:00:54 +00:00
|
|
|
// Get the mangled name.
|
|
|
|
const Function *F = MF.getFunction();
|
|
|
|
CurrentFnName = Mang->getValueName(F);
|
2008-05-13 09:02:57 +00:00
|
|
|
|
2008-11-19 11:00:54 +00:00
|
|
|
// Emit the function variables.
|
|
|
|
emitFunctionData(MF);
|
|
|
|
std::string codeSection;
|
2009-01-13 19:18:47 +00:00
|
|
|
codeSection = "code." + CurrentFnName + ".# " + "CODE";
|
|
|
|
const Section *fCodeSection = TAI->getNamedSection(codeSection.c_str(),
|
|
|
|
SectionFlags::Code);
|
2008-11-19 11:00:54 +00:00
|
|
|
O << "\n";
|
2009-01-13 19:18:47 +00:00
|
|
|
SwitchToSection (fCodeSection);
|
2008-05-13 09:02:57 +00:00
|
|
|
|
|
|
|
// Print out code for the function.
|
|
|
|
for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
|
|
|
|
I != E; ++I) {
|
|
|
|
// Print a label for the basic block.
|
|
|
|
if (I != MF.begin()) {
|
|
|
|
printBasicBlockLabel(I, true);
|
|
|
|
O << '\n';
|
|
|
|
}
|
2008-11-19 11:00:54 +00:00
|
|
|
else
|
2008-11-26 10:53:50 +00:00
|
|
|
O << CurrentFnName << ":\n";
|
2008-11-19 11:00:54 +00:00
|
|
|
CurrentBankselLabelInBasicBlock = "";
|
2008-05-13 09:02:57 +00:00
|
|
|
for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
|
|
|
|
II != E; ++II) {
|
|
|
|
// Print the assembly for the instruction.
|
2008-11-19 11:00:54 +00:00
|
|
|
printMachineInstruction(II);
|
2008-05-13 09:02:57 +00:00
|
|
|
}
|
|
|
|
}
|
2008-11-19 11:00:54 +00:00
|
|
|
return false; // we didn't modify anything.
|
|
|
|
}
|
2008-05-13 09:02:57 +00:00
|
|
|
|
2008-11-19 11:00:54 +00:00
|
|
|
/// createPIC16CodePrinterPass - Returns a pass that prints the PIC16
|
|
|
|
/// assembly code for a MachineFunction to the given output stream,
|
|
|
|
/// using the given target machine description. This should work
|
|
|
|
/// regardless of whether the function is in SSA form.
|
|
|
|
///
|
|
|
|
FunctionPass *llvm::createPIC16CodePrinterPass(raw_ostream &o,
|
|
|
|
PIC16TargetMachine &tm) {
|
|
|
|
return new PIC16AsmPrinter(o, tm, tm.getTargetAsmInfo());
|
2008-05-13 09:02:57 +00:00
|
|
|
}
|
|
|
|
|
2008-11-19 11:00:54 +00:00
|
|
|
void PIC16AsmPrinter::printOperand(const MachineInstr *MI, int opNum) {
|
2008-05-13 09:02:57 +00:00
|
|
|
const MachineOperand &MO = MI->getOperand(opNum);
|
|
|
|
|
2008-05-14 11:31:39 +00:00
|
|
|
switch (MO.getType()) {
|
2008-05-13 09:02:57 +00:00
|
|
|
case MachineOperand::MO_Register:
|
|
|
|
if (TargetRegisterInfo::isPhysicalRegister(MO.getReg()))
|
2008-11-19 11:00:54 +00:00
|
|
|
O << TM.getRegisterInfo()->get(MO.getReg()).AsmName;
|
2008-05-13 09:02:57 +00:00
|
|
|
else
|
|
|
|
assert(0 && "not implemented");
|
2008-11-19 11:00:54 +00:00
|
|
|
return;
|
2008-05-14 11:31:39 +00:00
|
|
|
|
2008-11-19 11:00:54 +00:00
|
|
|
case MachineOperand::MO_Immediate:
|
2008-05-13 09:02:57 +00:00
|
|
|
O << (int)MO.getImm();
|
|
|
|
return;
|
2008-05-14 11:31:39 +00:00
|
|
|
|
2008-11-19 11:00:54 +00:00
|
|
|
case MachineOperand::MO_GlobalAddress:
|
|
|
|
O << Mang->getValueName(MO.getGlobal());
|
2008-05-13 09:02:57 +00:00
|
|
|
break;
|
2008-05-14 11:31:39 +00:00
|
|
|
|
2008-11-19 11:00:54 +00:00
|
|
|
case MachineOperand::MO_ExternalSymbol:
|
2008-05-13 09:02:57 +00:00
|
|
|
O << MO.getSymbolName();
|
|
|
|
break;
|
2008-05-14 11:31:39 +00:00
|
|
|
|
2009-01-13 19:18:47 +00:00
|
|
|
case MachineOperand::MO_MachineBasicBlock:
|
|
|
|
printBasicBlockLabel(MO.getMBB());
|
|
|
|
return;
|
|
|
|
|
2008-05-13 09:02:57 +00:00
|
|
|
default:
|
2008-11-19 11:00:54 +00:00
|
|
|
assert(0 && " Operand type not supported.");
|
|
|
|
}
|
2008-05-13 09:02:57 +00:00
|
|
|
}
|
|
|
|
|
2009-01-13 19:18:47 +00:00
|
|
|
void PIC16AsmPrinter::printCCOperand(const MachineInstr *MI, int opNum) {
|
|
|
|
int CC = (int)MI->getOperand(opNum).getImm();
|
|
|
|
O << PIC16CondCodeToString((PIC16CC::CondCodes)CC);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-11-19 11:00:54 +00:00
|
|
|
bool PIC16AsmPrinter::doInitialization (Module &M) {
|
|
|
|
bool Result = AsmPrinter::doInitialization(M);
|
|
|
|
// FIXME:: This is temporary solution to generate the include file.
|
|
|
|
// The processor should be passed to llc as in input and the header file
|
|
|
|
// should be generated accordingly.
|
|
|
|
O << "\t#include P16F1937.INC\n";
|
2008-11-26 10:53:50 +00:00
|
|
|
EmitExternsAndGlobals (M);
|
2008-11-19 11:00:54 +00:00
|
|
|
EmitInitData (M);
|
|
|
|
EmitUnInitData(M);
|
|
|
|
EmitRomData(M);
|
|
|
|
return Result;
|
2008-05-13 09:02:57 +00:00
|
|
|
}
|
|
|
|
|
2008-11-26 10:53:50 +00:00
|
|
|
void PIC16AsmPrinter::EmitExternsAndGlobals (Module &M) {
|
|
|
|
// Emit declarations for external functions.
|
|
|
|
O << "section.0" <<"\n";
|
|
|
|
for (Module::iterator I = M.begin(), E = M.end(); I != E; I++) {
|
|
|
|
std::string Name = Mang->getValueName(I);
|
|
|
|
if (Name.compare("abort") == 0)
|
|
|
|
continue;
|
|
|
|
if (I->isDeclaration()) {
|
|
|
|
O << "\textern " <<Name << "\n";
|
|
|
|
O << "\textern " << Name << ".retval\n";
|
|
|
|
O << "\textern " << Name << ".args\n";
|
|
|
|
}
|
|
|
|
else if (I->hasExternalLinkage()) {
|
|
|
|
O << "\tglobal " << Name << "\n";
|
|
|
|
O << "\tglobal " << Name << ".retval\n";
|
|
|
|
O << "\tglobal " << Name << ".args\n";
|
|
|
|
}
|
|
|
|
}
|
2009-01-13 19:18:47 +00:00
|
|
|
|
|
|
|
// Emit header file to include declaration of library functions
|
|
|
|
O << "\t#include C16IntrinsicCalls.INC\n";
|
|
|
|
|
2008-11-26 10:53:50 +00:00
|
|
|
// Emit declarations for external globals.
|
|
|
|
for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
|
|
|
|
I != E; I++) {
|
2009-02-10 04:20:26 +00:00
|
|
|
// Any variables reaching here with ".auto." in its name is a local scope
|
|
|
|
// variable and should not be printed in global data section.
|
2008-11-26 10:53:50 +00:00
|
|
|
std::string Name = Mang->getValueName(I);
|
2009-02-10 04:20:26 +00:00
|
|
|
if (Name.find(".auto.") != std::string::npos)
|
|
|
|
continue;
|
|
|
|
|
2008-11-26 10:53:50 +00:00
|
|
|
if (I->isDeclaration())
|
|
|
|
O << "\textern "<< Name << "\n";
|
2009-02-10 04:20:26 +00:00
|
|
|
else if (I->hasCommonLinkage() || I->hasExternalLinkage())
|
2009-02-06 18:24:59 +00:00
|
|
|
O << "\tglobal "<< Name << "\n";
|
2008-11-26 10:53:50 +00:00
|
|
|
}
|
|
|
|
}
|
2009-02-10 04:20:26 +00:00
|
|
|
|
2008-11-26 10:53:50 +00:00
|
|
|
void PIC16AsmPrinter::EmitInitData (Module &M) {
|
2009-01-13 19:18:47 +00:00
|
|
|
SwitchToSection(TAI->getDataSection());
|
2008-11-19 11:00:54 +00:00
|
|
|
for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
|
|
|
|
I != E; ++I) {
|
|
|
|
if (!I->hasInitializer()) // External global require no code.
|
|
|
|
continue;
|
2008-05-13 09:02:57 +00:00
|
|
|
|
2008-11-19 11:00:54 +00:00
|
|
|
Constant *C = I->getInitializer();
|
|
|
|
const PointerType *PtrTy = I->getType();
|
|
|
|
int AddrSpace = PtrTy->getAddressSpace();
|
2008-05-13 09:02:57 +00:00
|
|
|
|
2008-11-19 11:00:54 +00:00
|
|
|
if ((!C->isNullValue()) && (AddrSpace == PIC16ISD::RAM_SPACE)) {
|
|
|
|
|
|
|
|
if (EmitSpecialLLVMGlobal(I))
|
|
|
|
continue;
|
2008-05-13 09:02:57 +00:00
|
|
|
|
2008-11-19 11:00:54 +00:00
|
|
|
// Any variables reaching here with "." in its name is a local scope
|
|
|
|
// variable and should not be printed in global data section.
|
|
|
|
std::string name = Mang->getValueName(I);
|
2009-02-10 04:20:26 +00:00
|
|
|
if (name.find(".auto.") != std::string::npos)
|
2008-11-19 11:00:54 +00:00
|
|
|
continue;
|
2008-05-13 09:02:57 +00:00
|
|
|
|
2008-11-19 11:00:54 +00:00
|
|
|
O << name;
|
2009-01-30 04:25:10 +00:00
|
|
|
EmitGlobalConstant(C, AddrSpace);
|
2008-11-19 11:00:54 +00:00
|
|
|
}
|
2008-05-13 09:02:57 +00:00
|
|
|
}
|
2008-11-19 11:00:54 +00:00
|
|
|
}
|
2008-05-13 09:02:57 +00:00
|
|
|
|
2008-11-19 11:00:54 +00:00
|
|
|
void PIC16AsmPrinter::EmitRomData (Module &M)
|
2008-05-13 09:02:57 +00:00
|
|
|
{
|
2009-01-13 19:18:47 +00:00
|
|
|
SwitchToSection(TAI->getReadOnlySection());
|
2008-11-19 11:00:54 +00:00
|
|
|
IsRomData = true;
|
|
|
|
for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
|
|
|
|
I != E; ++I) {
|
|
|
|
if (!I->hasInitializer()) // External global require no code.
|
|
|
|
continue;
|
2008-05-13 09:02:57 +00:00
|
|
|
|
2008-11-19 11:00:54 +00:00
|
|
|
Constant *C = I->getInitializer();
|
|
|
|
const PointerType *PtrTy = I->getType();
|
|
|
|
int AddrSpace = PtrTy->getAddressSpace();
|
|
|
|
if ((!C->isNullValue()) && (AddrSpace == PIC16ISD::ROM_SPACE)) {
|
|
|
|
|
|
|
|
if (EmitSpecialLLVMGlobal(I))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Any variables reaching here with "." in its name is a local scope
|
|
|
|
// variable and should not be printed in global data section.
|
|
|
|
std::string name = Mang->getValueName(I);
|
|
|
|
if (name.find(".") != std::string::npos)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
O << name;
|
2009-01-30 04:25:10 +00:00
|
|
|
EmitGlobalConstant(C, AddrSpace);
|
2008-11-19 11:00:54 +00:00
|
|
|
O << "\n";
|
2008-05-13 09:02:57 +00:00
|
|
|
}
|
|
|
|
}
|
2008-11-19 11:00:54 +00:00
|
|
|
IsRomData = false;
|
2008-05-13 09:02:57 +00:00
|
|
|
}
|
|
|
|
|
2008-11-19 11:00:54 +00:00
|
|
|
void PIC16AsmPrinter::EmitUnInitData (Module &M)
|
2008-05-13 09:02:57 +00:00
|
|
|
{
|
2009-01-13 19:18:47 +00:00
|
|
|
SwitchToSection(TAI->getBSSSection_());
|
2008-05-13 09:02:57 +00:00
|
|
|
const TargetData *TD = TM.getTargetData();
|
|
|
|
|
|
|
|
for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
|
|
|
|
I != E; ++I) {
|
2008-11-19 11:00:54 +00:00
|
|
|
if (!I->hasInitializer()) // External global require no code.
|
2008-05-13 09:02:57 +00:00
|
|
|
continue;
|
|
|
|
|
2008-11-19 11:00:54 +00:00
|
|
|
Constant *C = I->getInitializer();
|
|
|
|
if (C->isNullValue()) {
|
|
|
|
|
|
|
|
if (EmitSpecialLLVMGlobal(I))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Any variables reaching here with "." in its name is a local scope
|
|
|
|
// variable and should not be printed in global data section.
|
|
|
|
std::string name = Mang->getValueName(I);
|
|
|
|
if (name.find(".") != std::string::npos)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
const Type *Ty = C->getType();
|
2009-01-12 20:38:59 +00:00
|
|
|
unsigned Size = TD->getTypePaddedSize(Ty);
|
2009-01-13 19:18:47 +00:00
|
|
|
|
2008-11-19 11:00:54 +00:00
|
|
|
O << name << " " <<"RES"<< " " << Size ;
|
|
|
|
O << "\n";
|
2008-05-13 09:02:57 +00:00
|
|
|
}
|
2008-11-19 11:00:54 +00:00
|
|
|
}
|
|
|
|
}
|
2008-05-13 09:02:57 +00:00
|
|
|
|
2008-11-19 11:00:54 +00:00
|
|
|
bool PIC16AsmPrinter::doFinalization(Module &M) {
|
|
|
|
O << "\t" << "END\n";
|
|
|
|
bool Result = AsmPrinter::doFinalization(M);
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PIC16AsmPrinter::emitFunctionData(MachineFunction &MF) {
|
|
|
|
const Function *F = MF.getFunction();
|
|
|
|
std::string FuncName = Mang->getValueName(F);
|
|
|
|
const Module *M = F->getParent();
|
|
|
|
const TargetData *TD = TM.getTargetData();
|
2009-01-13 19:18:47 +00:00
|
|
|
unsigned FrameSize = 0;
|
2008-11-19 11:00:54 +00:00
|
|
|
// Emit the data section name.
|
|
|
|
O << "\n";
|
2009-01-13 19:18:47 +00:00
|
|
|
std::string SectionName = "fdata." + CurrentFnName + ".# " + "UDATA";
|
|
|
|
|
|
|
|
const Section *fDataSection = TAI->getNamedSection(SectionName.c_str(),
|
|
|
|
SectionFlags::Writeable);
|
|
|
|
SwitchToSection(fDataSection);
|
2008-11-26 10:53:50 +00:00
|
|
|
|
|
|
|
//Emit function return value.
|
|
|
|
O << CurrentFnName << ".retval:\n";
|
|
|
|
const Type *RetType = F->getReturnType();
|
2009-01-13 19:18:47 +00:00
|
|
|
unsigned RetSize = 0;
|
|
|
|
if (RetType->getTypeID() != Type::VoidTyID)
|
|
|
|
RetSize = TD->getTypePaddedSize(RetType);
|
|
|
|
|
2008-11-26 10:53:50 +00:00
|
|
|
// Emit function arguments.
|
|
|
|
O << CurrentFnName << ".args:\n";
|
2008-11-19 11:00:54 +00:00
|
|
|
// Emit the function variables.
|
|
|
|
|
|
|
|
// In PIC16 all the function arguments and local variables are global.
|
|
|
|
// Therefore to get the variable belonging to this function entire
|
|
|
|
// global list will be traversed and variables belonging to this function
|
|
|
|
// will be emitted in the current data section.
|
|
|
|
for (Module::const_global_iterator I = M->global_begin(), E = M->global_end();
|
|
|
|
I != E; ++I) {
|
|
|
|
std::string VarName = Mang->getValueName(I);
|
|
|
|
|
|
|
|
// The variables of a function are of form FuncName.* . If this variable
|
|
|
|
// does not belong to this function then continue.
|
2009-02-10 04:20:26 +00:00
|
|
|
// Static local varilabes of a function does not have .auto. in their
|
|
|
|
// name. They are not printed as part of function data but module
|
|
|
|
// level global data.
|
|
|
|
if (!(VarName.find(FuncName + ".auto.") == 0 ? true : false))
|
2008-11-19 11:00:54 +00:00
|
|
|
continue;
|
2009-02-10 04:20:26 +00:00
|
|
|
|
2008-05-13 09:02:57 +00:00
|
|
|
Constant *C = I->getInitializer();
|
2008-05-14 11:31:39 +00:00
|
|
|
const Type *Ty = C->getType();
|
2009-01-12 20:38:59 +00:00
|
|
|
unsigned Size = TD->getTypePaddedSize(Ty);
|
2009-01-13 19:18:47 +00:00
|
|
|
FrameSize += Size;
|
2008-11-19 11:00:54 +00:00
|
|
|
// Emit memory reserve directive.
|
|
|
|
O << VarName << " RES " << Size << "\n";
|
|
|
|
}
|
2009-02-10 04:20:26 +00:00
|
|
|
|
|
|
|
// Return value can not overlap with temp data, becasue a temp slot
|
|
|
|
// may be read/written after a return value is calculated and saved
|
|
|
|
// within the function.
|
2009-01-13 19:18:47 +00:00
|
|
|
if (RetSize > FrameSize)
|
2009-02-10 04:20:26 +00:00
|
|
|
O << CurrentFnName << ".dummy" << " RES " << (RetSize - FrameSize) << "\n";
|
|
|
|
|
|
|
|
emitFunctionTempData(MF, FrameSize);
|
2008-11-19 11:00:54 +00:00
|
|
|
}
|
2008-05-13 09:02:57 +00:00
|
|
|
|
2009-01-13 19:18:47 +00:00
|
|
|
void PIC16AsmPrinter::emitFunctionTempData(MachineFunction &MF,
|
|
|
|
unsigned &FrameSize) {
|
2008-11-19 11:00:54 +00:00
|
|
|
// Emit temporary variables.
|
|
|
|
MachineFrameInfo *FrameInfo = MF.getFrameInfo();
|
|
|
|
if (FrameInfo->hasStackObjects()) {
|
|
|
|
int indexBegin = FrameInfo->getObjectIndexBegin();
|
|
|
|
int indexEnd = FrameInfo->getObjectIndexEnd();
|
2008-05-13 09:02:57 +00:00
|
|
|
|
2009-01-13 19:18:47 +00:00
|
|
|
if (indexBegin < indexEnd) {
|
|
|
|
FrameSize += indexEnd - indexBegin;
|
2008-11-19 11:00:54 +00:00
|
|
|
O << CurrentFnName << ".tmp RES"<< " "
|
|
|
|
<<indexEnd - indexBegin <<"\n";
|
2009-01-13 19:18:47 +00:00
|
|
|
}
|
2008-11-19 11:00:54 +00:00
|
|
|
/*
|
|
|
|
while (indexBegin < indexEnd) {
|
|
|
|
O << CurrentFnName << "_tmp_" << indexBegin << " " << "RES"<< " "
|
|
|
|
<< 1 << "\n" ;
|
|
|
|
indexBegin++;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
}
|