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

Side by Side Diff: src/objects.h

Issue 1730673002: Revert of Add WasmFrame, backtraces reflect wasm's presence (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 10 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/isolate.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 4976 matching lines...) Expand 10 before | Expand all | Expand 10 after
4987 inline bool is_keyed_load_stub(); 4987 inline bool is_keyed_load_stub();
4988 inline bool is_store_stub(); 4988 inline bool is_store_stub();
4989 inline bool is_keyed_store_stub(); 4989 inline bool is_keyed_store_stub();
4990 inline bool is_call_stub(); 4990 inline bool is_call_stub();
4991 inline bool is_binary_op_stub(); 4991 inline bool is_binary_op_stub();
4992 inline bool is_compare_ic_stub(); 4992 inline bool is_compare_ic_stub();
4993 inline bool is_compare_nil_ic_stub(); 4993 inline bool is_compare_nil_ic_stub();
4994 inline bool is_to_boolean_ic_stub(); 4994 inline bool is_to_boolean_ic_stub();
4995 inline bool is_keyed_stub(); 4995 inline bool is_keyed_stub();
4996 inline bool is_optimized_code(); 4996 inline bool is_optimized_code();
4997 inline bool is_wasm_code();
4998 inline bool embeds_maps_weakly(); 4997 inline bool embeds_maps_weakly();
4999 4998
5000 inline bool IsCodeStubOrIC(); 4999 inline bool IsCodeStubOrIC();
5001 inline bool IsJavaScriptCode(); 5000 inline bool IsJavaScriptCode();
5002 5001
5003 inline void set_raw_kind_specific_flags1(int value); 5002 inline void set_raw_kind_specific_flags1(int value);
5004 inline void set_raw_kind_specific_flags2(int value); 5003 inline void set_raw_kind_specific_flags2(int value);
5005 5004
5006 // Testers for interpreter builtins. 5005 // Testers for interpreter builtins.
5007 inline bool is_interpreter_entry_trampoline(); 5006 inline bool is_interpreter_entry_trampoline();
(...skipping 5813 matching lines...) Expand 10 before | Expand all | Expand 10 after
10821 } 10820 }
10822 return value; 10821 return value;
10823 } 10822 }
10824 }; 10823 };
10825 10824
10826 10825
10827 } // NOLINT, false-positive due to second-order macros. 10826 } // NOLINT, false-positive due to second-order macros.
10828 } // NOLINT, false-positive due to second-order macros. 10827 } // NOLINT, false-positive due to second-order macros.
10829 10828
10830 #endif // V8_OBJECTS_H_ 10829 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « src/isolate.cc ('k') | src/objects-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698