Lines Matching defs:global
1513 Handle<WasmInstanceObject> instance, const wasm::WasmGlobal& global) {
1514 DCHECK(!global.type.is_reference());
1515 if (global.mutability && global.imported) {
1517 instance->imported_mutable_globals()[global.index]);
1519 return instance->globals_start() + global.offset;
1526 const wasm::WasmGlobal& global) {
1527 DCHECK(global.type.is_reference());
1529 if (global.mutability && global.imported) {
1532 instance->imported_mutable_globals_buffers().get(global.index)),
1534 Address idx = instance->imported_mutable_globals()[global.index];
1538 return {handle(instance->tagged_globals_buffer(), isolate), global.offset};
1543 Handle<WasmInstanceObject> instance, const wasm::WasmGlobal& global) {
1545 if (global.type.is_reference()) {
1546 Handle<FixedArray> global_buffer; // The buffer of the global.
1549 GetGlobalBufferAndIndex(instance, global);
1551 global.type);
1553 Address ptr = reinterpret_cast<Address>(GetGlobalStorage(instance, global));
1555 switch (global.type.kind()) {
1917 // global (cross-module) canonicalization of signatures/RTTs.
2095 // global (cross-module) canonicalization of signatures/RTTs.