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

Side by Side Diff: src/objects.h

Issue 1633633002: [Interpreter] Fix deopting from inline functions. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase and add PPC Created 4 years, 11 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/mips64/builtins-mips64.cc ('k') | src/objects-inl.h » ('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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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 4928 matching lines...) Expand 10 before | Expand all | Expand 10 after
4939 inline bool is_keyed_load_stub(); 4939 inline bool is_keyed_load_stub();
4940 inline bool is_store_stub(); 4940 inline bool is_store_stub();
4941 inline bool is_keyed_store_stub(); 4941 inline bool is_keyed_store_stub();
4942 inline bool is_call_stub(); 4942 inline bool is_call_stub();
4943 inline bool is_binary_op_stub(); 4943 inline bool is_binary_op_stub();
4944 inline bool is_compare_ic_stub(); 4944 inline bool is_compare_ic_stub();
4945 inline bool is_compare_nil_ic_stub(); 4945 inline bool is_compare_nil_ic_stub();
4946 inline bool is_to_boolean_ic_stub(); 4946 inline bool is_to_boolean_ic_stub();
4947 inline bool is_keyed_stub(); 4947 inline bool is_keyed_stub();
4948 inline bool is_optimized_code(); 4948 inline bool is_optimized_code();
4949 inline bool is_interpreter_entry_trampoline(); 4949 inline bool is_interpreter_entry_trampoline();
Michael Starzinger 2016/01/26 10:25:13 nit: The interpreter predicates (i.e. the ones usi
rmcilroy 2016/01/26 11:32:23 Done.
4950 inline bool is_interpreter_enter_bytecode_dispatch();
4950 inline bool embeds_maps_weakly(); 4951 inline bool embeds_maps_weakly();
4951 4952
4952 inline bool IsCodeStubOrIC(); 4953 inline bool IsCodeStubOrIC();
4953 inline bool IsJavaScriptCode(); 4954 inline bool IsJavaScriptCode();
4954 4955
4955 inline void set_raw_kind_specific_flags1(int value); 4956 inline void set_raw_kind_specific_flags1(int value);
4956 inline void set_raw_kind_specific_flags2(int value); 4957 inline void set_raw_kind_specific_flags2(int value);
4957 4958
4958 // [is_crankshafted]: For kind STUB or ICs, tells whether or not a code 4959 // [is_crankshafted]: For kind STUB or ICs, tells whether or not a code
4959 // object was generated by either the hydrogen or the TurboFan optimizing 4960 // object was generated by either the hydrogen or the TurboFan optimizing
(...skipping 5823 matching lines...) Expand 10 before | Expand all | Expand 10 after
10783 } 10784 }
10784 return value; 10785 return value;
10785 } 10786 }
10786 }; 10787 };
10787 10788
10788 10789
10789 } // NOLINT, false-positive due to second-order macros. 10790 } // NOLINT, false-positive due to second-order macros.
10790 } // NOLINT, false-positive due to second-order macros. 10791 } // NOLINT, false-positive due to second-order macros.
10791 10792
10792 #endif // V8_OBJECTS_H_ 10793 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « src/mips64/builtins-mips64.cc ('k') | src/objects-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698