Home
last modified time | relevance | path

Searched full:prefix (Results 1 – 25 of 549) sorted by relevance

12345678910>>...22

/arkcompiler/ets_runtime/ecmascript/
Decma_isa.yaml20 description: Ecma extension instructions with prefix ecma
36 prefix: ecma
40 prefix: ecma
44 prefix: ecma
48 prefix: ecma
52 prefix: ecma
56 prefix: ecma
60 prefix: ecma
64 prefix: ecma
68 prefix: ecma
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_test_suite/strings/
Dstring_compare_to.sts33 [ "A", "AAA", -1 ], // same prefix -> LT
34 [ "AAA", "A", 1 ], // same prefix ->GT
39 [ "AAAA", "AAAAA", -1 ], // same prefix 4c vs 5c -> LT
40 [ "AAAAA", "AAAA", 1 ], // same prefix 5c vs 4c -> GT
50 [ "AAAAAAAA", "AAAAAAAAAAAA", -1 ], // same prefix different length -> LT
51 [ "AAAAAAAAAAA", "AAAAAAAAA", 1 ], // same prefix different length -> GT
67 "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAX", -1], // same prefix different length -> LT
69 "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", 1], // same prefix different length -> GT
80 [ "Г", "ГГГ", -1 ], // same prefix -> LT
81 [ "ГГГ", "Г", 1 ], // same prefix ->GT
[all …]
/arkcompiler/runtime_core/static_core/libllvmbackend/object_code/
Ddump.cpp50 const std::string &prefix) in DumpStackMapFunction() argument
52 …stream << prefix << "Function Address [uint64]: 0x" << std::hex << function.getFunctionAddress() <… in DumpStackMapFunction()
54 …stream << prefix << "Stack Size [uint64]: 0x" << std::hex << function.getStackSize() << std::dec <… in DumpStackMapFunction()
55 stream << prefix << "Record Count [uint64]: " << function.getRecordCount() << std::endl; in DumpStackMapFunction()
59 const std::string &prefix) in DumpStackMapRecord() argument
61 stream << prefix << "PatchPoint ID [uint64]: " << record.getID() << std::endl; in DumpStackMapRecord()
62 …stream << prefix << "Instruction Offset [uint32]: 0x" << std::hex << record.getInstructionOffset()… in DumpStackMapRecord()
64 stream << prefix << "Location [" << record.getNumLocations() << "]: [" << std::endl; in DumpStackMapRecord()
66 stream << prefix << " {" << std::endl; in DumpStackMapRecord()
67 DumpStackMapLocation(loc, stream, prefix + " "); in DumpStackMapRecord()
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/isa/
Disa.yaml40 prefix: ets
45 prefix: ets
50 prefix: ets
55 prefix: ets
60 prefix: ets
65 prefix: ets
103 prefix: ets
110 prefix: ets
117 prefix: ets
155 prefix: ets
[all …]
/arkcompiler/ets_frontend/arkguard/test/ut/utils/
DFileUtils.spec.ts119 it('Tester: <get prefix test.> case for FileUtils#getPrefix', function () {
121 let prefix = 'test/utils/'; variable
123 assert.strictEqual(FileUtils.getPrefix(path), prefix);
126 it('Tester: <get windows prefix test.> case for FileUtils#getPrefix', function () {
128 let prefix = 'D:\\HuaweiApp\\ohsdk\\ets\\3.2.7.5\\'; variable
130 assert.strictEqual(FileUtils.getPrefix(path), prefix);
133 it('Tester: <get no prefix test.> case for FileUtils#getPrefix', function () {
135 let prefix = undefined; variable
137 assert.strictEqual(FileUtils.getPrefix(path), prefix);
141 …it('Tester: <get path without prefix no prefix test.> case for FileUtils#getPathWithoutPrefix', fu…
[all …]
/arkcompiler/runtime_core/static_core/scripts/
Dinstall-deps-qemu43 $ ./scripts/install-deps-qemu --qemu-prefix=/usr/local
53 --qemu-prefix=PREFIX Installation prefix for QEMU [$DEFAULT_QEMU_PREFIX].
58 from PREFIX/bin/qemu-* to /usr/bin. If other qemu binaries (or symlinks)
90 local prefix="$1"
93 local src_path="$prefix/src"
115 ./configure --prefix="$prefix"
120 for fname in "$prefix"/bin/qemu-*; do
145 --qemu-prefix=*)
/arkcompiler/runtime_core/scripts/
Dinstall-deps-qemu43 $ ./scripts/install-deps-qemu --qemu-prefix=/usr/local
53 --qemu-prefix=PREFIX Installation prefix for QEMU [$DEFAULT_QEMU_PREFIX].
58 from PREFIX/bin/qemu-* to /usr/bin. If other qemu binaries (or symlinks)
90 local prefix="$1"
93 local src_path="$prefix/src"
109 ./configure --prefix="$prefix"
115 for fname in "$prefix"/bin/qemu-*; do
140 --qemu-prefix=*)
/arkcompiler/runtime_core/isa/
Disa.yaml361 prefix: deprecated
378 prefix: deprecated
429 prefix: deprecated
502 prefix: wide
513 prefix: deprecated
523 prefix: deprecated
543 prefix: wide
553 prefix: wide
563 prefix: wide
709 prefix: deprecated
[all …]
Dasserts.rb36 Panda.instructions.reject(&:prefix).size + Panda.prefixes.size <= 256
40 Panda.instructions.reject(&:prefix).sorted_by?(&:opcode_idx)
43 assert('Prefix opcode indexes are sorted') do
47 assert('All instructions for a prefix should fit one byte') do
48 Panda.prefixes.map do |prefix|
49 … Panda.instructions.select { |insn| insn.prefix && (insn.prefix.name == prefix.name) }.size <= 256
53 assert('Prefixed instruction should have some prefix specified') do
55 insn.format.prefixed? != insn.prefix.nil?
59 assert('Prefix should be defined') do
61 next true unless insn.prefix
[all …]
Disapi.rb117 def prefix method in Instruction
118 name = dig(:prefix)
144 if prefix
145 dig(:opcode_idx) << 8 | prefix.opcode_idx
288 dig(:prefix) == 'throw' && !properties.include?('conditional_throw')
295 class Prefix < SimpleDelegator class
436 # * prefix handlers that re-dispatch to prefixed instruction based on second byte of opcode_idx
440 handlers = Panda.instructions.reject(&:prefix) +
445 …Panda.instructions.select(&:prefix).stable_sort_by { |i| Panda.prefixes_hash[i.prefix.name].opcode…
451 …(Panda.instructions.reject(&:prefix).map(&:opcode_idx).max + 1)..(Panda.prefixes.map(&:opcode_idx)…
[all …]
/arkcompiler/ets_runtime/test/quickfix/
Dgenerate_js_and_merge_file.py20 prefix: prefix
219 def process_with_prefix(input_file, output_file, prefix): argument
224 outputfp.write(prefix + line)
227 def handle_files(input_file, output_file, prefix): argument
237 js_fn = replace_js(prefix + ll[0], os.path.join(output_file_dir, original_js_filename))
241 ll[0] = prefix + ll[0]
245 def replace_merge_file(input_file, output_file, prefix): argument
246 if input_file.endswith(("base.txt", "patch.txt")) and is_file_in_list(prefix):
247 handle_files(input_file, output_file, prefix)
249 process_with_prefix(input_file, output_file, prefix)
[all …]
Dgenerate_merge_file.py20 prefix: prefix
31 parser.add_argument('--prefix', type=str, required=True)
37 output_line = args.prefix + line
/arkcompiler/ets_frontend/es2panda/test/parser/js/
Dtest-update-expression-expected.txt9 "prefix": true,
54 "prefix": true,
121 "prefix": false,
163 "prefix": true,
167 "prefix": false,
223 "prefix": true,
227 "prefix": true,
231 "prefix": false,
282 "prefix": true,
286 "prefix": false,
Dtest-unary-expression-expected.txt9 "prefix": true,
51 "prefix": true,
96 "prefix": true,
163 "prefix": true,
205 "prefix": true,
247 "prefix": true,
289 "prefix": true,
334 "prefix": true,
366 "prefix": true,
398 "prefix": true,
[all …]
/arkcompiler/ets_frontend/ets2panda/test/parser/js/
Dtest-update-expression-expected.txt9 "prefix": true,
55 "prefix": true,
124 "prefix": false,
167 "prefix": true,
171 "prefix": false,
228 "prefix": true,
232 "prefix": true,
236 "prefix": false,
288 "prefix": true,
292 "prefix": false,
/arkcompiler/runtime_core/static_core/isa/
Dasserts.rb36 Panda.instructions.reject(&:prefix).size + Panda.prefixes.size <= 256
40 Panda.instructions.reject(&:prefix).sorted_by?(&:opcode_idx)
43 assert('Prefix opcode indexes are sorted') do
47 assert('All instructions for a prefix should fit one byte') do
48 Panda.prefixes.map do |prefix|
49 … Panda.instructions.select { |insn| insn.prefix && (insn.prefix.name == prefix.name) }.size <= 256
53 assert('Prefixed instruction should have some prefix specified') do
55 insn.format.prefixed? != insn.prefix.nil?
59 assert('Prefix should be defined') do
61 next true unless insn.prefix
[all …]
Disa.yaml327 prefix: f32
393 prefix: f32
523 prefix: unsigned
528 prefix: unsigned
562 prefix: f32
571 prefix: f32
812 prefix: f32
845 prefix: bit
850 prefix: bit
926 prefix: bit
[all …]
/arkcompiler/runtime_core/static_core/compiler/tools/debug/
Djit_writer.cpp28 CodePrefix prefix; in FillData() local
33 prefix.codeSize = method.GetCode().size(); in FillData()
34prefix.codeInfoOffset = codeOffset + RoundUp(method.GetCode().size(), CodeInfo::ALIGNMENT); in FillData()
35 prefix.codeInfoSize = method.GetCodeInfo().size(); in FillData()
36 // Prefix in FillData()
38 const char *data = reinterpret_cast<char *>(&prefix); in FillData()
39 CopyToSpan(stream, data, sizeof(prefix), currPos); in FillData()
40 currPos += sizeof(prefix); in FillData()
43 currPos += codeOffset - sizeof(prefix); in FillData()
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/reports/
Dspec_node.py22 def __init__(self, title: str, prefix: str, status: str, parent: Optional[SpecNode]):
24 self.prefix = prefix
55 if len(self.prefix) > 0:
56 ret['prefix'] = self.prefix
/arkcompiler/runtime_core/static_core/verification/
DVerification.cmake59 set(prefix ARG) variable
63 cmake_parse_arguments(${prefix}
82 set(prefix ARG) variable
86 cmake_parse_arguments(${prefix}
103 set(prefix ARG) variable
107 cmake_parse_arguments(${prefix}
/arkcompiler/toolchain/build/toolchain/ark/
Dark_toolchain.gni44 prefix = rebase_path("${clang_base_path}/bin", root_build_dir)
45 cc = "${prefix}/clang"
46 cxx = "${prefix}/clang++"
47 ar = "${prefix}/llvm-ar"
50 strip = "${prefix}/llvm-strip"
/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Df32toi64.yaml29 prefix: cast
69 prefix: cast
116 prefix: cast
139 prefix: cast
162 prefix: cast
178 prefix: cast
194 prefix: cast
217 prefix: cast
269 prefix: cast
Df32tou32.yaml29 prefix: cast
63 prefix: cast
98 prefix: cast
121 prefix: cast
144 prefix: cast
160 prefix: cast
176 prefix: cast
200 prefix: cast
252 prefix: cast
/arkcompiler/runtime_core/static_core/tests/cts-generator/cts-template/
Df32tou32.yaml29 prefix: cast
64 prefix: cast
99 prefix: cast
122 prefix: cast
145 prefix: cast
161 prefix: cast
177 prefix: cast
200 prefix: cast
252 prefix: cast
Df64tou32.yaml29 prefix: cast
64 prefix: cast
111 prefix: cast
134 prefix: cast
157 prefix: cast
173 prefix: cast
189 prefix: cast
212 prefix: cast
265 prefix: cast

12345678910>>...22