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

Side by Side Diff: src/log.h

Issue 96083005: Remove Reloc::Mode CODE_TARGET_CONTEXT (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: REBASE Created 7 years 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/full-codegen-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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 V(REPEAT_META_EVENT, "repeat") \ 112 V(REPEAT_META_EVENT, "repeat") \
113 V(BUILTIN_TAG, "Builtin") \ 113 V(BUILTIN_TAG, "Builtin") \
114 V(CALL_DEBUG_BREAK_TAG, "CallDebugBreak") \ 114 V(CALL_DEBUG_BREAK_TAG, "CallDebugBreak") \
115 V(CALL_DEBUG_PREPARE_STEP_IN_TAG, "CallDebugPrepareStepIn") \ 115 V(CALL_DEBUG_PREPARE_STEP_IN_TAG, "CallDebugPrepareStepIn") \
116 V(CALL_IC_TAG, "CallIC") \ 116 V(CALL_IC_TAG, "CallIC") \
117 V(CALL_INITIALIZE_TAG, "CallInitialize") \ 117 V(CALL_INITIALIZE_TAG, "CallInitialize") \
118 V(CALL_MEGAMORPHIC_TAG, "CallMegamorphic") \ 118 V(CALL_MEGAMORPHIC_TAG, "CallMegamorphic") \
119 V(CALL_MISS_TAG, "CallMiss") \ 119 V(CALL_MISS_TAG, "CallMiss") \
120 V(CALL_NORMAL_TAG, "CallNormal") \ 120 V(CALL_NORMAL_TAG, "CallNormal") \
121 V(CALL_PRE_MONOMORPHIC_TAG, "CallPreMonomorphic") \ 121 V(CALL_PRE_MONOMORPHIC_TAG, "CallPreMonomorphic") \
122 V(LOAD_INITIALIZE_TAG, "LoadInitialize") \
123 V(LOAD_PREMONOMORPHIC_TAG, "LoadPreMonomorphic") \
124 V(LOAD_MEGAMORPHIC_TAG, "LoadMegamorphic") \
125 V(STORE_INITIALIZE_TAG, "StoreInitialize") \
126 V(STORE_PREMONOMORPHIC_TAG, "StorePreMonomorphic") \
127 V(STORE_GENERIC_TAG, "StoreGeneric") \
128 V(STORE_MEGAMORPHIC_TAG, "StoreMegamorphic") \
122 V(KEYED_CALL_DEBUG_BREAK_TAG, "KeyedCallDebugBreak") \ 129 V(KEYED_CALL_DEBUG_BREAK_TAG, "KeyedCallDebugBreak") \
123 V(KEYED_CALL_DEBUG_PREPARE_STEP_IN_TAG, \ 130 V(KEYED_CALL_DEBUG_PREPARE_STEP_IN_TAG, \
124 "KeyedCallDebugPrepareStepIn") \ 131 "KeyedCallDebugPrepareStepIn") \
125 V(KEYED_CALL_IC_TAG, "KeyedCallIC") \ 132 V(KEYED_CALL_IC_TAG, "KeyedCallIC") \
126 V(KEYED_CALL_INITIALIZE_TAG, "KeyedCallInitialize") \ 133 V(KEYED_CALL_INITIALIZE_TAG, "KeyedCallInitialize") \
127 V(KEYED_CALL_MEGAMORPHIC_TAG, "KeyedCallMegamorphic") \ 134 V(KEYED_CALL_MEGAMORPHIC_TAG, "KeyedCallMegamorphic") \
128 V(KEYED_CALL_MISS_TAG, "KeyedCallMiss") \ 135 V(KEYED_CALL_MISS_TAG, "KeyedCallMiss") \
129 V(KEYED_CALL_NORMAL_TAG, "KeyedCallNormal") \ 136 V(KEYED_CALL_NORMAL_TAG, "KeyedCallNormal") \
130 V(KEYED_CALL_PRE_MONOMORPHIC_TAG, "KeyedCallPreMonomorphic") \ 137 V(KEYED_CALL_PRE_MONOMORPHIC_TAG, "KeyedCallPreMonomorphic") \
131 V(CALLBACK_TAG, "Callback") \ 138 V(CALLBACK_TAG, "Callback") \
(...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after
532 int length) = 0; 539 int length) = 0;
533 540
534 NameBuffer* name_buffer_; 541 NameBuffer* name_buffer_;
535 }; 542 };
536 543
537 544
538 } } // namespace v8::internal 545 } } // namespace v8::internal
539 546
540 547
541 #endif // V8_LOG_H_ 548 #endif // V8_LOG_H_
OLDNEW
« no previous file with comments | « src/ic.cc ('k') | src/mips/full-codegen-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698