diff --git a/src/math/math_DoubleTab.cdl b/src/math/math_DoubleTab.cdl index 54112aeb52..8c3e210ab3 100755 --- a/src/math/math_DoubleTab.cdl +++ b/src/math/math_DoubleTab.cdl @@ -67,6 +67,9 @@ is fields Addr : Address; +AddrBuf : Address[32]; +Buf : Item[512]; +isAddrAllocated: Boolean; isAllocated : Boolean; LowR : Integer; UppR : Integer; diff --git a/src/math/math_DoubleTab.gxx b/src/math/math_DoubleTab.gxx index f7567bd9ad..083ddb4d8d 100755 --- a/src/math/math_DoubleTab.gxx +++ b/src/math/math_DoubleTab.gxx @@ -24,12 +24,16 @@ #include #include +// macro to get size of C array +#define CARRAY_LENGTH(arr) (sizeof(arr)/sizeof(arr[0])) + void math_DoubleTab::Allocate() { Standard_Integer RowNumber = UppR - LowR + 1; Standard_Integer ColNumber = UppC - LowC + 1; - Item** TheAddr = (Item**) Standard::Allocate(RowNumber * sizeof(Item*)); + Item** TheAddr = !isAddrAllocated? (Item**)&AddrBuf : + (Item**) Standard::Allocate(RowNumber * sizeof(Item*)); Item* Address; if(isAllocated) Address = (Item*) Standard::Allocate(RowNumber * ColNumber * sizeof(Item)); @@ -50,7 +54,9 @@ math_DoubleTab::math_DoubleTab(const Standard_Integer LowerRow, const Standard_Integer UpperRow, const Standard_Integer LowerCol, const Standard_Integer UpperCol) : - isAllocated(Standard_True), + Addr(Buf), + isAddrAllocated(UpperRow - LowerRow + 1 > CARRAY_LENGTH(AddrBuf)), + isAllocated((UpperRow - LowerRow + 1) * (UpperCol - LowerCol + 1) > CARRAY_LENGTH(Buf)), LowR(LowerRow), UppR(UpperRow), LowC(LowerCol), @@ -66,6 +72,7 @@ math_DoubleTab::math_DoubleTab(const Item& Tab, const Standard_Integer LowerCol, const Standard_Integer UpperCol) : Addr((void *) &Tab), + isAddrAllocated(UpperRow - LowerRow + 1 > CARRAY_LENGTH(AddrBuf)), isAllocated(Standard_False), LowR(LowerRow), UppR(UpperRow), @@ -87,7 +94,10 @@ void math_DoubleTab::Init(const Item& InitValue) math_DoubleTab::math_DoubleTab(const math_DoubleTab& Other) : - isAllocated(Standard_True), + 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), UppR(Other.UppR), LowC(Other.LowC), @@ -112,8 +122,10 @@ void math_DoubleTab::Free() Standard::Free(it); } // free the pointers - Standard_Address it = (Standard_Address)(((Item**)Addr) + LowR); - Standard::Free (it); + if(isAddrAllocated) { + Standard_Address it = (Standard_Address)(((Item**)Addr) + LowR); + Standard::Free (it); + } Addr = 0; } diff --git a/src/math/math_SingleTab.cdl b/src/math/math_SingleTab.cdl index 96d7eafa7e..d13a9a9c63 100755 --- a/src/math/math_SingleTab.cdl +++ b/src/math/math_SingleTab.cdl @@ -59,6 +59,7 @@ is fields Addr : Address; +Buf : Item[512]; isAllocated : Boolean; First : Integer; Last : Integer; diff --git a/src/math/math_SingleTab.gxx b/src/math/math_SingleTab.gxx index c208b6c028..cd4bdd1699 100755 --- a/src/math/math_SingleTab.gxx +++ b/src/math/math_SingleTab.gxx @@ -21,15 +21,18 @@ #include #include +// macro to get size of C array +#define CARRAY_LENGTH(arr) (sizeof(arr)/sizeof(arr[0])) + math_SingleTab::math_SingleTab(const Standard_Integer LowerIndex, const Standard_Integer UpperIndex) : - - isAllocated(Standard_True), + Addr(Buf), + isAllocated(UpperIndex - LowerIndex + 1 > CARRAY_LENGTH(Buf)), First(LowerIndex), Last(UpperIndex) { - Item* TheAddr = (Item*) Standard::Allocate((Last-First+1) * sizeof(Item)); + Item* TheAddr = !isAllocated? Buf : + (Item*) Standard::Allocate((Last-First+1) * sizeof(Item)); Addr = (Standard_Address) (TheAddr - First); -//cout << " Vector allocation = " << Addr << endl; } math_SingleTab::math_SingleTab(const Item& Tab, @@ -40,7 +43,6 @@ math_SingleTab::math_SingleTab(const Item& Tab, First(LowerIndex), Last(UpperIndex) { -//cout << " Vector allocation = " << Addr << endl; } void math_SingleTab::Init(const Item& InitValue) @@ -53,14 +55,14 @@ void math_SingleTab::Init(const Item& InitValue) math_SingleTab::math_SingleTab(const math_SingleTab& Other) : - isAllocated(Standard_True), + isAllocated(Other.Last - Other.First + 1 > CARRAY_LENGTH(Buf)), First(Other.First), Last(Other.Last) { - Item* TheAddr = (Item*) Standard::Allocate((Last-First+1) * sizeof(Item)); + Item* TheAddr = !isAllocated? Buf : + (Item*) Standard::Allocate((Last-First+1) * sizeof(Item)); Addr = (Standard_Address) (TheAddr - First); -//cout << " Vector allocation = " << Addr << endl; Item* TheOtherAddr = (Item*) Other.Addr; memmove((void*) TheAddr, (const void*) (TheOtherAddr + First), (size_t)(Last - First + 1) * sizeof(Item)); @@ -69,7 +71,6 @@ math_SingleTab::math_SingleTab(const math_SingleTab& Other) : void math_SingleTab::Free() { -//cout << " Vector deallocation = " << Addr << endl; if(isAllocated) { Standard_Address it = (Standard_Address)&((Item*)Addr)[First]; Standard::Free(it);