Home
last modified time | relevance | path

Searched refs:kAstI64 (Results 1 – 14 of 14) sorted by relevance

/external/v8/src/wasm/
Dwasm-opcodes.h43 const LocalType kAstI64 = MachineRepresentation::kWord64; variable
272 V(i_l, kAstI32, kAstI64) \
273 V(l_ll, kAstI64, kAstI64, kAstI64) \
274 V(i_ll, kAstI32, kAstI64, kAstI64) \
275 V(l_l, kAstI64, kAstI64) \
276 V(l_i, kAstI64, kAstI32) \
277 V(l_f, kAstI64, kAstF32) \
278 V(l_d, kAstI64, kAstF64) \
283 V(f_l, kAstF32, kAstI64) \
288 V(d_l, kAstF64, kAstI64) \
[all …]
Dast-decoder.h44 if (index < local_int64_count) return kAstI64; in GetLocalType()
57 case kAstI64: in AddLocals()
Dast-decoder.cc461 Leaf(kAstI64, BUILD(Int64Constant, value)); in DecodeFunctionBody()
517 len = DecodeLoadMem(pc_, kAstI64); in DecodeFunctionBody()
534 len = DecodeStoreMem(pc_, kAstI64); in DecodeFunctionBody()
939 return ReduceLoadMem(p, kAstI64, MachineType::Int8()); in Reduce()
941 return ReduceLoadMem(p, kAstI64, MachineType::Uint8()); in Reduce()
943 return ReduceLoadMem(p, kAstI64, MachineType::Int16()); in Reduce()
945 return ReduceLoadMem(p, kAstI64, MachineType::Uint16()); in Reduce()
947 return ReduceLoadMem(p, kAstI64, MachineType::Int32()); in Reduce()
949 return ReduceLoadMem(p, kAstI64, MachineType::Uint32()); in Reduce()
951 return ReduceLoadMem(p, kAstI64, MachineType::Int64()); in Reduce()
[all …]
Dencoder.cc214 } else if (locals_.at(i).type_ == kAstI64) { in IndexVars()
237 } else if (locals_.at(i).type_ == kAstI64) { in IndexVars()
Dmodule-decoder.cc427 return kAstI64; in local_type()
/external/v8/test/cctest/wasm/
Dtest-signatures.h41 for (int i = 0; i < 4; i++) kLongTypes4[i] = kAstI64; in TestSignatures()
44 for (int i = 0; i < 4; i++) kIntLongTypes4[i] = kAstI64; in TestSignatures()
Dtest-run-wasm.cc1804 const byte kSum = r.AllocateLocal(kAstI64); in TEST()
/external/v8/test/mjsunit/wasm/
Dparams.js53 if (type != kAstI32 && type != kAstI64) {
129 if (type != kAstI32 && type != kAstI64) {
Dwasm-constants.js36 var kAstI64 = 2; variable
/external/v8/src/compiler/
Dwasm-linkage.cc28 case kAstI64: in MachineTypeFor()
186 (type == kAstI64 || type == kAstF64 || type == kAstF32)) { in Words()
Dwasm-compiler.cc236 case wasm::kAstI64: in BuildTrapCode()
1452 case wasm::kAstI64: in ToJS()
1493 case wasm::kAstI64: in FromJS()
1732 if (type == wasm::kAstI64 && in LoadMem()
/external/v8/test/unittests/wasm/
Dencoder-unittest.cc63 uint16_t local_int64 = function->AddLocal(kAstI64); in TEST_F()
Dmodule-decoder-unittest.cc43 {kLocalI64, kAstI64},
Dast-decoder-unittest.cc25 static const LocalType kLocalTypes[] = {kAstI32, kAstI64, kAstF32, kAstF64};
802 env.AddLocals(kAstI64, i); in TEST_F()