Commit 6e0981af authored by Maciej Goszczycki's avatar Maciej Goszczycki Committed by Commit Bot

[cleanup] Remove references to FromTopOrLimit.

FromTopOrLimit was both created and renamed to FromAllocationAreaAddress
as part of https://codereview.chromium.org/1900423002/

Bug: v8:8562
Change-Id: I117cc566ed3a420c4419f0f0645c2e200be57def
Reviewed-on: https://chromium-review.googlesource.com/c/1477214Reviewed-by: 's avatarDan Elphick <delphick@chromium.org>
Reviewed-by: 's avatarMichael Lippautz <mlippautz@chromium.org>
Commit-Queue: Maciej Goszczycki <goszczycki@google.com>
Cr-Commit-Position: refs/heads/master@{#59665}
parent 0f1ace8f
...@@ -430,7 +430,7 @@ class MemoryChunk { ...@@ -430,7 +430,7 @@ class MemoryChunk {
if (mark == kNullAddress) return; if (mark == kNullAddress) return;
// Need to subtract one from the mark because when a chunk is full the // Need to subtract one from the mark because when a chunk is full the
// top points to the next address after the chunk, which effectively belongs // top points to the next address after the chunk, which effectively belongs
// to another chunk. See the comment to Page::FromTopOrLimit. // to another chunk. See the comment to Page::FromAllocationAreaAddress.
MemoryChunk* chunk = MemoryChunk::FromAddress(mark - 1); MemoryChunk* chunk = MemoryChunk::FromAddress(mark - 1);
intptr_t new_mark = static_cast<intptr_t>(mark - chunk->address()); intptr_t new_mark = static_cast<intptr_t>(mark - chunk->address());
intptr_t old_mark = 0; intptr_t old_mark = 0;
...@@ -795,7 +795,7 @@ static_assert(sizeof(std::atomic<intptr_t>) == kSystemPointerSize, ...@@ -795,7 +795,7 @@ static_assert(sizeof(std::atomic<intptr_t>) == kSystemPointerSize,
// //
// The only way to get a page pointer is by calling factory methods: // The only way to get a page pointer is by calling factory methods:
// Page* p = Page::FromAddress(addr); or // Page* p = Page::FromAddress(addr); or
// Page* p = Page::FromTopOrLimit(top); // Page* p = Page::FromAllocationAreaAddress(address);
class Page : public MemoryChunk { class Page : public MemoryChunk {
public: public:
static const intptr_t kCopyAllFlags = ~0; static const intptr_t kCopyAllFlags = ~0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment