| /arkcompiler/ets_runtime/ecmascript/ |
| D | ecma_isa.yaml | 20 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/ |
| D | string_compare_to.ets | 33 [ "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/ |
| D | dump.cpp | 50 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/ets_frontend/arkguard/test/ut/utils/ |
| D | FileUtils.spec.ts | 119 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/plugins/ets/isa/ |
| D | isa.yaml | 61 prefix: ets 68 prefix: ets 75 prefix: ets 113 prefix: ets 122 prefix: ets 129 prefix: ets 180 prefix: ets 184 prefix: ets 188 prefix: ets 202 prefix: ets [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/sdk/api/ |
| D | @ohos.xml.ets | 56 prefix: string 67 override getPrefix(): string { return this.prefix; } 130 prefix?: string 237 if (this.elementStack[this.depth].prefix !== '') { 238 temp.append(`${this.elementStack[this.depth].prefix}:`); 240 if (this.elementStack[this.depth - OffsetDepth].prefix !== '') { 241 … this.elementStack[this.depth].prefix = this.elementStack[this.depth - OffsetDepth].prefix; 242 temp.append(`${this.elementStack[this.depth].prefix}:`); 280 if (this.elementStack[this.depth].prefix !== '') { 281 temp.append(`${this.elementStack[this.depth].prefix}:`); [all …]
|
| /arkcompiler/runtime_core/scripts/ |
| D | install-deps-qemu | 43 $ ./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/static_core/scripts/ |
| D | install-deps-qemu | 43 $ ./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/isa/ |
| D | isa.yaml | 362 prefix: deprecated 379 prefix: deprecated 430 prefix: deprecated 503 prefix: wide 514 prefix: deprecated 524 prefix: deprecated 544 prefix: wide 554 prefix: wide 564 prefix: wide 710 prefix: deprecated [all …]
|
| D | asserts.rb | 36 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 …]
|
| D | isapi.rb | 117 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/ |
| D | generate_js_and_merge_file.py | 20 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 …]
|
| D | generate_merge_file.py | 20 prefix: prefix 31 parser.add_argument('--prefix', type=str, required=True) 37 output_line = args.prefix + line
|
| /arkcompiler/ets_frontend/es2panda/test/parser/js/ |
| D | test-update-expression-expected.txt | 9 "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,
|
| D | test-unary-expression-expected.txt | 9 "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/runtime_core/panda_guard/generator/ |
| D | name_mapping.cpp | 47 const auto &[prefix, suffix] = StringUtil::SplitAnonymousName(origin); in GetName() 49 auto item = nameMapping_.find(prefix); in GetName() 56 obfName = prefix; in GetName() 60 if (StringUtil::IsNumber(prefix)) { in GetName() 61 obfName = prefix; in GetName() 65 if (StringUtil::IsAnonymousNameSpaceName(prefix)) { in GetName() 66 obfName = prefix; in GetName() 70 … if (options_ && (options_->IsReservedNames(prefix) || options_->IsReservedProperties(prefix) || in GetName() 71 options_->IsReservedToplevelNames(prefix))) { in GetName() 72 obfName = prefix; in GetName()
|
| /arkcompiler/jsvm/ |
| D | build_jsvm.sh | 19 declare PREFIX 30 options="$(getopt -o h "help,sysroot:,jsvm_path:,prefix:,target_cpu:,base_path:" -- "$@")" || usage 39 echo "--prefix <perfix> Cross-compiler prefix." 92 --prefix) 93 export PREFIX=$2 94 export JS_ENGINE_URL=${PREFIX=}/../..
|
| D | build_jsvm_inter.sh | 166 argurment+=" -I${PREFIX}/../include/c++/v1" 191 export CC="${CCACHE_EXEC} ${PREFIX}/clang ${INCLUDE_DIRS}" 192 export CXX="${CCACHE_EXEC} ${PREFIX}/clang++ ${INCLUDE_DIRS}" 195 export LD="${PREFIX}/ld.lld" 196 export AS="${PREFIX}/llvm-as" 197 export AR="${PREFIX}/llvm-ar" 198 export STRIP="${PREFIX}/llvm-strip" 199 export OBJCOPY="${PREFIX}/llvm-objcopy" 200 export OBJDUMP="${PREFIX}/llvm-obidump" 201 export RANLIB="${PREFIX}/llvm-ranlib" [all …]
|
| /arkcompiler/runtime_core/static_core/isa/ |
| D | asserts.rb | 36 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 …]
|
| D | isa.yaml | 329 prefix: f32 395 prefix: f32 525 prefix: unsigned 530 prefix: unsigned 564 prefix: f32 573 prefix: f32 814 prefix: f32 847 prefix: bit 852 prefix: bit 928 prefix: bit [all …]
|
| /arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/reports/ |
| D | spec_node.py | 22 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/compiler/tools/debug/ |
| D | jit_writer.cpp | 28 CodePrefix prefix; in FillData() local 33 prefix.codeSize = method.GetCode().size(); in FillData() 34 … prefix.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/plugins/ets/irtoc_scripts/ |
| D | typed_arrays.irt | 46 def GenerateTypedArrayFillInternal(name, prefix, type, scale) 80 ep_offset = get_entrypoint_offset("#{prefix}_ARRAY_FILL_INTERNAL_USUAL") 93 def GenerateTypedUnsignedArrayFillInternal(name, prefix, inType, outType, scale) 126 ep_offset = get_entrypoint_offset("#{prefix}_ARRAY_FILL_INTERNAL_USUAL") 182 prefix = "TYPED_UNSIGNED" 184 prefix = "TYPED_UNSIGNED" 186 prefix = "TYPED_UNSIGNED" 188 prefix = "TYPED_UNSIGNED" 190 prefix = "TYPED" 237 …eval("byte_offset := Cast(LoadI(typed_array).Imm(Constants::#{prefix}_ARRAY_BYTE_OFFSET_OFFSET).f6… [all …]
|
| /arkcompiler/runtime_core/static_core/verification/ |
| D | Verification.cmake | 59 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/runtime_core/static_core/tests/cts-generator/cts-template/ |
| D | f32toi64.yaml | 29 prefix: cast 70 prefix: cast 117 prefix: cast 140 prefix: cast 163 prefix: cast 179 prefix: cast 195 prefix: cast 218 prefix: cast 270 prefix: cast
|