Rev | Line | |
---|
[4] | 1 | #include "common.h"
|
---|
| 2 | #ifdef _AMD64_
|
---|
| 3 | #include "../BasicCompiler64/opcode.h"
|
---|
| 4 | #else
|
---|
[5] | 5 | #include "../BasicCompiler32/opcode.h"
|
---|
[4] | 6 | #endif
|
---|
| 7 |
|
---|
| 8 |
|
---|
| 9 | CLexicalScopes obj_LexScopes;
|
---|
| 10 |
|
---|
| 11 | CLexicalScopes::CLexicalScopes(){
|
---|
| 12 | level=0;
|
---|
| 13 | }
|
---|
| 14 | CLexicalScopes::~CLexicalScopes(){
|
---|
| 15 | }
|
---|
| 16 | void CLexicalScopes::Init(int addr){
|
---|
| 17 | level=0;
|
---|
| 18 | StartAddresses[level]=addr;
|
---|
| 19 | }
|
---|
| 20 | void CLexicalScopes::LevelUp(int addr){
|
---|
| 21 | level++;
|
---|
| 22 | StartAddresses[level]=addr;
|
---|
| 23 | }
|
---|
| 24 | void CLexicalScopes::LevelDown(void){
|
---|
| 25 | //デストラクタを呼ぶ
|
---|
| 26 | CallDestrouctorsOfScope();
|
---|
| 27 |
|
---|
| 28 | //スコープレベルを下げる
|
---|
| 29 | level--;
|
---|
| 30 | if(level<0){
|
---|
| 31 | SetError(300,NULL,cp);
|
---|
| 32 | return;
|
---|
| 33 | }
|
---|
| 34 |
|
---|
| 35 | extern BOOL bCompilingGlobal;
|
---|
| 36 | VARIABLE *pVar;
|
---|
| 37 | int num;
|
---|
| 38 | if(bCompilingGlobal){
|
---|
| 39 | //グローバル領域をコンパイルしているとき
|
---|
| 40 | extern VARIABLE *GlobalVar;
|
---|
| 41 | extern int MaxGlobalVarNum;
|
---|
| 42 | pVar=GlobalVar;
|
---|
| 43 | num=MaxGlobalVarNum;
|
---|
| 44 | }
|
---|
| 45 | else{
|
---|
| 46 | //ローカル領域をコンパイルしているとき
|
---|
| 47 | extern VARIABLE *LocalVar;
|
---|
| 48 | extern int MaxLocalVarNum;
|
---|
| 49 | pVar=LocalVar;
|
---|
| 50 | num=MaxLocalVarNum;
|
---|
| 51 | }
|
---|
| 52 |
|
---|
| 53 | for(int i=0;i<num;i++){
|
---|
| 54 | if(pVar[i].bLiving&&pVar[i].ScopeLevel==level+1){
|
---|
| 55 | pVar[i].bLiving=0;
|
---|
| 56 | extern int obp;
|
---|
| 57 | pVar[i].ScopeEndAddress=obp;
|
---|
| 58 | }
|
---|
| 59 | }
|
---|
| 60 | }
|
---|
| 61 |
|
---|
| 62 | int CLexicalScopes::GetNowLevel(void){
|
---|
| 63 | return level;
|
---|
| 64 | }
|
---|
| 65 | int CLexicalScopes::GetStartAddress(void){
|
---|
| 66 | return StartAddresses[level];
|
---|
| 67 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.