[206] | 1 | #include "stdafx.h"
|
---|
| 2 |
|
---|
[266] | 3 | #include <Source.h>
|
---|
[263] | 4 | #include <Compiler.h>
|
---|
| 5 |
|
---|
[4] | 6 | #include "common.h"
|
---|
| 7 |
|
---|
| 8 | //////////////////////////
|
---|
| 9 | // ブレークポイント
|
---|
| 10 | //////////////////////////
|
---|
| 11 |
|
---|
| 12 | CDBBreakPoint *pobj_DBBreakPoint;
|
---|
| 13 |
|
---|
| 14 | CFileBreakPoint::CFileBreakPoint(char *lpszFileName,int iLineNum){
|
---|
| 15 | this->lpszFileName=(char *)HeapAlloc(hHeap,0,lstrlen(lpszFileName)+1);
|
---|
| 16 | lstrcpy(this->lpszFileName,lpszFileName);
|
---|
| 17 |
|
---|
| 18 | piLine=(int *)HeapAlloc(hHeap,0,sizeof(int));
|
---|
| 19 | piLine[0]=iLineNum;
|
---|
| 20 | num=1;
|
---|
| 21 | }
|
---|
| 22 | CFileBreakPoint::~CFileBreakPoint(){
|
---|
| 23 | HeapDefaultFree(lpszFileName);
|
---|
| 24 | HeapDefaultFree(piLine);
|
---|
| 25 | }
|
---|
| 26 | void CFileBreakPoint::add(int iLineNum){
|
---|
| 27 | piLine=(int *)HeapReAlloc(hHeap,0,piLine,(num+1)*sizeof(int));
|
---|
| 28 | piLine[num]=iLineNum;
|
---|
| 29 | num++;
|
---|
| 30 | }
|
---|
| 31 | void CFileBreakPoint::remove(int iLineNum){
|
---|
| 32 | int i;
|
---|
| 33 | for(i=0;i<num;i++){
|
---|
| 34 | if(iLineNum==piLine[i]) break;
|
---|
| 35 | }
|
---|
| 36 | if(i==num) return;
|
---|
| 37 |
|
---|
| 38 | num--;
|
---|
| 39 | for(;i<num;i++){
|
---|
| 40 | piLine[i]=piLine[i+1];
|
---|
| 41 | }
|
---|
| 42 | }
|
---|
| 43 |
|
---|
[280] | 44 | void CFileBreakPoint::update(char *nativeCodeBuffer)
|
---|
| 45 | {
|
---|
[4] | 46 | int FileNum;
|
---|
[280] | 47 | const IncludedFilesRelation *pIncludedFilesRelation = NULL;
|
---|
[313] | 48 | const BasicSource *pNowSource = NULL;
|
---|
[280] | 49 | BOOST_FOREACH( const BasicSource &source, compiler.GetObjectModule().GetSources() )
|
---|
| 50 | {
|
---|
| 51 | pIncludedFilesRelation = &source.GetIncludedFilesRelation();
|
---|
| 52 |
|
---|
| 53 | for(FileNum=0;FileNum<pIncludedFilesRelation->GetFileCounts();FileNum++)
|
---|
| 54 | {
|
---|
[313] | 55 | if(lstrcmpi(pIncludedFilesRelation->GetFilePathFromFileNumber(FileNum).c_str(),lpszFileName)==0)
|
---|
| 56 | {
|
---|
| 57 | pNowSource = &source;
|
---|
| 58 | break;
|
---|
| 59 | }
|
---|
[280] | 60 | }
|
---|
| 61 | if( FileNum == pIncludedFilesRelation->GetFileCounts() )
|
---|
| 62 | {
|
---|
| 63 | pIncludedFilesRelation = NULL;
|
---|
| 64 | }
|
---|
| 65 | else
|
---|
| 66 | {
|
---|
| 67 | break;
|
---|
| 68 | }
|
---|
[4] | 69 | }
|
---|
[280] | 70 |
|
---|
| 71 | if( !pIncludedFilesRelation )
|
---|
[279] | 72 | {
|
---|
[280] | 73 | Jenga::Throw( "CFileBreakPoint::update内で不正な処理" );
|
---|
[279] | 74 | return;
|
---|
| 75 | }
|
---|
[4] | 76 |
|
---|
| 77 | int i;
|
---|
| 78 | for(i=0;;i++){
|
---|
[280] | 79 | if( pIncludedFilesRelation->GetFileNumber( i ) == FileNum
|
---|
| 80 | || pIncludedFilesRelation->GetFileNumber( i ) == -1 )
|
---|
[279] | 81 | {
|
---|
| 82 | break;
|
---|
| 83 | }
|
---|
[4] | 84 | }
|
---|
[280] | 85 | if( pIncludedFilesRelation->GetFileNumber( i ) == -1 )
|
---|
[279] | 86 | {
|
---|
| 87 | return;
|
---|
| 88 | }
|
---|
[4] | 89 |
|
---|
| 90 | int FileBaseLine;
|
---|
| 91 | FileBaseLine=i;
|
---|
| 92 |
|
---|
| 93 | int i2,nCount=0;
|
---|
| 94 | for(i2=0;;i2++){
|
---|
[280] | 95 | if( pIncludedFilesRelation->GetFileNumber( FileBaseLine+i2 ) == -1 )
|
---|
[279] | 96 | {
|
---|
[4] | 97 | //ソースコードの終端行
|
---|
| 98 | break;
|
---|
| 99 | }
|
---|
| 100 |
|
---|
| 101 | if(i2==piLine[nCount]){
|
---|
[263] | 102 | extern SourceLines oldSourceLines;
|
---|
[4] | 103 |
|
---|
| 104 | loop:
|
---|
[313] | 105 | int tempCp = GetSourceCodeIndexFromLine( pNowSource->GetBuffer(), FileBaseLine+i2 );
|
---|
[4] | 106 |
|
---|
| 107 | int i3;
|
---|
[263] | 108 | for(i3=0;i3<(int)oldSourceLines.size()-1;i3++){
|
---|
| 109 | if(oldSourceLines[i3].GetSourceCodePos()==tempCp) break;
|
---|
[4] | 110 | }
|
---|
[263] | 111 | if(i3==oldSourceLines.size()-1){
|
---|
[4] | 112 | i2--;
|
---|
| 113 | goto loop;
|
---|
| 114 | }
|
---|
| 115 |
|
---|
[263] | 116 | nativeCodeBuffer[oldSourceLines[i3].GetNativeCodePos()]=(char)0xCC;
|
---|
[4] | 117 |
|
---|
| 118 | nCount++;
|
---|
| 119 | if(nCount>=num) break;
|
---|
| 120 | }
|
---|
| 121 | }
|
---|
| 122 | }
|
---|
| 123 |
|
---|
| 124 |
|
---|
| 125 | CDBBreakPoint::CDBBreakPoint(){
|
---|
| 126 | ppItem=(CFileBreakPoint **)HeapAlloc(hHeap,0,1);
|
---|
| 127 | num=0;
|
---|
| 128 |
|
---|
| 129 | char *buffer;
|
---|
| 130 | buffer=(char *)HeapAlloc(hHeap,0,65535);
|
---|
| 131 |
|
---|
[165] | 132 | HANDLE hFile=CreateFile(
|
---|
| 133 | ( Jenga::Common::Environment::GetAppDir() + "\\ab_breakpoint.tmp" ).c_str(),
|
---|
| 134 | GENERIC_READ,FILE_SHARE_READ|FILE_SHARE_WRITE,NULL,OPEN_EXISTING,FILE_ATTRIBUTE_NORMAL,NULL);
|
---|
[4] | 135 | if(hFile!=INVALID_HANDLE_VALUE){
|
---|
| 136 | DWORD dwAccBytes;
|
---|
| 137 | ReadFile(hFile,buffer,MAX_PATH,&dwAccBytes,NULL);
|
---|
| 138 | CloseHandle(hFile);
|
---|
| 139 | buffer[dwAccBytes]=0;
|
---|
| 140 | }
|
---|
| 141 | else buffer[0]=0;
|
---|
| 142 |
|
---|
| 143 | int i=0,i2;
|
---|
| 144 | char szFilePath[MAX_PATH];
|
---|
| 145 | while(buffer[i]){
|
---|
| 146 | //ファイルパス
|
---|
| 147 | i=GetOneParameter(buffer,i,szFilePath);
|
---|
| 148 | RemoveStringQuotes(szFilePath);
|
---|
| 149 |
|
---|
| 150 | while(buffer[i]!='\n'&&buffer[i]!='\0'){
|
---|
| 151 | //行番号
|
---|
[165] | 152 | char temporary[1024];
|
---|
[4] | 153 | i=GetOneParameter(buffer,i,temporary);
|
---|
| 154 | i2=atoi(temporary);
|
---|
| 155 |
|
---|
| 156 | insert(szFilePath,i2);
|
---|
| 157 | }
|
---|
| 158 |
|
---|
| 159 | while(buffer[i]=='\n') i++;
|
---|
| 160 |
|
---|
| 161 | if(buffer[i]=='\0') break;
|
---|
| 162 | }
|
---|
| 163 |
|
---|
| 164 | HeapDefaultFree(buffer);
|
---|
| 165 | }
|
---|
| 166 | CDBBreakPoint::~CDBBreakPoint(){
|
---|
| 167 | int i;
|
---|
| 168 | for(i=0;i<num;i++){
|
---|
| 169 | delete ppItem[i];
|
---|
| 170 | }
|
---|
| 171 | HeapDefaultFree(ppItem);
|
---|
| 172 | }
|
---|
| 173 | void CDBBreakPoint::insert(char *lpszFileName,int iLineNum){
|
---|
| 174 | int i;
|
---|
| 175 | for(i=0;i<num;i++){
|
---|
| 176 | if(lstrcmpi(ppItem[i]->lpszFileName,lpszFileName)==0){
|
---|
| 177 | ppItem[i]->add(iLineNum);
|
---|
| 178 | return;
|
---|
| 179 | }
|
---|
| 180 | }
|
---|
| 181 |
|
---|
| 182 | if(i==num){
|
---|
| 183 | ppItem=(CFileBreakPoint **)HeapReAlloc(hHeap,0,ppItem,(num+1)*sizeof(CFileBreakPoint *));
|
---|
| 184 | ppItem[num]=new CFileBreakPoint(lpszFileName,iLineNum);
|
---|
| 185 | num++;
|
---|
| 186 | }
|
---|
| 187 | }
|
---|
| 188 | void CDBBreakPoint::remove(char *lpszFileName,int iLineNum){
|
---|
| 189 | int i;
|
---|
| 190 | for(i=0;i<num;i++){
|
---|
| 191 | if(lstrcmpi(lpszFileName,ppItem[i]->lpszFileName)==0){
|
---|
| 192 | ppItem[i]->remove(iLineNum);
|
---|
| 193 | break;
|
---|
| 194 | }
|
---|
| 195 | }
|
---|
| 196 | if(i==num) return;
|
---|
| 197 |
|
---|
| 198 | if(ppItem[i]->num==0){
|
---|
| 199 | delete ppItem[i];
|
---|
| 200 |
|
---|
| 201 | num--;
|
---|
| 202 | for(;i<num;i++){
|
---|
| 203 | ppItem[i]=ppItem[i+1];
|
---|
| 204 | }
|
---|
| 205 | }
|
---|
| 206 | }
|
---|
| 207 |
|
---|
[256] | 208 | char *CDBBreakPoint::update(char *nativeCodeBuffer,int SizeOf_CodeSection){
|
---|
[4] | 209 | char *buffer;
|
---|
| 210 | buffer=(char *)HeapAlloc(hHeap,0,SizeOf_CodeSection);
|
---|
[256] | 211 | memcpy(buffer,nativeCodeBuffer,SizeOf_CodeSection);
|
---|
[4] | 212 |
|
---|
| 213 | int i;
|
---|
| 214 | for(i=0;i<num;i++){
|
---|
| 215 | ppItem[i]->update(buffer);
|
---|
| 216 | }
|
---|
| 217 |
|
---|
| 218 | return buffer;
|
---|
| 219 | }
|
---|