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

Unified Diff: src/v8globals.h

Issue 191233003: Add out-of-line constant pool support to Arm. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addresss comments 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
« src/heap.cc ('K') | « src/objects.h ('k') | src/x64/assembler-x64.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/v8globals.h
diff --git a/src/v8globals.h b/src/v8globals.h
index 2e0ead3a795661dfb4fa01a89eb1e3f6d240a4f2..77a507d42bf6f4723dfe078dabdbdcdd56f1372e 100644
--- a/src/v8globals.h
+++ b/src/v8globals.h
@@ -238,7 +238,18 @@ struct CodeDesc {
int buffer_size;
int instr_size;
int reloc_size;
+ int constant_pool_64bit_count;
+ int constant_pool_code_ptr_count;
+ int constant_pool_heap_ptr_count;
+ int constant_pool_32bit_count;
Assembler* origin;
+
+ inline bool has_empty_constant_pool() const {
+ return constant_pool_64bit_count == 0 &&
+ constant_pool_code_ptr_count == 0 &&
+ constant_pool_heap_ptr_count == 0 &&
+ constant_pool_32bit_count == 0;
+ }
};
« src/heap.cc ('K') | « src/objects.h ('k') | src/x64/assembler-x64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698