Searched refs:kAstI64 (Results 1 – 14 of 14) sorted by relevance
/external/v8/src/wasm/ |
D | wasm-opcodes.h | 43 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 …]
|
D | ast-decoder.h | 44 if (index < local_int64_count) return kAstI64; in GetLocalType() 57 case kAstI64: in AddLocals()
|
D | ast-decoder.cc | 461 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 …]
|
D | encoder.cc | 214 } else if (locals_.at(i).type_ == kAstI64) { in IndexVars() 237 } else if (locals_.at(i).type_ == kAstI64) { in IndexVars()
|
D | module-decoder.cc | 427 return kAstI64; in local_type()
|
/external/v8/test/cctest/wasm/ |
D | test-signatures.h | 41 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()
|
D | test-run-wasm.cc | 1804 const byte kSum = r.AllocateLocal(kAstI64); in TEST()
|
/external/v8/test/mjsunit/wasm/ |
D | params.js | 53 if (type != kAstI32 && type != kAstI64) { 129 if (type != kAstI32 && type != kAstI64) {
|
D | wasm-constants.js | 36 var kAstI64 = 2; variable
|
/external/v8/src/compiler/ |
D | wasm-linkage.cc | 28 case kAstI64: in MachineTypeFor() 186 (type == kAstI64 || type == kAstF64 || type == kAstF32)) { in Words()
|
D | wasm-compiler.cc | 236 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/ |
D | encoder-unittest.cc | 63 uint16_t local_int64 = function->AddLocal(kAstI64); in TEST_F()
|
D | module-decoder-unittest.cc | 43 {kLocalI64, kAstI64},
|
D | ast-decoder-unittest.cc | 25 static const LocalType kLocalTypes[] = {kAstI32, kAstI64, kAstF32, kAstF64}; 802 env.AddLocals(kAstI64, i); in TEST_F()
|