Searched refs:struct_object (Results 1 – 4 of 4) sorted by relevance
| /third_party/node/deps/v8/src/wasm/ |
| D | graph-builder-interface.cc | 1051 void StructGet(FullDecoder* decoder, const Value& struct_object, in StructGet() argument 1055 struct_object.node, field.struct_imm.struct_type, field.field_imm.index, in StructGet() 1056 NullCheckFor(struct_object.type), is_signed, decoder->position()); in StructGet() 1059 void StructSet(FullDecoder* decoder, const Value& struct_object, in StructSet() argument 1062 builder_->StructSet(struct_object.node, field.struct_imm.struct_type, in StructSet() 1064 NullCheckFor(struct_object.type), decoder->position()); in StructSet()
|
| D | function-body-decoder-impl.h | 1024 F(StructGet, const Value& struct_object, \ 1026 F(StructSet, const Value& struct_object, \
|
| /third_party/node/deps/v8/src/compiler/ |
| D | wasm-compiler.h | 484 Node* StructGet(Node* struct_object, const wasm::StructType* struct_type, 487 void StructSet(Node* struct_object, const wasm::StructType* struct_type,
|
| D | wasm-compiler.cc | 469 Node* StoreStructField(Node* struct_object, const wasm::StructType* type, in StoreStructField() argument 473 ? StoreToObject(access, struct_object, in StoreStructField() 475 : InitializeImmutableInObject(access, struct_object, in StoreStructField() 6017 Node* WasmGraphBuilder::StructGet(Node* struct_object, in StructGet() argument 6023 TrapIfTrue(wasm::kTrapNullDereference, IsNull(struct_object), position); in StructGet() 6031 ? gasm_->LoadFromObject(machine_type, struct_object, offset) in StructGet() 6032 : gasm_->LoadImmutableFromObject(machine_type, struct_object, in StructGet() 6036 void WasmGraphBuilder::StructSet(Node* struct_object, in StructSet() argument 6042 TrapIfTrue(wasm::kTrapNullDereference, IsNull(struct_object), position); in StructSet() 6044 gasm_->StoreStructField(struct_object, struct_type, field_index, field_value); in StructSet()
|