Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(150)

Unified Diff: src/arm64/macro-assembler-arm64.h

Issue 211323003: ARM64: block veneer pool in InstructionAccurateScope. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/arm64/macro-assembler-arm64.h
diff --git a/src/arm64/macro-assembler-arm64.h b/src/arm64/macro-assembler-arm64.h
index ad706f6b0d9f890401364d6125be969fdd19eaa6..1777c38e35b01e152bc718243985bf0b23d27797 100644
--- a/src/arm64/macro-assembler-arm64.h
+++ b/src/arm64/macro-assembler-arm64.h
@@ -2157,8 +2157,9 @@ class InstructionAccurateScope BASE_EMBEDDED {
{
// Before blocking the const pool, see if it needs to be emitted.
masm_->CheckConstPool(false, true);
+ masm_->CheckVeneerPool(false, true);
- masm_->StartBlockConstPool();
+ masm_->StartBlockPools();
#ifdef DEBUG
if (count != 0) {
masm_->bind(&start_);
@@ -2169,7 +2170,7 @@ class InstructionAccurateScope BASE_EMBEDDED {
}
~InstructionAccurateScope() {
- masm_->EndBlockConstPool();
+ masm_->EndBlockPools();
#ifdef DEBUG
if (start_.is_bound()) {
ASSERT(masm_->SizeOfCodeGeneratedSince(&start_) == size_);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698