From d2d0f002688d4e893f7fe27f2f2ae282c220b793 Mon Sep 17 00:00:00 2001 From: dbv Date: Tue, 14 Apr 2015 18:46:12 +0300 Subject: [PATCH] 0025746: Excessive memory use in math_Matrix math_DoubleTab now statically allocates only 16 items for Buf Removed indirection table from math_DoubleTab --- src/math/math_DoubleTab.cdl | 4 +-- src/math/math_DoubleTab.cxx | 53 +++++++------------------------------ src/math/math_DoubleTab.lxx | 6 ++--- 3 files changed, 12 insertions(+), 51 deletions(-) diff --git a/src/math/math_DoubleTab.cdl b/src/math/math_DoubleTab.cdl index f534559ad9..6e3357264a 100644 --- a/src/math/math_DoubleTab.cdl +++ b/src/math/math_DoubleTab.cdl @@ -61,9 +61,7 @@ is fields Addr : Address; -AddrBuf : Address[32]; -Buf : Real[512]; -isAddrAllocated: Boolean; +Buf : Real[16]; isAllocated : Boolean; LowR : Integer; UppR : Integer; diff --git a/src/math/math_DoubleTab.cxx b/src/math/math_DoubleTab.cxx index 670f4b14bc..429abf8657 100644 --- a/src/math/math_DoubleTab.cxx +++ b/src/math/math_DoubleTab.cxx @@ -28,22 +28,8 @@ void math_DoubleTab::Allocate() Standard_Integer RowNumber = UppR - LowR + 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) - Address = (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; + Addr = (Standard_Real*) Standard::Allocate(RowNumber * ColNumber * sizeof(Standard_Real)); } 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 UpperCol) : Addr(Buf), - isAddrAllocated(UpperRow - LowerRow + 1 > CARRAY_LENGTH(AddrBuf)), isAllocated((UpperRow - LowerRow + 1) * (UpperCol - LowerCol + 1) > CARRAY_LENGTH(Buf)), LowR(LowerRow), UppR(UpperRow), @@ -67,7 +52,6 @@ math_DoubleTab::math_DoubleTab(const Standard_Address Tab, const Standard_Integer LowerCol, const Standard_Integer UpperCol) : Addr(Tab), - isAddrAllocated(UpperRow - LowerRow + 1 > CARRAY_LENGTH(AddrBuf)), isAllocated(Standard_False), LowR(LowerRow), UppR(UpperRow), @@ -79,16 +63,14 @@ math_DoubleTab::math_DoubleTab(const Standard_Address Tab, void math_DoubleTab::Init(const Standard_Real InitValue) { - for (Standard_Integer i = LowR; i <= UppR; i++) { - for (Standard_Integer j = LowC; j <= UppC; j++) { - ((Standard_Real**) Addr)[i][j] = InitValue; - } + for (Standard_Integer anIndex = 0; anIndex < (UppR - LowR + 1) * (UppC - LowC + 1); anIndex++) + { + ((Standard_Real* )Addr)[anIndex] = InitValue; } } math_DoubleTab::math_DoubleTab(const math_DoubleTab& Other) : Addr(Buf), - isAddrAllocated(Other.UppR - Other.LowR + 1 > CARRAY_LENGTH(AddrBuf)), isAllocated((Other.UppR - Other.LowR + 1) * (Other.UppC - Other.LowC + 1) > CARRAY_LENGTH(Buf)), LowR(Other.LowR), @@ -97,45 +79,28 @@ math_DoubleTab::math_DoubleTab(const math_DoubleTab& Other) : UppC(Other.UppC) { Allocate(); - - 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))); - + memmove (Addr, Other.Addr, (int)((UppR - LowR + 1) * (UppC - LowC + 1) * sizeof(Standard_Real))); } void math_DoubleTab::Free() { // free the data - if(isAllocated) { - Standard_Address it = (Standard_Address)&Value(LowR,LowC); - Standard::Free(it); - } - // free the pointers - if(isAddrAllocated) { - Standard_Address it = (Standard_Address)(((Standard_Real**)Addr) + LowR); - Standard::Free (it); + if(isAllocated) + { + Standard::Free (Addr); } + Addr = 0; } void math_DoubleTab::SetLowerRow(const Standard_Integer LowerRow) { - Standard_Real** TheAddr = (Standard_Real**)Addr; - Addr = (Standard_Address) (TheAddr + LowR - LowerRow); UppR = UppR - LowR + LowerRow; LowR = LowerRow; } 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; LowC = LowerCol; } diff --git a/src/math/math_DoubleTab.lxx b/src/math/math_DoubleTab.lxx index 1a467bc568..45e3c107c0 100644 --- a/src/math/math_DoubleTab.lxx +++ b/src/math/math_DoubleTab.lxx @@ -20,16 +20,14 @@ inline Standard_Real& math_DoubleTab::Value (const Standard_Integer RowIndex, 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 { - memmove((void*)(& Other.Value(Other.LowR,Other.LowC)), - (void*) (& Value(LowR,LowC)), - (int)((UppR - LowR + 1) * (UppC - LowC + 1) * sizeof(Standard_Real))); + memmove (Other.Addr, Addr, (int)((UppR - LowR + 1) * (UppC - LowC + 1) * sizeof(Standard_Real))); }