1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163
|
/*
Title: memmgr.cpp Memory segment manager
Copyright (c) 2006-7, 2011-12, 2016-17 David C. J. Matthews
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License version 2.1 as published by the Free Software Foundation.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#elif defined(_WIN32)
#include "winconfig.h"
#else
#error "No configuration file"
#endif
#ifdef HAVE_ASSERT_H
#include <assert.h>
#define ASSERT(x) assert(x)
#else
#define ASSERT(x)
#endif
#include <new>
#include "globals.h"
#include "memmgr.h"
#include "osmem.h"
#include "scanaddrs.h"
#include "bitmap.h"
#include "mpoly.h"
#include "diagnostics.h"
#include "statistics.h"
#include "processes.h"
// heap resizing policy option requested on command line
unsigned heapsizingOption = 0;
MemSpace::MemSpace(): SpaceTree(true)
{
spaceType = ST_PERMANENT;
isMutable = false;
bottom = 0;
top = 0;
isOwnSpace = false;
isCode = false;
}
MemSpace::~MemSpace()
{
if (isOwnSpace && bottom != 0)
osMemoryManager->Free(bottom, (char*)top - (char*)bottom);
}
MarkableSpace::MarkableSpace(): spaceLock("Local space")
{
}
LocalMemSpace::LocalMemSpace()
{
spaceType = ST_LOCAL;
upperAllocPtr = lowerAllocPtr = 0;
for (unsigned i = 0; i < NSTARTS; i++)
start[i] = 0;
start_index = 0;
i_marked = m_marked = updated = 0;
allocationSpace = false;
}
bool LocalMemSpace::InitSpace(POLYUNSIGNED size, bool mut)
{
isMutable = mut;
// Allocate the heap itself.
size_t iSpace = size*sizeof(PolyWord);
bottom =
(PolyWord*)osMemoryManager->Allocate(iSpace, PERMISSION_READ|PERMISSION_WRITE);
if (bottom == 0)
return false;
isOwnSpace = true; // Deallocate when we're finished.
// The size may have been rounded up to a block boundary.
size = iSpace/sizeof(PolyWord);
top = bottom + size;
// Initialise all the fields. The partial GC in particular relies on this.
upperAllocPtr = partialGCTop = fullGCRescanStart = fullGCLowerLimit = lowestWeak = top;
lowerAllocPtr = partialGCScan = partialGCRootBase = partialGCRootTop =
fullGCRescanEnd = highestWeak = bottom;
spaceOwner = 0;
allocationSpace = false;
// Bitmap for the space.
return bitmap.Create(size);
}
MemMgr::MemMgr(): allocLock("Memmgr alloc"), codeBitmapLock("Code bitmap")
{
nextIndex = 0;
reservedSpace = 0;
nextAllocator = 0;
defaultSpaceSize = 0;
spaceBeforeMinorGC = 0;
spaceForHeap = 0;
currentAllocSpace = currentHeapSize = 0;
defaultSpaceSize = 1024 * 1024 / sizeof(PolyWord); // 1Mbyte segments.
spaceTree = new SpaceTreeTree;
}
MemMgr::~MemMgr()
{
delete(spaceTree); // Have to do this before we delete the spaces.
for (std::vector<PermanentMemSpace *>::iterator i = pSpaces.begin(); i < pSpaces.end(); i++)
delete(*i);
for (std::vector<LocalMemSpace*>::iterator i = lSpaces.begin(); i < lSpaces.end(); i++)
delete(*i);
for (std::vector<PermanentMemSpace *>::iterator i = eSpaces.begin(); i < eSpaces.end(); i++)
delete(*i);
for (std::vector<StackSpace *>::iterator i = sSpaces.begin(); i < sSpaces.end(); i++)
delete(*i);
for (std::vector<CodeSpace *>::iterator i = cSpaces.begin(); i < cSpaces.end(); i++)
delete(*i);
}
// Create and initialise a new local space and add it to the table.
LocalMemSpace* MemMgr::NewLocalSpace(POLYUNSIGNED size, bool mut)
{
try {
LocalMemSpace *space = new LocalMemSpace;
// Before trying to allocate the heap temporarily allocate the
// reserved space. This ensures that this much space will always
// be available for C stacks and the C++ heap.
void *reservation = 0;
size_t rSpace = reservedSpace*sizeof(PolyWord);
if (reservedSpace != 0) {
reservation = osMemoryManager->Allocate(rSpace, PERMISSION_READ);
if (reservation == 0) {
// Insufficient space for the reservation. Can't allocate this local space.
if (debugOptions & DEBUG_MEMMGR)
Log("MMGR: New local %smutable space: insufficient reservation space\n", mut ? "": "im");
delete space;
return 0;
}
}
bool success = space->InitSpace(size, mut) && AddLocalSpace(space);
if (reservation != 0) osMemoryManager->Free(reservation, rSpace);
if (success)
{
if (debugOptions & DEBUG_MEMMGR)
Log("MMGR: New local %smutable space %p, size=%luk words, bottom=%p, top=%p\n", mut ? "": "im",
space, space->spaceSize()/1024, space->bottom, space->top);
currentHeapSize += space->spaceSize();
globalStats.setSize(PSS_TOTAL_HEAP, currentHeapSize * sizeof(PolyWord));
return space;
}
// If something went wrong.
delete space;
if (debugOptions & DEBUG_MEMMGR)
Log("MMGR: New local %smutable space: insufficient space\n", mut ? "": "im");
return 0;
}
catch (std::bad_alloc&) {
if (debugOptions & DEBUG_MEMMGR)
Log("MMGR: New local %smutable space: \"new\" failed\n", mut ? "": "im");
return 0;
}
}
// Create a local space for initial allocation.
LocalMemSpace *MemMgr::CreateAllocationSpace(POLYUNSIGNED size)
{
LocalMemSpace *result = NewLocalSpace(size, true);
if (result)
{
result->allocationSpace = true;
currentAllocSpace += result->spaceSize();
globalStats.incSize(PSS_ALLOCATION, result->spaceSize()*sizeof(PolyWord));
globalStats.incSize(PSS_ALLOCATION_FREE, result->freeSpace()*sizeof(PolyWord));
}
return result;
}
// If an allocation space has a lot of data left in it after a GC, particularly
// a single large object we should turn it into a local area.
void MemMgr::ConvertAllocationSpaceToLocal(LocalMemSpace *space)
{
ASSERT(space->allocationSpace);
space->allocationSpace = false;
// Currently it is left as a mutable area but if the contents are all
// immutable e.g. a large vector it could be better to turn it into an
// immutable area.
currentAllocSpace -= space->spaceSize();
}
// Add a local memory space to the table.
bool MemMgr::AddLocalSpace(LocalMemSpace *space)
{
// Add to the table.
// Update the B-tree.
try {
AddTree(space);
// The entries in the local table are ordered so that the copy phase of the full
// GC simply has to copy to an entry earlier in the table. Immutable spaces come
// first, followed by mutable spaces and finally allocation spaces.
if (space->allocationSpace)
lSpaces.push_back(space); // Just add at the end
else if (space->isMutable)
{
// Add before the allocation spaces
std::vector<LocalMemSpace*>::iterator i = lSpaces.begin();
while (i != lSpaces.end() && ! (*i)->allocationSpace) i++;
lSpaces.insert(i, space);
}
else
{
// Immutable space: Add before the mutable spaces
std::vector<LocalMemSpace*>::iterator i = lSpaces.begin();
while (i != lSpaces.end() && ! (*i)->isMutable) i++;
lSpaces.insert(i, space);
}
}
catch (std::bad_alloc&) {
RemoveTree(space);
return false;
}
return true;
}
// Create an entry for a permanent space.
PermanentMemSpace* MemMgr::NewPermanentSpace(PolyWord *base, POLYUNSIGNED words,
unsigned flags, unsigned index, unsigned hierarchy /*= 0*/)
{
try {
PermanentMemSpace *space = new PermanentMemSpace;
space->bottom = base;
space->topPointer = space->top = space->bottom + words;
space->spaceType = ST_PERMANENT;
space->isMutable = flags & MTF_WRITEABLE ? true : false;
space->noOverwrite = flags & MTF_NO_OVERWRITE ? true : false;
space->byteOnly = flags & MTF_BYTES ? true : false;
space->isCode = flags & MTF_EXECUTABLE ? true : false;
space->index = index;
space->hierarchy = hierarchy;
if (index >= nextIndex) nextIndex = index+1;
// Extend the permanent memory table and add this space to it.
try {
AddTree(space);
pSpaces.push_back(space);
}
catch (std::exception&) {
RemoveTree(space);
delete space;
return 0;
}
return space;
}
catch (std::bad_alloc&) {
return 0;
}
}
// Delete a local space and remove it from the table.
void MemMgr::DeleteLocalSpace(std::vector<LocalMemSpace*>::iterator &iter)
{
LocalMemSpace *sp = *iter;
if (debugOptions & DEBUG_MEMMGR)
Log("MMGR: Deleted local %s space %p\n", sp->spaceTypeString(), sp);
currentHeapSize -= sp->spaceSize();
globalStats.setSize(PSS_TOTAL_HEAP, currentHeapSize * sizeof(PolyWord));
if (sp->allocationSpace) currentAllocSpace -= sp->spaceSize();
RemoveTree(sp);
delete(sp);
iter = lSpaces.erase(iter);
}
// Remove local areas that are now empty after a GC.
// It isn't clear if we always want to do this.
void MemMgr::RemoveEmptyLocals()
{
for (std::vector<LocalMemSpace*>::iterator i = lSpaces.begin(); i < lSpaces.end(); )
{
LocalMemSpace *space = *i;
if (space->allocatedSpace() == 0)
DeleteLocalSpace(i);
else i++;
}
}
// Create and initialise a new export space and add it to the table.
PermanentMemSpace* MemMgr::NewExportSpace(POLYUNSIGNED size, bool mut, bool noOv, bool code)
{
try {
PermanentMemSpace *space = new PermanentMemSpace;
space->spaceType = ST_EXPORT;
space->isMutable = mut;
space->noOverwrite = noOv;
space->isCode = code;
space->index = nextIndex++;
// Allocate the memory itself.
size_t iSpace = size*sizeof(PolyWord);
space->bottom =
(PolyWord*)osMemoryManager->Allocate(iSpace, PERMISSION_READ|PERMISSION_WRITE|PERMISSION_EXEC);
if (space->bottom == 0)
{
delete space;
if (debugOptions & DEBUG_MEMMGR)
Log("MMGR: New export %smutable space: insufficient space\n", mut ? "" : "im");
return 0;
}
space->isOwnSpace = true;
// The size may have been rounded up to a block boundary.
size = iSpace/sizeof(PolyWord);
space->top = space->bottom + size;
space->topPointer = space->bottom;
if (debugOptions & DEBUG_MEMMGR)
Log("MMGR: New export %smutable %s%sspace %p, size=%luk words, bottom=%p, top=%p\n", mut ? "" : "im",
noOv ? "no-overwrite " : "", code ? "code " : "", space,
space->spaceSize() / 1024, space->bottom, space->top);
// Add to the table.
try {
AddTree(space);
eSpaces.push_back(space);
}
catch (std::exception&) {
RemoveTree(space);
delete space;
if (debugOptions & DEBUG_MEMMGR)
Log("MMGR: New export %smutable space: Adding to tree failed\n", mut ? "" : "im");
return 0;
}
return space;
}
catch (std::bad_alloc&) {
if (debugOptions & DEBUG_MEMMGR)
Log("MMGR: New export %smutable space: \"new\" failed\n", mut ? "" : "im");
return 0;
}
}
void MemMgr::DeleteExportSpaces(void)
{
for (std::vector<PermanentMemSpace *>::iterator i = eSpaces.begin(); i < eSpaces.end(); i++)
{
PermanentMemSpace *space = *i;
RemoveTree(space);
delete(space);
}
eSpaces.clear();
}
// If we have saved the state rather than exported a function we turn the exported
// spaces into permanent ones, removing existing permanent spaces at the same or
// lower level.
bool MemMgr::PromoteExportSpaces(unsigned hierarchy)
{
// Save permanent spaces at a lower hierarchy. Others are converted into
// local spaces. Most or all items will have been copied from these spaces
// into an export space but there could be items reachable only from the stack.
std::vector<PermanentMemSpace*>::iterator i = pSpaces.begin();
while (i != pSpaces.end())
{
PermanentMemSpace *pSpace = *i;
if (pSpace->hierarchy < hierarchy)
i++;
else
{
try {
// Turn this into a local space or a code space
// Remove this from the tree - AddLocalSpace will make an entry for the local version.
RemoveTree(pSpace);
if (pSpace->isCode)
{
CodeSpace *space = new CodeSpace(pSpace->bottom, pSpace->spaceSize());
if (! space->headerMap.Create(space->spaceSize()))
{
if (debugOptions & DEBUG_MEMMGR)
Log("MMGR: Unable to create header map for state space %p\n", pSpace);
return false;
}
if (!AddCodeSpace(space))
{
if (debugOptions & DEBUG_MEMMGR)
Log("MMGR: Unable to convert saved state space %p into code space\n", pSpace);
return false;
}
if (debugOptions & DEBUG_MEMMGR)
Log("MMGR: Converted saved state space %p into code space %p\n", pSpace, space);
// Set the bits in the header map.
for (PolyWord *ptr = space->bottom; ptr < space->top; )
{
PolyObject *obj = (PolyObject*)(ptr+1);
// We may have forwarded this if this has been
// copied to the exported area. Restore the original length word.
if (obj->ContainsForwardingPtr())
{
PolyObject *forwardedTo = obj->FollowForwardingChain();
obj->SetLengthWord(forwardedTo->LengthWord());
}
if (obj->IsCodeObject())
space->headerMap.SetBit(ptr-space->bottom);
ptr += obj->Length() + 1;
}
}
else
{
LocalMemSpace *space = new LocalMemSpace;
space->top = pSpace->top;
// Space is allocated in local areas from the top down. This area is full and
// all data is in the old generation. The area can be recovered by a full GC.
space->bottom = space->upperAllocPtr = space->lowerAllocPtr =
space->fullGCLowerLimit = pSpace->bottom;
space->isMutable = pSpace->isMutable;
space->isOwnSpace = true;
space->isCode = false;
if (! space->bitmap.Create(space->top-space->bottom) || ! AddLocalSpace(space))
{
if (debugOptions & DEBUG_MEMMGR)
Log("MMGR: Unable to convert saved state space %p into local space\n", pSpace);
return false;
}
if (debugOptions & DEBUG_MEMMGR)
Log("MMGR: Converted saved state space %p into local %smutable space %p\n",
pSpace, pSpace->isMutable ? "im": "", space);
currentHeapSize += space->spaceSize();
globalStats.setSize(PSS_TOTAL_HEAP, currentHeapSize * sizeof(PolyWord));
}
i = pSpaces.erase(i);
}
catch (std::bad_alloc&) {
return false;
}
}
}
// Save newly exported spaces.
for(std::vector<PermanentMemSpace *>::iterator j = eSpaces.begin(); j < eSpaces.end(); j++)
{
PermanentMemSpace *space = *j;
space->hierarchy = hierarchy; // Set the hierarchy of the new spaces.
space->spaceType = ST_PERMANENT;
// Put a dummy object to fill up the unused space.
if (space->topPointer != space->top)
FillUnusedSpace(space->topPointer, space->top - space->topPointer);
// Put in a dummy object to fill the rest of the space.
pSpaces.push_back(space);
}
eSpaces.clear();
return true;
}
// Before we import a hierarchical saved state we need to turn any previously imported
// spaces into local spaces.
bool MemMgr::DemoteImportSpaces()
{
return PromoteExportSpaces(1); // Only truly permanent spaces are retained.
}
// Return the space for a given index
PermanentMemSpace *MemMgr::SpaceForIndex(unsigned index)
{
for (std::vector<PermanentMemSpace*>::iterator i = pSpaces.begin(); i < pSpaces.end(); i++)
{
PermanentMemSpace *space = *i;
if (space->index == index)
return space;
}
return NULL;
}
// In several places we assume that segments are filled with valid
// objects. This fills unused memory with one or more "byte" objects.
void MemMgr::FillUnusedSpace(PolyWord *base, POLYUNSIGNED words)
{
PolyWord *pDummy = base+1;
while (words > 0)
{
POLYUNSIGNED oSize = words;
// If the space is larger than the maximum object size
// we will need several objects.
if (words > MAX_OBJECT_SIZE) oSize = MAX_OBJECT_SIZE;
else oSize = words-1;
// Make this a byte object so it's always skipped.
((PolyObject*)pDummy)->SetLengthWord(oSize, F_BYTE_OBJ);
words -= oSize+1;
pDummy += oSize+1;
}
}
// Allocate an area of the heap of at least minWords and at most maxWords.
// This is used both when allocating single objects (when minWords and maxWords
// are the same) and when allocating heap segments. If there is insufficient
// space to satisfy the minimum it will return 0.
PolyWord *MemMgr::AllocHeapSpace(POLYUNSIGNED minWords, POLYUNSIGNED &maxWords, bool doAllocation)
{
PLocker locker(&allocLock);
// We try to distribute the allocations between the memory spaces
// so that at the next GC we don't have all the most recent cells in
// one space. The most recent cells will be more likely to survive a
// GC so distibuting them improves the load balance for a multi-thread GC.
nextAllocator++;
if (nextAllocator > gMem.lSpaces.size()) nextAllocator = 0;
unsigned j = nextAllocator;
for (std::vector<LocalMemSpace*>::iterator i = lSpaces.begin(); i < lSpaces.end(); i++)
{
if (j >= gMem.lSpaces.size()) j = 0;
LocalMemSpace *space = gMem.lSpaces[j++];
if (space->allocationSpace)
{
POLYUNSIGNED available = space->freeSpace();
if (available > 0 && available >= minWords)
{
// Reduce the maximum value if we had less than that.
if (available < maxWords)
maxWords = available;
PolyWord *result = space->lowerAllocPtr; // Return the address.
if (doAllocation)
space->lowerAllocPtr += maxWords; // Allocate it.
return result;
}
}
}
// There isn't space in the existing areas - can we create a new area?
// The reason we don't have enough space could simply be that we want to
// allocate an object larger than the default space size. Try deleting
// some other spaces to bring currentAllocSpace below spaceBeforeMinorGC - minWords.
if (minWords > defaultSpaceSize && minWords < spaceBeforeMinorGC)
RemoveExcessAllocation(spaceBeforeMinorGC - minWords);
if (currentAllocSpace/* + minWords */ < spaceBeforeMinorGC)
{
// i.e. the current allocation space is less than the space allowed for the minor GC
// but it may be that allocating this object will take us over the limit. We allow
// that to happen so that we can successfully allocate very large objects even if
// we have a new GC very shortly.
POLYUNSIGNED spaceSize = defaultSpaceSize;
if (minWords > spaceSize) spaceSize = minWords; // If we really want a large space.
LocalMemSpace *space = CreateAllocationSpace(spaceSize);
if (space == 0) return 0; // Can't allocate it
// Allocate our space in this new area.
POLYUNSIGNED available = space->freeSpace();
ASSERT(available >= minWords);
if (available < maxWords)
maxWords = available;
PolyWord *result = space->lowerAllocPtr; // Return the address.
if (doAllocation)
space->lowerAllocPtr += maxWords; // Allocate it.
return result;
}
return 0; // There isn't space even for the minimum.
}
CodeSpace::CodeSpace(PolyWord *start, POLYUNSIGNED spaceSize)
{
isOwnSpace = true;
bottom = start;
top = start+spaceSize;
isMutable = true; // Make it mutable just in case. This will cause it to be scanned.
isOwnSpace = true;
isCode = true;
spaceType = ST_CODE;
largestFree = spaceSize-1;
firstFree = start;
}
CodeSpace *MemMgr::NewCodeSpace(POLYUNSIGNED size)
{
// Allocate a new area and add it at the end of the table.
CodeSpace *allocSpace = 0;
// Allocate a new mutable, code space. N.B. This may round up "actualSize".
size_t actualSize = size * sizeof(PolyWord);
PolyWord *mem =
(PolyWord*)osMemoryManager->Allocate(actualSize,
PERMISSION_READ | PERMISSION_WRITE | PERMISSION_EXEC);
if (mem != 0)
{
try {
allocSpace = new CodeSpace(mem, actualSize / sizeof(PolyWord));
if (!allocSpace->headerMap.Create(allocSpace->spaceSize()))
{
delete allocSpace;
allocSpace = 0;
}
else if (!AddCodeSpace(allocSpace))
{
delete allocSpace;
allocSpace = 0;
}
else if (debugOptions & DEBUG_MEMMGR)
Log("MMGR: New code space %p allocated at %p size %lu\n", allocSpace, allocSpace->bottom, allocSpace->spaceSize());
// Put in a byte cell to mark the area as unallocated.
FillUnusedSpace(allocSpace->bottom, allocSpace->spaceSize());
}
catch (std::bad_alloc&)
{
}
if (allocSpace == 0)
{
osMemoryManager->Free(mem, actualSize);
mem = 0;
}
}
return allocSpace;
}
// Allocate memory for a piece of code. This needs to be both mutable and executable,
// at least for native code. The interpreted version need not (should not?) make the
// area executable. It will not be executed until the mutable bit has been cleared.
// Once code is allocated it is not GCed or moved.
// initCell is a byte cell that is copied into the new code area.
PolyObject*MemMgr::AllocCodeSpace(PolyObject *initCell)
{
PLocker locker(&codeSpaceLock);
// Search the code spaces until we find a free area big enough.
size_t i = 0;
POLYUNSIGNED requiredSize = initCell->Length();
while (true)
{
if (i != cSpaces.size())
{
CodeSpace *space = cSpaces[i];
if (space->largestFree >= requiredSize)
{
POLYUNSIGNED actualLargest = 0;
while (space->firstFree < space->top)
{
PolyObject *obj = (PolyObject*)(space->firstFree+1);
// Skip over allocated areas or free areas that are too small.
if (obj->IsCodeObject() || obj->Length() < 8)
space->firstFree += obj->Length()+1;
else break;
}
PolyWord *pt = space->firstFree;
while (pt < space->top)
{
PolyObject *obj = (PolyObject*)(pt+1);
POLYUNSIGNED length = obj->Length();
if (obj->IsByteObject())
{
if (length >= requiredSize)
{
// Free and large enough
PolyWord *next = pt+requiredSize+1;
if (requiredSize < length)
FillUnusedSpace(next, length-requiredSize);
space->isMutable = true; // Set this - it ensures the area is scanned on GC.
space->headerMap.SetBit(pt-space->bottom); // Set the "header" bit
// Set the length word of the code area and copy the byte cell in.
// The code bit must be set before the lock is released to ensure
// another thread doesn't reuse this.
obj->SetLengthWord(requiredSize, F_CODE_OBJ|F_MUTABLE_BIT);
memcpy(obj, initCell, requiredSize * sizeof(PolyWord));
return obj;
}
else if (length >= actualLargest) actualLargest = length+1;
}
pt += length+1;
}
// Reached the end without finding what we wanted. Update the largest size.
space->largestFree = actualLargest;
}
i++; // Next area
}
else
{
// Allocate a new area and add it at the end of the table.
CodeSpace *allocSpace = NewCodeSpace(requiredSize + 1);
if (allocSpace == 0)
return 0; // Try a GC.
}
}
}
// Remove code areas that are completely empty. This is probably better than waiting to reuse them.
// It's particularly important if we reload a saved state because the code areas for old saved states
// are made into local code areas just in case they are currently in use or reachable.
void MemMgr::RemoveEmptyCodeAreas()
{
for (std::vector<CodeSpace *>::iterator i = cSpaces.begin(); i != cSpaces.end(); )
{
CodeSpace *space = *i;
PolyObject *start = (PolyObject *)(space->bottom+1);
if (start->IsByteObject() && start->Length() == space->spaceSize()-1)
{
if (debugOptions & DEBUG_MEMMGR)
Log("MMGR: Deleted code space %p\n", space);
// We have an empty cell that fills the whole space.
RemoveTree(space);
delete(space);
i = cSpaces.erase(i);
}
else i++;
}
}
// Add a code space to the tables. Used both for newly compiled code and also demoted saved spaces.
bool MemMgr::AddCodeSpace(CodeSpace *space)
{
try {
AddTree(space);
cSpaces.push_back(space);
}
catch (std::exception&) {
RemoveTree(space);
return false;
}
return true;
}
// Check that we have sufficient space for an allocation to succeed.
// Called from the GC to ensure that we will not get into an infinite
// loop trying to allocate, failing and garbage-collecting again.
bool MemMgr::CheckForAllocation(POLYUNSIGNED words)
{
POLYUNSIGNED allocated = 0;
return AllocHeapSpace(words, allocated, false) != 0;
}
// Adjust the allocation area by removing free areas so that the total
// size of the allocation area is less than the required value. This
// is used after the quick GC and also if we need to allocate a large
// object.
void MemMgr::RemoveExcessAllocation(POLYUNSIGNED words)
{
// First remove any non-standard allocation areas.
for (std::vector<LocalMemSpace*>::iterator i = lSpaces.begin(); i < lSpaces.end();)
{
LocalMemSpace *space = *i;
if (space->allocationSpace && space->allocatedSpace() == 0 &&
space->spaceSize() != defaultSpaceSize)
DeleteLocalSpace(i);
else i++;
}
for (std::vector<LocalMemSpace*>::iterator i = lSpaces.begin(); currentAllocSpace > words && i < lSpaces.end(); )
{
LocalMemSpace *space = *i;
if (space->allocationSpace && space->allocatedSpace() == 0)
DeleteLocalSpace(i);
else i++;
}
}
// Return number of words free in all allocation spaces.
POLYUNSIGNED MemMgr::GetFreeAllocSpace()
{
POLYUNSIGNED freeSpace = 0;
PLocker lock(&allocLock);
for (std::vector<LocalMemSpace*>::iterator i = lSpaces.begin(); i < lSpaces.end(); i++)
{
LocalMemSpace *space = *i;
if (space->allocationSpace)
freeSpace += space->freeSpace();
}
return freeSpace;
}
StackSpace *MemMgr::NewStackSpace(POLYUNSIGNED size)
{
PLocker lock(&stackSpaceLock);
try {
StackSpace *space = new StackSpace;
size_t iSpace = size*sizeof(PolyWord);
space->bottom =
(PolyWord*)osMemoryManager->Allocate(iSpace, PERMISSION_READ|PERMISSION_WRITE);
if (space->bottom == 0)
{
if (debugOptions & DEBUG_MEMMGR)
Log("MMGR: New stack space: insufficient space\n");
delete space;
return 0;
}
// The size may have been rounded up to a block boundary.
size = iSpace/sizeof(PolyWord);
space->top = space->bottom + size;
space->spaceType = ST_STACK;
space->isMutable = true;
// Add the stack space to the tree. This ensures that operations such as
// LocalSpaceForAddress will work for addresses within the stack. We can
// get them in the RTS with functions such as quot_rem and exception stack.
// It's not clear whether they really appear in the GC.
try {
AddTree(space);
sSpaces.push_back(space);
}
catch (std::exception&) {
RemoveTree(space);
delete space;
return 0;
}
if (debugOptions & DEBUG_MEMMGR)
Log("MMGR: New stack space %p allocated at %p size %lu\n", space, space->bottom, space->spaceSize());
return space;
}
catch (std::bad_alloc&) {
if (debugOptions & DEBUG_MEMMGR)
Log("MMGR: New stack space: \"new\" failed\n");
return 0;
}
}
// If checkmem is given write protect the immutable areas except during a GC.
void MemMgr::ProtectImmutable(bool on)
{
if (debugOptions & DEBUG_CHECK_OBJECTS)
{
for (std::vector<LocalMemSpace*>::iterator i = lSpaces.begin(); i < lSpaces.end(); i++)
{
LocalMemSpace *space = *i;
if (! space->isMutable)
osMemoryManager->SetPermissions(space->bottom, (char*)space->top - (char*)space->bottom,
on ? PERMISSION_READ|PERMISSION_EXEC : PERMISSION_READ|PERMISSION_EXEC|PERMISSION_WRITE);
}
}
}
bool MemMgr::GrowOrShrinkStack(TaskData *taskData, POLYUNSIGNED newSize)
{
StackSpace *space = taskData->stack;
size_t iSpace = newSize*sizeof(PolyWord);
PolyWord *newSpace = (PolyWord*)osMemoryManager->Allocate(iSpace, PERMISSION_READ|PERMISSION_WRITE);
if (newSpace == 0)
{
if (debugOptions & DEBUG_MEMMGR)
Log("MMGR: Unable to change size of stack %p from %lu to %lu: insufficient space\n",
space, space->spaceSize(), newSize);
return false;
}
// The size may have been rounded up to a block boundary.
newSize = iSpace/sizeof(PolyWord);
try {
AddTree(space, newSpace, newSpace+newSize);
}
catch (std::bad_alloc&) {
RemoveTree(space, newSpace, newSpace+newSize);
delete space;
return 0;
}
taskData->CopyStackFrame(space->stack(), space->spaceSize(), (StackObject*)newSpace, newSize);
if (debugOptions & DEBUG_MEMMGR)
Log("MMGR: Size of stack %p changed from %lu to %lu at %p\n", space, space->spaceSize(), newSize, newSpace);
RemoveTree(space); // Remove it BEFORE freeing the space - another thread may allocate it
PolyWord *oldBottom = space->bottom;
size_t oldSize = (char*)space->top - (char*)space->bottom;
space->bottom = newSpace; // Switch this before freeing - We could get a profile trap during the free
space->top = newSpace+newSize;
osMemoryManager->Free(oldBottom, oldSize);
return true;
}
// Delete a stack when a thread has finished.
// This can be called by an ML thread so needs an interlock.
bool MemMgr::DeleteStackSpace(StackSpace *space)
{
PLocker lock(&stackSpaceLock);
for (std::vector<StackSpace *>::iterator i = sSpaces.begin(); i < sSpaces.end(); i++)
{
if (*i == space)
{
RemoveTree(space);
delete space;
sSpaces.erase(i);
if (debugOptions & DEBUG_MEMMGR)
Log("MMGR: Deleted stack space %p\n", space);
return true;
}
}
ASSERT(false); // It should always be in the table.
return false;
}
SpaceTreeTree::SpaceTreeTree(): SpaceTree(false)
{
for (unsigned i = 0; i < 256; i++)
tree[i] = 0;
}
SpaceTreeTree::~SpaceTreeTree()
{
for (unsigned i = 0; i < 256; i++)
{
if (tree[i] && ! tree[i]->isSpace)
delete(tree[i]);
}
}
// Add and remove entries in the space tree.
void MemMgr::AddTree(MemSpace *space, PolyWord *startS, PolyWord *endS)
{
// It isn't clear we need to lock here but it's probably sensible.
PLocker lock(&spaceTreeLock);
AddTreeRange(&spaceTree, space, (uintptr_t)startS, (uintptr_t)endS);
}
void MemMgr::RemoveTree(MemSpace *space, PolyWord *startS, PolyWord *endS)
{
PLocker lock(&spaceTreeLock);
RemoveTreeRange(&spaceTree, space, (uintptr_t)startS, (uintptr_t)endS);
}
void MemMgr::AddTreeRange(SpaceTree **tt, MemSpace *space, uintptr_t startS, uintptr_t endS)
{
if (*tt == 0)
*tt = new SpaceTreeTree;
ASSERT(! (*tt)->isSpace);
SpaceTreeTree *t = (SpaceTreeTree*)*tt;
const unsigned shift = (sizeof(void*)-1) * 8; // Takes the high-order byte
uintptr_t r = startS >> shift;
ASSERT(r < 256);
const uintptr_t s = endS == 0 ? 256 : endS >> shift;
ASSERT(s >= r && s <= 256);
if (r == s) // Wholly within this entry
AddTreeRange(&(t->tree[r]), space, startS << 8, endS << 8);
else
{
// Deal with any remainder at the start.
if ((r << shift) != startS)
{
AddTreeRange(&(t->tree[r]), space, startS << 8, 0 /*End of range*/);
r++;
}
// Whole entries.
while (r < s)
{
ASSERT(t->tree[r] == 0);
t->tree[r] = space;
r++;
}
// Remainder at the end.
if ((s << shift) != endS)
AddTreeRange(&(t->tree[r]), space, 0, endS << 8);
}
}
// Remove an entry from the tree for a range. Strictly speaking we don't need the
// space argument here but it's useful as a check.
// This may be called to remove a partially installed structure if we have
// run out of space in AddTreeRange.
void MemMgr::RemoveTreeRange(SpaceTree **tt, MemSpace *space, uintptr_t startS, uintptr_t endS)
{
SpaceTreeTree *t = (SpaceTreeTree*)*tt;
if (t == 0)
return; // This can only occur if we're recovering.
ASSERT(! t->isSpace);
const unsigned shift = (sizeof(void*)-1) * 8;
uintptr_t r = startS >> shift;
const uintptr_t s = endS == 0 ? 256 : endS >> shift;
if (r == s)
RemoveTreeRange(&(t->tree[r]), space, startS << 8, endS << 8);
else
{
// Deal with any remainder at the start.
if ((r << shift) != startS)
{
RemoveTreeRange(&(t->tree[r]), space, startS << 8, 0);
r++;
}
// Whole entries.
while (r < s)
{
ASSERT(t->tree[r] == space || t->tree[r] == 0 /* Recovery only */);
t->tree[r] = 0;
r++;
}
// Remainder at the end.
if ((s << shift) != endS)
RemoveTreeRange(&(t->tree[r]), space, 0, endS << 8);
}
// See if the whole vector is now empty.
for (unsigned j = 0; j < 256; j++)
{
if (t->tree[j])
return; // It's not empty - we're done.
}
delete(t);
*tt = 0;
}
POLYUNSIGNED MemMgr::AllocatedInAlloc()
{
POLYUNSIGNED inAlloc = 0;
for (std::vector<LocalMemSpace*>::iterator i = lSpaces.begin(); i < lSpaces.end(); i++)
{
LocalMemSpace *sp = *i;
if (sp->allocationSpace) inAlloc += sp->allocatedSpace();
}
return inAlloc;
}
// Report heap sizes and occupancy before and after GC
void MemMgr::ReportHeapSizes(const char *phase)
{
POLYUNSIGNED alloc = 0, nonAlloc = 0, inAlloc = 0, inNonAlloc = 0;
for (std::vector<LocalMemSpace*>::iterator i = lSpaces.begin(); i < lSpaces.end(); i++)
{
LocalMemSpace *sp = *i;
if (sp->allocationSpace)
{
alloc += sp->spaceSize();
inAlloc += sp->allocatedSpace();
}
else
{
nonAlloc += sp->spaceSize();
inNonAlloc += sp->allocatedSpace();
}
}
Log("Heap: %s Major heap used ", phase);
LogSize(inNonAlloc); Log(" of ");
LogSize(nonAlloc);
Log(" (%1.0f%%). Alloc space used ", (float)inNonAlloc / (float)nonAlloc * 100.0F);
LogSize(inAlloc); Log(" of ");
LogSize(alloc);
Log(" (%1.0f%%). Total space ", (float)inAlloc / (float)alloc * 100.0F);
LogSize(spaceForHeap);
Log(" %1.0f%% full.\n", (float)(inAlloc + inNonAlloc) / (float)spaceForHeap * 100.0F);
Log("Heap: Local spaces %u, permanent spaces %u, code spaces %u, stack spaces %u\n",
lSpaces.size(), pSpaces.size(), cSpaces.size(), sSpaces.size());
POLYUNSIGNED cTotal = 0, cOccupied = 0;
for (std::vector<CodeSpace*>::iterator c = cSpaces.begin(); c != cSpaces.end(); c++)
{
cTotal += (*c)->spaceSize();
PolyWord *pt = (*c)->bottom;
while (pt < (*c)->top)
{
pt++;
PolyObject *obj = (PolyObject*)pt;
if (obj->ContainsForwardingPtr())
{
obj = obj->FollowForwardingChain();
pt += obj->Length();
}
else
{
if (obj->IsCodeObject())
cOccupied += obj->Length() + 1;
pt += obj->Length();
}
}
}
Log("Heap: Code area: total "); LogSize(cTotal); Log(" occupied: "); LogSize(cOccupied); Log("\n");
POLYUNSIGNED stackSpace = 0;
for (std::vector<StackSpace*>::iterator s = sSpaces.begin(); s != sSpaces.end(); s++)
{
stackSpace += (*s)->spaceSize();
}
Log("Heap: Stack area: total "); LogSize(stackSpace); Log("\n");
}
// Profiling - Find a code object or return zero if not found.
// This can be called on a "user" thread.
PolyObject *MemMgr::FindCodeObject(const byte *addr)
{
MemSpace *space = SpaceForAddress(addr);
if (space == 0) return 0;
Bitmap *profMap = 0;
if (! space->isCode) return 0;
if (space->spaceType == ST_CODE)
{
CodeSpace *cSpace = (CodeSpace*)space;
profMap = &cSpace->headerMap;
}
else if (space->spaceType == ST_PERMANENT)
{
PermanentMemSpace *pSpace = (PermanentMemSpace*)space;
profMap = &pSpace->profileCode;
}
else return 0; // Must be in code or permanent code.
// For the permanent areas the header maps are created and initialised on demand.
if (! profMap->Created())
{
PLocker lock(&codeBitmapLock);
if (! profMap->Created()) // Second check now we've got the lock.
{
// Create the bitmap. If it failed just say "not in this area"
if (! profMap->Create(space->spaceSize()))
return 0;
// Set the first bit before releasing the lock.
profMap->SetBit(0);
}
}
// A bit is set if it is a length word.
while ((POLYUNSIGNED)addr & (sizeof(POLYUNSIGNED)-1)) addr--; // Make it word aligned
PolyWord *wordAddr = (PolyWord*)addr;
// Work back to find the first set bit before this.
// Normally we will find one but if we're looking up a value that
// is actually an integer it might be in a piece of code that is now free.
POLYUNSIGNED bitOffset = profMap->FindLastSet(wordAddr - space->bottom);
if (space->spaceType == ST_CODE)
{
PolyWord *ptr = space->bottom+bitOffset;
if (ptr >= space->top) return 0;
// This will find the last non-free code cell or the first cell.
// Return zero if the value was not actually in the cell or it wasn't code.
PolyObject *obj = (PolyObject*)(ptr+1);
PolyObject *lastObj = obj->FollowForwardingChain();
// We normally replace forwarding pointers but when scanning to update
// addresses after a saved state we may not have yet done that.
if (wordAddr > ptr && wordAddr < ptr + 1 + lastObj->Length() && lastObj->IsCodeObject())
return obj;
else return 0;
}
// Permanent area - the bits are set on demand.
// Now work forward, setting any bits if necessary. We don't need a lock
// because this is monotonic.
for (;;)
{
PolyWord *ptr = space->bottom+bitOffset;
if (ptr >= space->top) return 0;
PolyObject *obj = (PolyObject*)(ptr+1);
ASSERT(obj->ContainsNormalLengthWord());
if (wordAddr > ptr && wordAddr < ptr + obj->Length())
return obj;
bitOffset += obj->Length()+1;
profMap->SetBit(bitOffset);
}
return 0;
}
// Remove profiling bitmaps from permanent areas to free up memory.
void MemMgr::RemoveProfilingBitmaps()
{
for (std::vector<PermanentMemSpace*>::iterator i = pSpaces.begin(); i < pSpaces.end(); i++)
(*i)->profileCode.Destroy();
}
MemMgr gMem; // The one and only memory manager object
|