2004-08-06 08:46:59 +00:00
|
|
|
/* AMX Assembler
|
|
|
|
* Copyright (C)2004 David "BAILOPAN" Anderson
|
|
|
|
*
|
|
|
|
* This software is provided 'as-is', without any express or implied
|
|
|
|
* warranty. In no event will the authors be held liable for any damages
|
|
|
|
* arising from the use of this software.
|
|
|
|
*
|
|
|
|
* Permission is granted to anyone to use this software for any purpose,
|
|
|
|
* including commercial applications, and to alter it and redistribute it
|
|
|
|
* freely, subject to the following restrictions:
|
|
|
|
*
|
|
|
|
* 1. The origin of this software must not be misrepresented; you must not
|
|
|
|
* claim that you wrote the original software. If you use this software
|
|
|
|
* in a product, an acknowledgment in the product documentation would be
|
|
|
|
* appreciated but is not required.
|
|
|
|
* 2. Altered source versions must be plainly marked as such, and must not be
|
|
|
|
* misrepresented as being the original software.
|
|
|
|
* 3. This notice may not be removed or altered from any source distribution.
|
|
|
|
*
|
2014-02-07 07:06:54 +00:00
|
|
|
* Version: $Id: amx_label.cpp 926 2004-08-21 18:57:47Z dvander $
|
2004-08-06 08:46:59 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "amxasm.h"
|
|
|
|
|
|
|
|
LabelMngr::~LabelMngr()
|
|
|
|
{
|
2004-08-08 10:15:08 +00:00
|
|
|
Clear();
|
|
|
|
}
|
|
|
|
|
2004-08-09 08:43:27 +00:00
|
|
|
LabelMngr::Label::Label()
|
|
|
|
{
|
|
|
|
cip = -1;
|
|
|
|
sym = 0;
|
|
|
|
}
|
|
|
|
|
2004-08-08 10:15:08 +00:00
|
|
|
void LabelMngr::Clear()
|
|
|
|
{
|
2004-08-12 16:31:50 +00:00
|
|
|
std::list<LabelMngr::Label *>::iterator i;
|
2004-08-06 08:46:59 +00:00
|
|
|
|
|
|
|
for (i=List.begin(); i!=List.end(); i++)
|
|
|
|
{
|
|
|
|
if ( (*i) )
|
|
|
|
delete (*i);
|
|
|
|
}
|
|
|
|
|
|
|
|
List.clear();
|
|
|
|
}
|
|
|
|
|
2004-08-12 16:31:50 +00:00
|
|
|
LabelMngr::Label *LabelMngr::AddLabel(SymbolList::Symbol *sym, int cip)
|
2004-08-06 08:46:59 +00:00
|
|
|
{
|
|
|
|
LabelMngr::Label *p = new LabelMngr::Label;
|
|
|
|
|
|
|
|
p->sym = sym;
|
|
|
|
p->cip = cip;
|
|
|
|
|
|
|
|
List.push_back(p);
|
2004-08-12 16:31:50 +00:00
|
|
|
|
|
|
|
return p;
|
2004-08-06 08:46:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
LabelMngr::Label *LabelMngr::FindLabel(std::string &sym)
|
|
|
|
{
|
2004-08-12 16:31:50 +00:00
|
|
|
std::list<LabelMngr::Label *>::iterator i;
|
2004-08-06 08:46:59 +00:00
|
|
|
|
|
|
|
for (i=List.begin(); i!=List.end(); i++)
|
|
|
|
{
|
|
|
|
if ( (*i)->sym->IsEqual(sym) )
|
|
|
|
{
|
|
|
|
return (*i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2004-08-09 08:43:27 +00:00
|
|
|
bool LabelMngr::SetCip(std::string &sym, int cip)
|
|
|
|
{
|
|
|
|
LabelMngr::Label *p = NULL;
|
|
|
|
|
|
|
|
p = FindLabel(sym);
|
|
|
|
|
|
|
|
if (p == NULL)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
p->cip = cip;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LabelMngr::QueueLabel(std::string &sym, Asm *ASM)
|
|
|
|
{
|
|
|
|
std::string d(sym);
|
|
|
|
LQ[d].push(ASM);
|
|
|
|
}
|
|
|
|
|
2004-08-11 08:14:54 +00:00
|
|
|
void LabelMngr::CompleteQueue(bool isLocal)
|
2004-08-09 08:43:27 +00:00
|
|
|
{
|
|
|
|
std::map<std::string,std::stack<Asm *> >::iterator i;
|
|
|
|
std::stack<Asm *> *stk = 0;
|
2004-08-12 16:31:50 +00:00
|
|
|
std::stack<std::map<std::string,std::stack<Asm *> >::iterator> DeleteStack;
|
2004-08-09 08:43:27 +00:00
|
|
|
std::string search;
|
|
|
|
Asm *ASM = 0;
|
|
|
|
LabelMngr::Label *p = 0;
|
|
|
|
|
|
|
|
for (i=LQ.begin(); i!=LQ.end(); i++)
|
|
|
|
{
|
|
|
|
search.assign( (*i).first );
|
|
|
|
p = FindLabel(search);
|
|
|
|
stk = &((*i).second);
|
|
|
|
if (p == NULL || p->cip == LabelMngr::ncip)
|
|
|
|
{
|
2004-08-11 08:14:54 +00:00
|
|
|
if ((!isLocal || (isLocal && search[0]=='_')) && CError)
|
|
|
|
{
|
|
|
|
while (!stk->empty())
|
|
|
|
{
|
|
|
|
CError->SetLine(stk->top()->line);
|
2004-08-11 10:01:56 +00:00
|
|
|
CError->ErrorMsg(Err_Bad_Label);
|
2004-08-11 08:14:54 +00:00
|
|
|
stk->pop();
|
|
|
|
}
|
2004-08-12 16:31:50 +00:00
|
|
|
DeleteStack.push( i );
|
2004-08-11 08:14:54 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
while (!stk->empty())
|
|
|
|
{
|
|
|
|
ASM = stk->top();
|
|
|
|
ASM->params[0] = p->cip;
|
|
|
|
stk->pop();
|
|
|
|
}
|
2004-08-12 16:31:50 +00:00
|
|
|
DeleteStack.push( i );
|
2004-08-09 08:43:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-08-12 16:31:50 +00:00
|
|
|
while (!DeleteStack.empty())
|
|
|
|
{
|
|
|
|
LQ.erase(DeleteStack.top());
|
|
|
|
DeleteStack.pop();
|
|
|
|
}
|
2004-08-09 08:43:27 +00:00
|
|
|
}
|
|
|
|
|
2004-08-06 08:46:59 +00:00
|
|
|
int LabelMngr::GetCip(std::string &sym)
|
|
|
|
{
|
|
|
|
LabelMngr::Label *p = NULL;
|
|
|
|
|
|
|
|
p = FindLabel(sym);
|
|
|
|
|
|
|
|
if (p == NULL)
|
|
|
|
return ncip;
|
|
|
|
|
|
|
|
return p->cip;
|
2004-08-11 08:14:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool LabelMngr::EraseLabel(std::string &sym)
|
|
|
|
{
|
2004-08-12 16:31:50 +00:00
|
|
|
std::list<LabelMngr::Label *>::iterator i;
|
|
|
|
LabelMngr::Label *L = 0;
|
2004-08-11 08:14:54 +00:00
|
|
|
|
|
|
|
for (i=List.begin(); i!=List.end(); i++)
|
|
|
|
{
|
2004-08-12 16:31:50 +00:00
|
|
|
L = (*i);
|
|
|
|
if ( L->sym->IsEqual(sym) )
|
2004-08-11 08:14:54 +00:00
|
|
|
{
|
2004-08-12 16:31:50 +00:00
|
|
|
i = List.erase(i);
|
|
|
|
L->sym = 0;
|
|
|
|
delete L;
|
|
|
|
L = 0;
|
2004-08-11 08:14:54 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2004-08-11 10:01:56 +00:00
|
|
|
}
|
|
|
|
|
2004-08-12 16:31:50 +00:00
|
|
|
void LabelMngr::PrintList()
|
|
|
|
{
|
|
|
|
std::list<LabelMngr::Label *>::iterator i;
|
|
|
|
|
|
|
|
for (i=List.begin(); i!=List.end(); i++)
|
|
|
|
{
|
|
|
|
printf("Label:\t%s\t%d\t%d\n", (*i)->sym->sym.c_str(), (*i)->cip, (*i)->sym->line);
|
|
|
|
}
|
2004-08-21 18:57:47 +00:00
|
|
|
}
|
|
|
|
|