Home
last modified time | relevance | path

Searched refs:rm (Results 1 - 24 of 24) sorted by relevance

/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/
H A DMakefile7 rm -rf dist generated src/generated examples/benchmarks/generated
8 rm -rf .pytest_cache
9 rm -rf src/vmb/.pytest_cache
10 rm -rf src/vmb.egg-info
11 rm -rf .mypy_cache
12 rm -rf .tox
13 find . -type d -name __pycache__ -exec rm -rf {} +
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/x64/
H A Dassembler_x64.h69 void BuildModerm(int32_t mode, Register rm);
170 void EmitRexPrefixW(const Register &rm) in EmitRexPrefixW() argument
172 EmitU8(REX_PREFIX_W | HighBit(rm)); in EmitRexPrefixW()
175 void EmitRexPrefixL(const Register &rm) in EmitRexPrefixL() argument
177 EmitU8(REX_PREFIX_FIXED_BITS | HighBit(rm)); in EmitRexPrefixL()
180 void EmitRexPrefix(const Operand &rm) in EmitRexPrefix() argument
182 // 0: Extension to the MODRM.rm field B in EmitRexPrefix()
183 EmitU8(REX_PREFIX_W | rm.rex_); in EmitRexPrefix()
186 void EmitRexPrefix(Register reg, Register rm) in EmitRexPrefix() argument
188 // 0: Extension to the MODRM.rm fiel in EmitRexPrefix()
193 EmitRexPrefixl(Register reg, Register rm) EmitRexPrefixl() argument
202 EmitRexPrefix(Register reg, Operand rm) EmitRexPrefix() argument
209 EmitRexPrefixl(Register reg, Operand rm) EmitRexPrefixl() argument
221 EmitModrm(int32_t reg, Register rm) EmitModrm() argument
226 EmitModrm(Register reg, Register rm) EmitModrm() argument
228 EmitModrm(LowBits(reg), rm); EmitModrm() local
231 EmitOperand(Register reg, Operand rm) EmitOperand() argument
233 EmitOperand(LowBits(reg), rm); EmitOperand() local
265 GetModrm(int32_t mode, Register rm) GetModrm() argument
273 GetModrmRex(Register rm) GetModrmRex() argument
[all...]
H A Dassembler_x64.cpp820 void Operand::BuildModerm(int32_t mode, Register rm) in BuildModerm() argument
822 rex_ |= AssemblerX64::GetModrmRex(rm); in BuildModerm()
823 moderm_ = AssemblerX64::GetModrm(mode, rm); in BuildModerm()
838 void AssemblerX64::EmitOperand(int32_t reg, Operand rm) in EmitOperand() argument
841 EmitU8(rm.moderm_ | (static_cast<uint32_t>(reg) << LOW_BITS_SIZE)); in EmitOperand()
842 if (rm.hasSIB_) { in EmitOperand()
843 EmitU8(rm.sib_); in EmitOperand()
846 if (rm.hasDisp8_) { in EmitOperand()
847 EmitI8(static_cast<int8_t>(rm.disp_)); in EmitOperand()
848 } else if (rm in EmitOperand()
[all...]
/arkcompiler/runtime_core/static_core/scripts/sdk/
H A Dbuild_sdk.sh167 rm -rf "$PANDA_SDK_PATH"/tslinter/node_modules
168 rm -rf "$PANDA_SDK_PATH"/tslinter/package
171 rm "$tgz"
172 rm "$linter_root"/package-lock.json
173 rm -rf "$linter_root"/build
174 rm -rf "$linter_root"/bundle
175 rm -rf "$linter_root"/dist
176 rm -rf "$linter_root"/node_modules
185 rm -r -f "$PANDA_SDK_PATH"
/arkcompiler/ets_frontend/ets2panda/test/tsconfig/
H A Dtest.sh43 rm -r -f "$BUILD"
67 rm "$ACTUAL"
68 rm -r "$BUILD"
/arkcompiler/runtime_core/static_core/compiler/tools/
H A Dbenchmark_coverage.sh85 [ -e "$HTML" ] && rm "$HTML"
86 [ -e "$LOG_ERROR" ] && rm "$LOG_ERROR"
149 rm -f "$tmp_file"
187 rm -f "$tmp_file"
189 rm -f "$benchmark".abc
279 rm -f "$tmp_file"
317 rm -f "$tmp_file"
319 rm -f "$test.abc"
361 rm -r "$TEMP_DIR"
H A Dir_builder_coverage.sh42 [ -e "$HTML" ] && rm "$HTML"
/arkcompiler/runtime_core/static_core/plugins/ets/snippet_verifier/
H A Dverify.sh84 rm -rf snippets; rm -rf main_results; rm -rf results
98 rm -rf ./.verifier_error
/arkcompiler/runtime_core/static_core/scripts/
H A Dinstall-third-party240 rm ${ARK_THIRD_PARTY_DIR}/nodejs/${ARCHIVE_NAME}
250 cd "$ARK_THIRD_PARTY_DIR" && rm -rf `ls | grep -v arkcompiler`
252 rm -rf "$ARK_THIRD_PARTY_DIR"
264 rm -rf "$ARK_THIRD_PARTY_DIR/${third_party_repo}"
H A Dinstall-deps-ubuntu56 rm -rf clang_rt
206 rm -rf $TEMP
239 rm -rf $TEMP
/arkcompiler/ets_runtime/test/ffiworkloadtest/
H A Drun_ffi_workload_test.sh72 hdc -s "$HDC_MACHINE_IP" shell [ -d "$HDC_TEST_PATH" ] && rm -rf "$HDC_TEST_PATH"
144 rm -rf "$LOCAL_XML_PATH"
191 rm -rf "$WORK_PATH"
/arkcompiler/ets_runtime/test/jsperftest/
H A Drun_js_perf_test.sh169 rm -rf "${WORKDIR_PATH}"
198 rm -rf "${bench_repo_path}"
209 rm -rf "${JS_TEST_PATH}"
237 rm -rf "${JS_TEST_PATH}/${bench}"
314 ${HDC_PATH} shell "rm -rf ${WORKDIR_ON_DEVICE}"
/arkcompiler/ets_runtime/tools/circuit_viewer/src/engine/graphics/
H A DXTexture.js258 let rm = [];
263 rm.push(idx);
266 for (let idx in rm) {
267 delete this.textIdxs[rm[idx]];
/arkcompiler/runtime_core/static_core/scripts/intrusive-testing/
H A Dlocal_intrusive_testing.sh69 rm -rf "$TARGET_DIR"
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/aarch64/
H A Dassembler_aarch64.h311 void Mov(const Register &rd, const Register &rm);
322 void Lsl(const Register &rd, const Register &rn, const Register &rm);
323 void Lsr(const Register &rd, const Register &rn, const Register &rm);
H A Dassembler_aarch64.cpp291 Register rm = operand.GetRegisterOffset(); in Ldr() local
297 uint32_t instructionCode = ((regX && (scale == Scale::Q)) << 30) | op | Rm(rm.GetId()) | in Ldr()
459 void AssemblerAarch64::Mov(const Register &rd, const Register &rm) in Mov() argument
461 if (rd.IsSp() || rm.IsSp()) { in Mov()
462 Add(rd, rm, Operand(Immediate(0))); in Mov()
464 Orr(rd, Register(Zero), Operand(rm)); in Mov()
730 void AssemblerAarch64::Lsl(const Register &rd, const Register &rn, const Register &rm) in Lsl() argument
732 uint32_t code = Sf(!rd.IsW()) | LSL_Reg | Rm(rm.GetId()) | Rn(rn.GetId()) | Rd(rd.GetId()); in Lsl()
736 void AssemblerAarch64::Lsr(const Register &rd, const Register &rn, const Register &rm) in Lsr() argument
738 uint32_t code = Sf(!rd.IsW()) | LSR_Reg | Rm(rm in Lsr()
[all...]
/arkcompiler/runtime_core/static_core/tests/cts-generator/runner/
H A Dsingle_test_runner.rb130 FileUtils.rm(@bin_file) if File.exist? @bin_file
131 FileUtils.rm("#{@bin_file}.aot") if $paoc && File.exist?("#{@bin_file}.aot")
/arkcompiler/runtime_core/tests/cts-generator/runner/
H A Dsingle_test_runner.rb137 FileUtils.rm(@bin_file) if File.exist? @bin_file
138 FileUtils.rm("#{@bin_file}.aot") if $paoc && File.exist?("#{@bin_file}.aot")
/arkcompiler/runtime_core/scripts/
H A Dinstall-third-party147 rm -rf "$ARK_THIRD_PARTY_DIR"
/arkcompiler/runtime_core/static_core/tests/cts-generator/runner/reporters/
H A Dallure_reporter.rb47 FileUtils.rm report_file if report_file.exist?
H A Djtr_reporter.rb30 FileUtils.rm report_file if report_file.exist?
/arkcompiler/runtime_core/tests/cts-generator/runner/reporters/
H A Djtr_reporter.rb30 FileUtils.rm report_file if report_file.exist?
H A Dallure_reporter.rb47 FileUtils.rm report_file if report_file.exist?
/arkcompiler/ets_frontend/es2panda/test/compiler/js/
H A Dcocos_worker_test.js2335 cc.warn(`rm directory failed: path: ${t}`);
2336 return new Error(`rm directory failed: path: ${t}`);
2658 ".rm": S,
26764 const rm = tm.prototype;
26765 Yl(rm, "_format");
26766 Yl(rm, "_minFilter");
26767 Yl(rm, "_magFilter");
26768 Yl(rm, "_mipFilter");
26769 Yl(rm, "_wrapS");
26770 Yl(rm, "_wrap
[all...]

Completed in 56 milliseconds