Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index a8a07c0a47f512f8c18a36715a34c06795743e7b..0ad90b74b07ce6d053a23099eb36457eb1c9d73d 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -6916,6 +6916,7 @@ class SharedFunctionInfo: public HeapObject { |
// Currently it has one of: |
// - a FunctionTemplateInfo to make benefit the API [IsApiFunction()]. |
// - a BytecodeArray for the interpreter [HasBytecodeArray()]. |
+ // - a FixedArray with Asm->Wasm conversion [HasAsmWasmData()]. |
DECL_ACCESSORS(function_data, Object) |
inline bool IsApiFunction(); |
@@ -6925,6 +6926,10 @@ class SharedFunctionInfo: public HeapObject { |
inline BytecodeArray* bytecode_array(); |
inline void set_bytecode_array(BytecodeArray* bytecode); |
inline void ClearBytecodeArray(); |
+ inline bool HasAsmWasmData(); |
+ inline FixedArray* asm_wasm_data(); |
+ inline void set_asm_wasm_data(FixedArray* data); |
+ inline void ClearAsmWasmData(); |
// [function identifier]: This field holds an additional identifier for the |
// function. |