| /arkcompiler/runtime_core/static_core/tests/cts-assembly/ |
| D | arrays-07.pa | 26 # if vs == null then 29 # if acc < 0 || acc >= len(vs) then 33 # acc = f32tof64(vs[acc]) 35 # acc = i8toi32(vs[acc]) 37 # acc = u8toi32(vs[acc]) 39 # acc = i16toi32(vs[acc]) 41 # acc = u16toi32(vs[acc]) 43 # acc = vs[acc] 46 # - sig: ldarru.8 vs
|
| D | arrays-08.pa | 26 # if vs == null then 29 # if acc < 0 || acc >= len(vs) then 33 # acc = f32tof64(vs[acc]) 35 # acc = i8toi32(vs[acc]) 37 # acc = u8toi32(vs[acc]) 39 # acc = i16toi32(vs[acc]) 41 # acc = u16toi32(vs[acc]) 43 # acc = vs[acc] 46 # - sig: ldarru.16 vs
|
| D | arrays-05.pa | 20 # - sig: lenarr vs
|
| D | arrays-02.pa | 30 # - sig: ldarr vs
|
| /arkcompiler/runtime_core/tests/cts-assembly/ |
| D | arrays-07.pa | 26 # if vs == null then 29 # if acc < 0 || acc >= len(vs) then 33 # acc = f32tof64(vs[acc]) 35 # acc = i8toi32(vs[acc]) 37 # acc = u8toi32(vs[acc]) 39 # acc = i16toi32(vs[acc]) 41 # acc = u16toi32(vs[acc]) 43 # acc = vs[acc] 46 # - sig: ldarru.8 vs
|
| D | arrays-08.pa | 26 # if vs == null then 29 # if acc < 0 || acc >= len(vs) then 33 # acc = f32tof64(vs[acc]) 35 # acc = i8toi32(vs[acc]) 37 # acc = u8toi32(vs[acc]) 39 # acc = i16toi32(vs[acc]) 41 # acc = u16toi32(vs[acc]) 43 # acc = vs[acc] 46 # - sig: ldarru.16 vs
|
| D | arrays-05.pa | 20 # - sig: lenarr vs
|
| /arkcompiler/ets_runtime/tools/circuit_viewer/src/engine/graphics/ |
| D | XShader.js | 76 let vs = gl.createShader(gl.VERTEX_SHADER); 77 gl.shaderSource(vs, vss); 78 gl.compileShader(vs); 79 if (!gl.getShaderParameter(vs, gl.COMPILE_STATUS)) { 81 'error occured compiling the shaders:' + gl.getShaderInfoLog(vs) 98 gl.attachShader(ret, vs); 107 gl.deleteShader(vs);
|
| /arkcompiler/ets_frontend/ets2panda/compiler/core/ |
| D | regSpiller.cpp | 81 IRNode *DynamicRegSpiller::MoveReg(const ir::AstNode *const node, const VReg vd, const VReg vs, in MoveReg() argument 84 return GetCodeGen()->AllocMov(node, vd, vs); in MoveReg() 112 IRNode *StaticRegSpiller::MoveReg(const ir::AstNode *const node, const VReg vd, const VReg vs, cons… in MoveReg() argument 114 if (vd == vs) { in MoveReg() 118 const auto *const sourceType = GetCodeGen()->GetVRegType(vs); in MoveReg() 125 spills_.emplace_back(vd, vs); in MoveReg() 128 return GetCodeGen()->AllocMov(node, vd, vs); in MoveReg()
|
| D | regSpiller.h | 53 …[[nodiscard]] virtual IRNode *MoveReg(const ir::AstNode *node, VReg vd, VReg vs, bool spillMov) = … 80 … [[nodiscard]] IRNode *MoveReg(const ir::AstNode *node, VReg vd, VReg vs, bool spillMov) override; 97 … [[nodiscard]] IRNode *MoveReg(const ir::AstNode *node, VReg vd, VReg vs, bool spillMov) override;
|
| /arkcompiler/runtime_core/static_core/isa/ |
| D | isa.yaml | 292 vd = vs 358 acc = vs 509 if acc < vs then 511 else if acc == vs then 542 if isnan(acc) or isnan(vs) then 551 if acc < vs then 553 else if acc == vs then 614 if acc == vs then 618 if acc != vs then 744 diff = signed_cmp(acc, vs) [all …]
|
| /arkcompiler/runtime_core/static_core/irtoc/scripts/ |
| D | interpreter.irt | 829 macro(:handle_throw) do |vs| 830 If(vs, 0).EQ.Unlikely { 833 call_runtime("ThrowExceptionFromInterpreter", %tr, vs, %frame, %pc).void 852 macro(:handle_mov) do |vd, vs| 853 set_primitive(vd, vs).u32 856 macro(:handle_lda) do |vs| 857 set_acc_primitive(vs) 929 macro(:"handle_#{sign}cmp") do |acc_val, vs| 931 If(acc_val, vs).send(:"#{cc.upcase}") { 934 If(acc_val, vs).EQ { [all …]
|
| /arkcompiler/runtime_core/libabckit/tests/ut/metadata_core/inspect_api/annotations/ |
| D | annotations_test.cpp | 55 auto vs = g_implI->valueGetDouble(val); in ProcessAnnotationsInner() local 57 EXPECT_TRUE(vs == 10U); in ProcessAnnotationsInner() 67 auto vs = g_implI->arrayValueGetLiteralArray(val); in ProcessAnnotationsInner() local 69 … g_implI->literalArrayEnumerateElements(vs, nullptr, [](AbckitFile *, AbckitLiteral *v, void *) { in ProcessAnnotationsInner() 83 auto vs = g_implI->valueGetU1(val); in ProcessAnnotationsInner() local 85 EXPECT_TRUE(vs == true); in ProcessAnnotationsInner() 95 auto vs = helpers::AbckitStringToString(str); in ProcessAnnotationsInner() local 97 EXPECT_TRUE(vs == "DEF"); in ProcessAnnotationsInner() 156 auto vs = g_implI->valueGetDouble(val); in __anon64d9860b0402() local 158 EXPECT_TRUE(vs == 20U); in __anon64d9860b0402() [all …]
|
| /arkcompiler/runtime_core/static_core/verification/absint/ |
| D | abs_int_inl.h | 307 // Names meanings: vs - v_source, vd - v_destination 314 uint16_t vs = inst_.GetVReg<FORMAT, 0x01>(); in HandleMov() local 317 if (!CheckRegType(vs, bits32_)) { in HandleMov() 322 AssignRegToReg(vd, vs); in HandleMov() 333 uint16_t vs = inst_.GetVReg<FORMAT, 0x01>(); in HandleMovWide() local 336 if (!CheckRegType(vs, bits64_)) { in HandleMovWide() 341 AssignRegToReg(vd, vs); in HandleMovWide() 352 uint16_t vs = inst_.GetVReg<FORMAT, 0x01>(); in HandleMovObj() local 354 if (!CheckRegType(vs, refType_)) { in HandleMovObj() 359 AssignRegToReg(vd, vs); in HandleMovObj() [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/isa/ |
| D | isa.yaml | 80 if vs == null then 86 acc = extendto32(vs.get(field)) 88 acc = vs.get(field) 93 acc = getter(vs) 138 vs.set(field, truncate(field, acc)) 140 vs.set(field, acc) 145 setter(vs, acc)
|
| /arkcompiler/runtime_core/static_core/runtime/interpreter/ |
| D | interpreter-inl.h | 136 uint16_t vs = this->GetInst().template GetVReg<FORMAT, 1>(); in HandleMov() local 137 LOG_INST() << "mov v" << vd << ", v" << vs; in HandleMov() 139 curFrameHandler.GetVReg(vd).MovePrimitive(curFrameHandler.GetVReg(vs)); in HandleMov() 147 uint16_t vs = this->GetInst().template GetVReg<FORMAT, 1>(); in HandleMovWide() local 148 LOG_INST() << "mov.64 v" << vd << ", v" << vs; in HandleMovWide() 150 curFrameHandler.GetVReg(vd).MovePrimitive(curFrameHandler.GetVReg(vs)); in HandleMovWide() 158 uint16_t vs = this->GetInst().template GetVReg<FORMAT, 1>(); in HandleMovObj() local 159 LOG_INST() << "mov.obj v" << vd << ", v" << vs; in HandleMovObj() 161 curFrameHandler.GetVReg(vd).MoveReference(curFrameHandler.GetVReg(vs)); in HandleMovObj() 169 uint16_t vs = this->GetInst().template GetVReg<FORMAT, 1>(); in HandleMovDyn() local [all …]
|
| /arkcompiler/ets_frontend/ets2panda/test/runtime/ets/ |
| D | funcRefWithRestArguments.sts | 27 const fp2: FunctionN<int> = (...vs: (Object|null|undefined)[]): int => { 29 for (const v of vs) {
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_test_suite/strings/ |
| D | string_compare_to.sts | 28 ["А", "Ф", -1], // latin vs utf-16 -> LT 29 ["Ф", "A", 1 ], // utf-16 vs latin -> GT 39 [ "AAAA", "AAAAA", -1 ], // same prefix 4c vs 5c -> LT 40 [ "AAAAA", "AAAA", 1 ], // same prefix 5c vs 4c -> GT 86 [ "ГГГГ", "ГГГГГ", -1 ], // same prefix 4c vs 5c -> LT 87 [ "ГГГГГ", "ГГГГ", 1 ], // same prefix 5c vs 4c -> GT 125 // mixed (utf vs latin) strings comparison, never equals
|
| /arkcompiler/runtime_core/static_core/plugins/ets/runtime/interpreter/ |
| D | interpreter-inl.h | 194 uint16_t vs = this->GetInst().template GetVReg<FORMAT>(); in HandleEtsLdobjName() local 197 LOG_INST() << "ets.ldobj.name v" << vs << ", " << std::hex << "0x" << id; in HandleEtsLdobjName() 199 ObjectHeader *obj = this->GetFrame()->GetVReg(vs).GetReference(); in HandleEtsLdobjName() 236 uint16_t vs = this->GetInst().template GetVReg<FORMAT>(); in HandleEtsLdobjNameWide() local 239 LOG_INST() << "ets.ldobj.name.64 v" << vs << ", " << std::hex << "0x" << id; in HandleEtsLdobjNameWide() 241 ObjectHeader *obj = this->GetFrame()->GetVReg(vs).GetReference(); in HandleEtsLdobjNameWide() 278 uint16_t vs = this->GetInst().template GetVReg<FORMAT>(); in HandleEtsLdobjNameObj() local 281 LOG_INST() << "ets.ldobj.name.obj v" << vs << ", " << std::hex << "0x" << id; in HandleEtsLdobjNameObj() 283 ObjectHeader *obj = this->GetFrame()->GetVReg(vs).GetReference(); in HandleEtsLdobjNameObj() 322 uint16_t vs = this->GetInst().template GetVReg<FORMAT>(); in HandleEtsStobjName() local [all …]
|
| /arkcompiler/ets_frontend/ |
| D | .gitignore | 12 ets2panda/linter*/**/.vs
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/stdlib-templates/utils/ |
| D | test_core_typeduarray.j2 | 78 …("Data mismatch for $_get(int) and $_get(number): " + target[i as int] + " vs " + target[i as numb… 83 …// NOTE: comparison of target that filled by set(int, {{.item.type}}) vs target2.$_set(number, {{.… 98 …console.print("Data mismatch for $_get(int) vs $_get(int) filled by set(int, {{.item.type}}) vs $_… 102 …console.print("Data mismatch for $_get(number) vs $_get(number) filled by set(int, {{.item.type}})…
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/checked/ |
| D | ets_isinteger.sts | 25 //! ASM_NEXT x64: /mov\s+\$0x7FFFFFFF,.*/, arm64: /b\.vs.*/, arm32: /vcmp\.f32.*/ 39 //! ASM_NEXT x64: /mov\s+\$0x7FFFFFFF,.*/, arm64: /b\.vs.*/, arm32: /vcmp\.f32.*/ 61 //! ASM_NEXT x64: /mov\s+\$0x7FFFFFFFFFFFFFFF,.*/, arm64: /b\.vs.*/, arm32: /mov\s+r[0… 77 //! ASM_NEXT x64: /mov\s+\$0x7FFFFFFFFFFFFFFF,.*/, arm64: /b\.vs.*/, arm32: /mov\s+r[0…
|
| /arkcompiler/ets_runtime/ecmascript/pgo_profiler/ap_file/ |
| D | pgo_file_info.cpp | 86 … LOG_ECMA(ERROR) << "Verify ap file's file size failed. size: " << std::hex << bufferSize << " vs " in VerifyFileSize() 102 …_ECMA(ERROR) << "Verify ap file's consistency failed. checksum: " << std::hex << checksum << " vs " in VerifyConsistency()
|
| /arkcompiler/runtime_core/libabckit/src/codegen/ |
| D | codegen_static.cpp | 1348 compiler::Register vs = inst->GetSrcReg(0U); in VisitStoreObjectIntrinsic() local 1351 bool isAccType = (vs == compiler::GetAccReg()); in VisitStoreObjectIntrinsic() 1365 enc->result_.emplace_back(pandasm::Create_STOBJ_V(vd, vs, id)); in VisitStoreObjectIntrinsic() 1374 enc->result_.emplace_back(pandasm::Create_STOBJ_V_64(vd, vs, id)); in VisitStoreObjectIntrinsic() 1381 enc->result_.emplace_back(pandasm::Create_STOBJ_V_OBJ(vd, vs, id)); in VisitStoreObjectIntrinsic() 1395 compiler::Register vs = inst->GetSrcReg(0U); in VisitStoreStaticIntrinsic() local 1407 DoLda(vs, enc->result_); in VisitStoreStaticIntrinsic() 1413 DoLda64(vs, enc->result_); in VisitStoreStaticIntrinsic() 1417 DoLdaObj(vs, enc->result_); in VisitStoreStaticIntrinsic() 1431 compiler::Register vs = inst->GetSrcReg(0U); in VisitLoadObjectIntrinsic() local [all …]
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/aarch64/ |
| D | aarch64_cc.def | 24 CONDCODE(VS, 0x6) /* overflow */
|