Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index bb00506640d83644c2b608287d3522ce641d421a..2c05b250481ec38b1004c90fac32962d3888263e 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -6774,6 +6774,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(); |
@@ -6783,6 +6784,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. |