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

Side by Side Diff: src/log.h

Issue 12340112: Polymorphism support for load IC. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Added ARM port, introduced GenerateTailCall Created 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/ic.cc ('k') | src/mips/stub-cache-mips.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 V(EVAL_TAG, "Eval") \ 128 V(EVAL_TAG, "Eval") \
129 V(FUNCTION_TAG, "Function") \ 129 V(FUNCTION_TAG, "Function") \
130 V(KEYED_LOAD_IC_TAG, "KeyedLoadIC") \ 130 V(KEYED_LOAD_IC_TAG, "KeyedLoadIC") \
131 V(KEYED_LOAD_POLYMORPHIC_IC_TAG, "KeyedLoadPolymorphicIC") \ 131 V(KEYED_LOAD_POLYMORPHIC_IC_TAG, "KeyedLoadPolymorphicIC") \
132 V(KEYED_EXTERNAL_ARRAY_LOAD_IC_TAG, "KeyedExternalArrayLoadIC") \ 132 V(KEYED_EXTERNAL_ARRAY_LOAD_IC_TAG, "KeyedExternalArrayLoadIC") \
133 V(KEYED_STORE_IC_TAG, "KeyedStoreIC") \ 133 V(KEYED_STORE_IC_TAG, "KeyedStoreIC") \
134 V(KEYED_STORE_POLYMORPHIC_IC_TAG, "KeyedStorePolymorphicIC") \ 134 V(KEYED_STORE_POLYMORPHIC_IC_TAG, "KeyedStorePolymorphicIC") \
135 V(KEYED_EXTERNAL_ARRAY_STORE_IC_TAG, "KeyedExternalArrayStoreIC") \ 135 V(KEYED_EXTERNAL_ARRAY_STORE_IC_TAG, "KeyedExternalArrayStoreIC") \
136 V(LAZY_COMPILE_TAG, "LazyCompile") \ 136 V(LAZY_COMPILE_TAG, "LazyCompile") \
137 V(LOAD_IC_TAG, "LoadIC") \ 137 V(LOAD_IC_TAG, "LoadIC") \
138 V(LOAD_POLYMORPHIC_IC_TAG, "LoadPolymorphicIC") \
138 V(REG_EXP_TAG, "RegExp") \ 139 V(REG_EXP_TAG, "RegExp") \
139 V(SCRIPT_TAG, "Script") \ 140 V(SCRIPT_TAG, "Script") \
140 V(STORE_IC_TAG, "StoreIC") \ 141 V(STORE_IC_TAG, "StoreIC") \
141 V(STUB_TAG, "Stub") \ 142 V(STUB_TAG, "Stub") \
142 V(NATIVE_FUNCTION_TAG, "Function") \ 143 V(NATIVE_FUNCTION_TAG, "Function") \
143 V(NATIVE_LAZY_COMPILE_TAG, "LazyCompile") \ 144 V(NATIVE_LAZY_COMPILE_TAG, "LazyCompile") \
144 V(NATIVE_SCRIPT_TAG, "Script") 145 V(NATIVE_SCRIPT_TAG, "Script")
145 // Note that 'NATIVE_' cases for functions and scripts are mapped onto 146 // Note that 'NATIVE_' cases for functions and scripts are mapped onto
146 // original tags when writing to the log. 147 // original tags when writing to the log.
147 148
(...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after
544 // Class that extracts stack trace, used for profiling. 545 // Class that extracts stack trace, used for profiling.
545 class StackTracer : public AllStatic { 546 class StackTracer : public AllStatic {
546 public: 547 public:
547 static void Trace(Isolate* isolate, TickSample* sample); 548 static void Trace(Isolate* isolate, TickSample* sample);
548 }; 549 };
549 550
550 } } // namespace v8::internal 551 } } // namespace v8::internal
551 552
552 553
553 #endif // V8_LOG_H_ 554 #endif // V8_LOG_H_
OLDNEW
« no previous file with comments | « src/ic.cc ('k') | src/mips/stub-cache-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698