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

Unified Diff: src/objects.h

Issue 16901014: CPUProfiler: Simplify logging part of CreateCodeEvent functions. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: comments addressed Created 7 years, 6 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 | « src/log-utils.cc ('k') | src/objects.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects.h
diff --git a/src/objects.h b/src/objects.h
index ef7548fc2a17f7f6fe01ab22ea1311fe02a352bf..417411d15524222bfb59708acd5b9a6f8589e24d 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -4454,7 +4454,9 @@ class Code: public HeapObject {
V(BINARY_OP_IC) \
V(COMPARE_IC) \
V(COMPARE_NIL_IC) \
- V(TO_BOOLEAN_IC)
+ V(TO_BOOLEAN_IC) \
+ V(REGEXP)
+
enum Kind {
#define DEFINE_CODE_KIND_ENUM(name) name,
@@ -4463,7 +4465,6 @@ class Code: public HeapObject {
// Pseudo-kinds.
LAST_CODE_KIND = TO_BOOLEAN_IC,
- REGEXP = BUILTIN,
FIRST_IC_KIND = LOAD_IC,
LAST_IC_KIND = TO_BOOLEAN_IC
};
« no previous file with comments | « src/log-utils.cc ('k') | src/objects.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698