Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index 5dc18607b2b9431a96dd50693f00d35837a27af3..c02344e89c616d7c79d0f6229a9bf8e604f2ac53 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -6905,6 +6905,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(); |
@@ -6914,6 +6915,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. |