Lines Matching defs:is64
235 bool is64 = ctx.arg.is64.value_or(false);
250 if (is64)
280 auto ptrType = is64 ? WASM_TYPE_I64 : WASM_TYPE_I32;
361 if (ctx.arg.is64.value_or(false))
419 bool is64 = ctx.arg.is64.value_or(false);
420 unsigned opcode_ptr_const = is64 ? WASM_OPCODE_I64_CONST
422 unsigned opcode_ptr_add = is64 ? WASM_OPCODE_I64_ADD
469 bool is64 = ctx.arg.is64.value_or(false);
470 uint8_t itype = is64 ? WASM_TYPE_I64 : WASM_TYPE_I32;
511 writePtrConst(os, offset, is64, "offset");
512 writeU8(os, is64 ? WASM_OPCODE_I64_ADD : WASM_OPCODE_I32_ADD, "add");
521 initExpr = intConst(d->getVA(/*absolute=*/!ctx.arg.sharedMemory), is64);
523 initExpr = intConst(f->isStub ? 0 : f->getTableIndex(), is64);
526 initExpr = intConst(0, is64);
534 writeInitExpr(os, intConst(sym->getVA(), is64));
592 bool is64 = ctx.arg.is64.value_or(false);
593 initExpr = intConst(ctx.arg.tableBase, is64);