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

Unified Diff: src/deoptimizer.cc

Issue 6410029: ARM: Implement PatchStackCheckCodeAt and RevertStackCheckCode. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Minor edits. Created 9 years, 11 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
« src/arm/deoptimizer-arm.cc ('K') | « src/arm/deoptimizer-arm.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/deoptimizer.cc
diff --git a/src/deoptimizer.cc b/src/deoptimizer.cc
index 00e7d0ee2cab70655ebdf3613f34cc93de44d049..7f0781cd550e1f151905a02b005508963d1ed04f 100644
--- a/src/deoptimizer.cc
+++ b/src/deoptimizer.cc
@@ -820,11 +820,22 @@ void Deoptimizer::PatchStackCheckCode(Code* unoptimized_code,
unoptimized_code->stack_check_table_offset();
uint32_t table_length = Memory::uint32_at(stack_check_cursor);
stack_check_cursor += kIntSize;
+ Address first_site = 0;
+ Address last_site = 0;
for (uint32_t i = 0; i < table_length; ++i) {
uint32_t pc_offset = Memory::uint32_at(stack_check_cursor + kIntSize);
Address pc_after = unoptimized_code->instruction_start() + pc_offset;
PatchStackCheckCodeAt(pc_after, check_code, replacement_code);
stack_check_cursor += 2 * kIntSize;
+ if (first_site == 0) {
+ first_site = pc_after;
+ }
+ last_site = pc_after;
+ }
+ if (table_length > 0) {
+ // Flush instruction cache for the patched code blocks.
+ uint32_t length = last_site - first_site + patch_size();
Søren Thygesen Gjesse 2011/02/04 13:54:27 If you use the CodePatcher the i-cache flushing is
Karl Klose 2011/02/04 18:06:49 Done. I used the code patcher and removed the flus
+ CPU::FlushICache(first_site - patch_size(), length);
}
}
@@ -839,11 +850,22 @@ void Deoptimizer::RevertStackCheckCode(Code* unoptimized_code,
unoptimized_code->stack_check_table_offset();
uint32_t table_length = Memory::uint32_at(stack_check_cursor);
stack_check_cursor += kIntSize;
+ Address first_site = 0;
+ Address last_site = 0;
for (uint32_t i = 0; i < table_length; ++i) {
uint32_t pc_offset = Memory::uint32_at(stack_check_cursor + kIntSize);
Address pc_after = unoptimized_code->instruction_start() + pc_offset;
RevertStackCheckCodeAt(pc_after, check_code, replacement_code);
stack_check_cursor += 2 * kIntSize;
+ if (first_site == 0) {
+ first_site = pc_after;
+ }
+ last_site = pc_after;
+ }
+ if (table_length > 0) {
+ // Flush instruction cache for the patched code blocks.
+ uint32_t length = last_site - first_site + patch_size();
Søren Thygesen Gjesse 2011/02/04 13:54:27 Ditto.
Karl Klose 2011/02/04 18:06:49 Done. I used the code patcher and removed the flus
+ CPU::FlushICache(first_site - patch_size(), length);
}
}
« src/arm/deoptimizer-arm.cc ('K') | « src/arm/deoptimizer-arm.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698