| /arkcompiler/runtime_core/tests/cts-assembly/ |
| 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-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-05.pa | 20 # - sig: lenarr vs
|
| /arkcompiler/runtime_core/static_core/tests/cts-assembly/ |
| 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-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-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 | 294 vd = vs 360 acc = vs 511 if acc < vs then 513 else if acc == vs then 544 if isnan(acc) or isnan(vs) then 553 if acc < vs then 555 else if acc == vs then 616 if acc == vs then 620 if acc != vs then 746 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 __anon6c29206d0402() local 158 EXPECT_TRUE(vs == 20U); in __anon6c29206d0402() [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 | 38 if vs == null then 44 acc = extendto32(vs.get(field)) 46 acc = vs.get(field) 51 acc = getter(vs) 96 vs.set(field, truncate(field, acc)) 98 vs.set(field, acc) 103 setter(vs, acc) 151 'vs' register (including object reference).
|
| /arkcompiler/runtime_core/static_core/plugins/ets/runtime/interpreter/ |
| D | interpreter-inl.h | 48 uint16_t vs = this->GetInst().template GetVReg<FORMAT>(); in HandleEtsLdobjName() local 51 LOG_INST() << "ets.ldobj.name v" << vs << ", " << std::hex << "0x" << id; in HandleEtsLdobjName() 53 ObjectHeader *obj = this->GetFrame()->GetVReg(vs).GetReference(); in HandleEtsLdobjName() 85 uint16_t vs = this->GetInst().template GetVReg<FORMAT>(); in HandleEtsLdobjNameWide() local 88 LOG_INST() << "ets.ldobj.name.64 v" << vs << ", " << std::hex << "0x" << id; in HandleEtsLdobjNameWide() 90 ObjectHeader *obj = this->GetFrame()->GetVReg(vs).GetReference(); in HandleEtsLdobjNameWide() 122 uint16_t vs = this->GetInst().template GetVReg<FORMAT>(); in HandleEtsLdobjNameObj() local 125 LOG_INST() << "ets.ldobj.name.obj v" << vs << ", " << std::hex << "0x" << id; in HandleEtsLdobjNameObj() 127 ObjectHeader *obj = this->GetFrame()->GetVReg(vs).GetReference(); in HandleEtsLdobjNameObj() 161 uint16_t vs = this->GetInst().template GetVReg<FORMAT>(); in HandleEtsStobjName() local [all …]
|
| /arkcompiler/runtime_core/taihe/test/ani_session/user/ |
| D | main.ets | 76 let vs = lib.getSession(0); 77 if (vs instanceof lib.VideoSession) { 78 vs.beginConfig(); 79 vs.canPreconfig();
|
| /arkcompiler/runtime_core/static_core/runtime/interpreter/ |
| D | interpreter-inl.h | 135 uint16_t vs = this->GetInst().template GetVReg<FORMAT, 1>(); in HandleMov() local 136 LOG_INST() << "mov v" << vd << ", v" << vs; in HandleMov() 138 curFrameHandler.GetVReg(vd).MovePrimitive(curFrameHandler.GetVReg(vs)); in HandleMov() 146 uint16_t vs = this->GetInst().template GetVReg<FORMAT, 1>(); in HandleMovWide() local 147 LOG_INST() << "mov.64 v" << vd << ", v" << vs; in HandleMovWide() 149 curFrameHandler.GetVReg(vd).MovePrimitive(curFrameHandler.GetVReg(vs)); in HandleMovWide() 157 uint16_t vs = this->GetInst().template GetVReg<FORMAT, 1>(); in HandleMovObj() local 158 LOG_INST() << "mov.obj v" << vd << ", v" << vs; in HandleMovObj() 160 curFrameHandler.GetVReg(vd).MoveReference(curFrameHandler.GetVReg(vs)); in HandleMovObj() 168 uint16_t vs = this->GetInst().template GetVReg<FORMAT, 1>(); in HandleMovDyn() local [all …]
|
| /arkcompiler/ets_frontend/ets2panda/test/runtime/ets/ |
| D | funcRefWithRestArguments.ets | 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.ets | 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/ets_frontend/ |
| D | .gitignore | 12 ets2panda/linter*/**/.vs
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/13.compilation_units/08.namespace_declarations/ |
| D | namespace_declarations_basics.params.yaml | 191 # 13. Namespace vs local variable visibility 204 # 14. Namespace vs local variable visibility 280 # 20. Impported Namespace vs local Nanmespace visibility
|
| /arkcompiler/runtime_core/taihe/ |
| D | .gitignore | 43 .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/taihe/test/ani_session/idl/ |
| D | session_test.taihe | 64 vs: VideoSession;
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/checked/ |
| D | ets_isinteger.ets | 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…
|