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

Side by Side Diff: src/objects.h

Issue 1724063002: Add WasmFrame, backtraces reflect wasm's presence (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 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
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();
4997 inline bool embeds_maps_weakly(); 4998 inline bool embeds_maps_weakly();
4998 4999
4999 inline bool IsCodeStubOrIC(); 5000 inline bool IsCodeStubOrIC();
5000 inline bool IsJavaScriptCode(); 5001 inline bool IsJavaScriptCode();
5001 5002
5002 inline void set_raw_kind_specific_flags1(int value); 5003 inline void set_raw_kind_specific_flags1(int value);
5003 inline void set_raw_kind_specific_flags2(int value); 5004 inline void set_raw_kind_specific_flags2(int value);
5004 5005
5005 // Testers for interpreter builtins. 5006 // Testers for interpreter builtins.
5006 inline bool is_interpreter_entry_trampoline(); 5007 inline bool is_interpreter_entry_trampoline();
(...skipping 5813 matching lines...) Expand 10 before | Expand all | Expand 10 after
10820 } 10821 }
10821 return value; 10822 return value;
10822 } 10823 }
10823 }; 10824 };
10824 10825
10825 10826
10826 } // NOLINT, false-positive due to second-order macros. 10827 } // NOLINT, false-positive due to second-order macros.
10827 } // NOLINT, false-positive due to second-order macros. 10828 } // NOLINT, false-positive due to second-order macros.
10828 10829
10829 #endif // V8_OBJECTS_H_ 10830 #endif // V8_OBJECTS_H_
OLDNEW
« src/isolate.cc ('K') | « src/isolate.cc ('k') | src/objects-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698