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

Side by Side Diff: src/objects.h

Issue 1308393003: Add a PLACEHOLDER code kind. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 3 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
« no previous file with comments | « src/log.cc ('k') | src/snapshot/serialize.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 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_OBJECTS_H_ 5 #ifndef V8_OBJECTS_H_
6 #define V8_OBJECTS_H_ 6 #define V8_OBJECTS_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 9
10 #include "src/allocation.h" 10 #include "src/allocation.h"
(...skipping 4443 matching lines...) Expand 10 before | Expand all | Expand 10 after
4454 // Opaque data type for encapsulating code flags like kind, inline 4454 // Opaque data type for encapsulating code flags like kind, inline
4455 // cache state, and arguments count. 4455 // cache state, and arguments count.
4456 typedef uint32_t Flags; 4456 typedef uint32_t Flags;
4457 4457
4458 #define NON_IC_KIND_LIST(V) \ 4458 #define NON_IC_KIND_LIST(V) \
4459 V(FUNCTION) \ 4459 V(FUNCTION) \
4460 V(OPTIMIZED_FUNCTION) \ 4460 V(OPTIMIZED_FUNCTION) \
4461 V(STUB) \ 4461 V(STUB) \
4462 V(HANDLER) \ 4462 V(HANDLER) \
4463 V(BUILTIN) \ 4463 V(BUILTIN) \
4464 V(REGEXP) 4464 V(REGEXP) \
4465 V(PLACEHOLDER)
4465 4466
4466 #define IC_KIND_LIST(V) \ 4467 #define IC_KIND_LIST(V) \
4467 V(LOAD_IC) \ 4468 V(LOAD_IC) \
4468 V(KEYED_LOAD_IC) \ 4469 V(KEYED_LOAD_IC) \
4469 V(CALL_IC) \ 4470 V(CALL_IC) \
4470 V(STORE_IC) \ 4471 V(STORE_IC) \
4471 V(KEYED_STORE_IC) \ 4472 V(KEYED_STORE_IC) \
4472 V(BINARY_OP_IC) \ 4473 V(BINARY_OP_IC) \
4473 V(COMPARE_IC) \ 4474 V(COMPARE_IC) \
4474 V(COMPARE_NIL_IC) \ 4475 V(COMPARE_NIL_IC) \
(...skipping 5820 matching lines...) Expand 10 before | Expand all | Expand 10 after
10295 } else { 10296 } else {
10296 value &= ~(1 << bit_position); 10297 value &= ~(1 << bit_position);
10297 } 10298 }
10298 return value; 10299 return value;
10299 } 10300 }
10300 }; 10301 };
10301 10302
10302 } } // namespace v8::internal 10303 } } // namespace v8::internal
10303 10304
10304 #endif // V8_OBJECTS_H_ 10305 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « src/log.cc ('k') | src/snapshot/serialize.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698