1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0025746: Excessive memory use in math_Matrix

math_DoubleTab now statically allocates only 16 items for Buf
Removed indirection table from math_DoubleTab
This commit is contained in:
dbv 2015-04-14 18:46:12 +03:00 committed by bugmaster
parent f25b82d624
commit d2d0f00268
3 changed files with 12 additions and 51 deletions

View File

@ -61,9 +61,7 @@ is
fields fields
Addr : Address; Addr : Address;
AddrBuf : Address[32]; Buf : Real[16];
Buf : Real[512];
isAddrAllocated: Boolean;
isAllocated : Boolean; isAllocated : Boolean;
LowR : Integer; LowR : Integer;
UppR : Integer; UppR : Integer;

View File

@ -28,22 +28,8 @@ void math_DoubleTab::Allocate()
Standard_Integer RowNumber = UppR - LowR + 1; Standard_Integer RowNumber = UppR - LowR + 1;
Standard_Integer ColNumber = UppC - LowC + 1; Standard_Integer ColNumber = UppC - LowC + 1;
Standard_Real** TheAddr = !isAddrAllocated? (Standard_Real**)&AddrBuf :
(Standard_Real**) Standard::Allocate(RowNumber * sizeof(Standard_Real*));
Standard_Real* Address;
if(isAllocated) if(isAllocated)
Address = (Standard_Real*) Standard::Allocate(RowNumber * ColNumber * sizeof(Standard_Real)); Addr = (Standard_Real*) Standard::Allocate(RowNumber * ColNumber * sizeof(Standard_Real));
else
Address = (Standard_Real*) Addr;
Address -= LowC;
for (Standard_Integer Index = 0; Index < RowNumber; Index++) {
TheAddr[Index] = Address;
Address += ColNumber;
}
TheAddr -= LowR;
Addr = (Standard_Address) TheAddr;
} }
math_DoubleTab::math_DoubleTab(const Standard_Integer LowerRow, math_DoubleTab::math_DoubleTab(const Standard_Integer LowerRow,
@ -51,7 +37,6 @@ math_DoubleTab::math_DoubleTab(const Standard_Integer LowerRow,
const Standard_Integer LowerCol, const Standard_Integer LowerCol,
const Standard_Integer UpperCol) : const Standard_Integer UpperCol) :
Addr(Buf), Addr(Buf),
isAddrAllocated(UpperRow - LowerRow + 1 > CARRAY_LENGTH(AddrBuf)),
isAllocated((UpperRow - LowerRow + 1) * (UpperCol - LowerCol + 1) > CARRAY_LENGTH(Buf)), isAllocated((UpperRow - LowerRow + 1) * (UpperCol - LowerCol + 1) > CARRAY_LENGTH(Buf)),
LowR(LowerRow), LowR(LowerRow),
UppR(UpperRow), UppR(UpperRow),
@ -67,7 +52,6 @@ math_DoubleTab::math_DoubleTab(const Standard_Address Tab,
const Standard_Integer LowerCol, const Standard_Integer LowerCol,
const Standard_Integer UpperCol) : const Standard_Integer UpperCol) :
Addr(Tab), Addr(Tab),
isAddrAllocated(UpperRow - LowerRow + 1 > CARRAY_LENGTH(AddrBuf)),
isAllocated(Standard_False), isAllocated(Standard_False),
LowR(LowerRow), LowR(LowerRow),
UppR(UpperRow), UppR(UpperRow),
@ -79,16 +63,14 @@ math_DoubleTab::math_DoubleTab(const Standard_Address Tab,
void math_DoubleTab::Init(const Standard_Real InitValue) void math_DoubleTab::Init(const Standard_Real InitValue)
{ {
for (Standard_Integer i = LowR; i <= UppR; i++) { for (Standard_Integer anIndex = 0; anIndex < (UppR - LowR + 1) * (UppC - LowC + 1); anIndex++)
for (Standard_Integer j = LowC; j <= UppC; j++) { {
((Standard_Real**) Addr)[i][j] = InitValue; ((Standard_Real* )Addr)[anIndex] = InitValue;
}
} }
} }
math_DoubleTab::math_DoubleTab(const math_DoubleTab& Other) : math_DoubleTab::math_DoubleTab(const math_DoubleTab& Other) :
Addr(Buf), Addr(Buf),
isAddrAllocated(Other.UppR - Other.LowR + 1 > CARRAY_LENGTH(AddrBuf)),
isAllocated((Other.UppR - Other.LowR + 1) * isAllocated((Other.UppR - Other.LowR + 1) *
(Other.UppC - Other.LowC + 1) > CARRAY_LENGTH(Buf)), (Other.UppC - Other.LowC + 1) > CARRAY_LENGTH(Buf)),
LowR(Other.LowR), LowR(Other.LowR),
@ -97,45 +79,28 @@ math_DoubleTab::math_DoubleTab(const math_DoubleTab& Other) :
UppC(Other.UppC) UppC(Other.UppC)
{ {
Allocate(); Allocate();
memmove (Addr, Other.Addr, (int)((UppR - LowR + 1) * (UppC - LowC + 1) * sizeof(Standard_Real)));
Standard_Address target = (Standard_Address) &Value(LowR,LowC);
Standard_Address source = (Standard_Address) &Other.Value(LowR,LowC);
memmove(target,source,
(int)((UppR - LowR + 1) * (UppC - LowC + 1) * sizeof(Standard_Real)));
} }
void math_DoubleTab::Free() void math_DoubleTab::Free()
{ {
// free the data // free the data
if(isAllocated) { if(isAllocated)
Standard_Address it = (Standard_Address)&Value(LowR,LowC); {
Standard::Free(it); Standard::Free (Addr);
}
// free the pointers
if(isAddrAllocated) {
Standard_Address it = (Standard_Address)(((Standard_Real**)Addr) + LowR);
Standard::Free (it);
} }
Addr = 0; Addr = 0;
} }
void math_DoubleTab::SetLowerRow(const Standard_Integer LowerRow) void math_DoubleTab::SetLowerRow(const Standard_Integer LowerRow)
{ {
Standard_Real** TheAddr = (Standard_Real**)Addr;
Addr = (Standard_Address) (TheAddr + LowR - LowerRow);
UppR = UppR - LowR + LowerRow; UppR = UppR - LowR + LowerRow;
LowR = LowerRow; LowR = LowerRow;
} }
void math_DoubleTab::SetLowerCol(const Standard_Integer LowerCol) void math_DoubleTab::SetLowerCol(const Standard_Integer LowerCol)
{ {
Standard_Real** TheAddr = (Standard_Real**) Addr;
for (Standard_Integer Index = LowR; Index <= UppR; Index++) {
TheAddr[Index] = TheAddr[Index] + LowC - LowerCol;
}
UppC = UppC - LowC + LowerCol; UppC = UppC - LowC + LowerCol;
LowC = LowerCol; LowC = LowerCol;
} }

View File

@ -20,16 +20,14 @@
inline Standard_Real& math_DoubleTab::Value (const Standard_Integer RowIndex, inline Standard_Real& math_DoubleTab::Value (const Standard_Integer RowIndex,
const Standard_Integer ColIndex) const const Standard_Integer ColIndex) const
{ {
return ((Standard_Real**)Addr)[RowIndex][ColIndex]; return ((Standard_Real*)Addr)[(UppC - LowC + 1) * (RowIndex - LowR) + (ColIndex - LowC)];
} }
inline void math_DoubleTab::Copy(math_DoubleTab& Other)const inline void math_DoubleTab::Copy(math_DoubleTab& Other)const
{ {
memmove((void*)(& Other.Value(Other.LowR,Other.LowC)), memmove (Other.Addr, Addr, (int)((UppR - LowR + 1) * (UppC - LowC + 1) * sizeof(Standard_Real)));
(void*) (& Value(LowR,LowC)),
(int)((UppR - LowR + 1) * (UppC - LowC + 1) * sizeof(Standard_Real)));
} }