Searched refs:WasmValueObject (Results 1 - 10 of 10) sorted by relevance
/third_party/node/deps/v8/src/debug/ |
H A D | debug-wasm-objects.h | 37 class WasmValueObject : public JSObject { class 39 DECL_CAST(WasmValueObject) 45 DECL_PRINTER(WasmValueObject) 46 DECL_VERIFIER(WasmValueObject) 60 static Handle<WasmValueObject> New(Isolate* isolate, Handle<String> type, 62 static Handle<WasmValueObject> New(Isolate* isolate, 66 OBJECT_CONSTRUCTORS(WasmValueObject, JSObject);
|
H A D | debug-wasm-objects-inl.h | 19 OBJECT_CONSTRUCTORS_IMPL(WasmValueObject, JSObject) 21 CAST_ACCESSOR(WasmValueObject) 23 ACCESSORS(WasmValueObject, type, String, kTypeOffset) 24 ACCESSORS(WasmValueObject, value, Object, kValueOffset)
|
H A D | debug-wasm-objects.cc | 345 return WasmValueObject::New( in Get() 430 auto value = WasmValueObject::New( in Create() 481 auto value = WasmValueObject::New( in Create() 796 Handle<WasmValueObject> WasmValueObject::New(Isolate* isolate, in New() 802 WASM_VALUE_OBJECT_TYPE, WasmValueObject::kSize, in New() 810 WasmValueObject::kTypeIndex, FROZEN, Representation::Tagged()); in New() 818 WasmValueObject::kValueIndex, FROZEN, Representation::Tagged()); in New() 826 Handle<WasmValueObject> object = Handle<WasmValueObject> in New() [all...] |
H A D | debug-interface.h | 685 class V8_EXPORT_PRIVATE WasmValueObject : public v8::Object { class in v8::debug::NativeAccessorType 687 WasmValueObject() = delete; 689 static WasmValueObject* Cast(v8::Value* value) { in Cast() 693 return static_cast<WasmValueObject*>(value); in Cast()
|
H A D | debug-interface.cc | 901 void WasmValueObject::CheckCast(Value* that) { in CheckCast() 903 Utils::ApiCheck(obj->IsWasmValueObject(), "v8::debug::WasmValueObject::Cast", in CheckCast() 904 "Value is not a v8::debug::WasmValueObject"); in CheckCast() 907 bool WasmValueObject::IsWasmValueObject(Local<Value> that) { in IsWasmValueObject() 912 Local<String> WasmValueObject::type() const { in type() 913 i::Handle<i::WasmValueObject> object = in type() 914 i::Handle<i::WasmValueObject>::cast(Utils::OpenHandle(this)); in type()
|
/third_party/node/deps/v8/src/inspector/ |
H A D | value-mirror.cc | 342 v8::Local<v8::debug::WasmValueObject> object) { in descriptionForWasmValueObject() 951 } else if (v8::debug::WasmValueObject::IsWasmValueObject(object)) { in getPropertiesForPreview() 1795 if (v8::debug::WasmValueObject::IsWasmValueObject(value)) { in create() 1796 v8::Local<v8::debug::WasmValueObject> object = in create() 1797 value.As<v8::debug::WasmValueObject>(); in create()
|
/third_party/node/deps/v8/src/objects/ |
H A D | object-list-macros.h | 262 IF_WASM(V, WasmValueObject) \
|
H A D | js-objects.cc | 2511 return WasmValueObject::kHeaderSize; in GetHeaderSize()
|
/third_party/node/deps/v8/src/diagnostics/ |
H A D | objects-debug.cc | 262 WasmValueObject::cast(*this).WasmValueObjectVerify(isolate); in HeapObjectVerify() 1774 void WasmValueObject::WasmValueObjectVerify(Isolate* isolate) { in WasmValueObjectVerify()
|
H A D | objects-printer.cc | 206 WasmValueObject::cast(*this).WasmValueObjectPrint(os); in HeapObjectPrint() 2068 void WasmValueObject::WasmValueObjectPrint(std::ostream& os) { in WasmValueObjectPrint() 2069 PrintHeader(os, "WasmValueObject"); in WasmValueObjectPrint()
|
Completed in 30 milliseconds