| /arkcompiler/runtime_core/compiler/optimizer/analysis/ |
| D | live_registers.cpp | 45 …for (auto split = interval; !interval->IsPhysical() && split != nullptr; split = split->GetSibling… in CopyIntervals() local 46 if (split->HasReg()) { in CopyIntervals() 47 min_ln = std::min(min_ln, split->GetBegin()); in CopyIntervals() 48 max_ln = std::max(max_ln, split->GetEnd()); in CopyIntervals() 49 destination->push_back(split); in CopyIntervals() 115 auto split = queue.front(); in BuildIntervalsTree() local 117 if (split->end - split->begin <= 0) { in BuildIntervalsTree() 121 auto midpoint = split->min + (split->max - split->min) / 2U; in BuildIntervalsTree() 125 …auto left_midpoint = PartitionLeftSplit(split->begin, split->end, midpoint, &left_min_ln, &left_ma… in BuildIntervalsTree() 129 …auto right_midpoint = PartitionRightSplit(left_midpoint, split->end, midpoint, &right_min_ln, &rig… in BuildIntervalsTree() [all …]
|
| /arkcompiler/runtime_core/compiler/tests/ |
| D | life_intervals_test.cpp | 72 auto split = interval->SplitAt(4, GetAllocator()); in TEST_F() local 74 CheckSiblings({interval, split}); in TEST_F() 76 CheckRanges(split, {}); in TEST_F() 82 auto split = interval->SplitAt(6, GetAllocator()); in TEST_F() local 84 CheckSiblings({interval, split}); in TEST_F() 86 CheckRanges(split, {{8, 10}}); in TEST_F() 92 auto split = interval->SplitAt(6, GetAllocator()); in TEST_F() local 94 CheckSiblings({interval, split}); in TEST_F() 96 CheckRanges(split, {{6, 10}}); in TEST_F() 102 auto split = interval->SplitAt(8, GetAllocator()); in TEST_F() local [all …]
|
| /arkcompiler/ets_frontend/testTs/ |
| D | run_testTs.py | 74 path_list = file.split(os.sep) 80 ts_list = temp_out_file_path.split(os.sep) 83 path_list = out_file_path.split(os.sep) 165 out_list = out_content.split('}\n{') 168 out_list.append(''.join(out_content.split('\n'))) 175 out_do = ''.join(out_list[i].split('\n')).strip(' ') + '}' 177 out_do = '{' + ''.join(out_list[i].split('\n')).strip(' ') 182 out_list[i].split('\n')).strip(' ') + 195 path_list = file.split(os.sep) 201 path_list = out_path.split(os.sep)
|
| /arkcompiler/runtime_core/gn/build/ |
| D | cmake_configure_file.py | 38 key, val = value.split('=', 1) 58 var_val = in_line.split(' ', 1)[1] 59 var_val_split = var_val.split(' ', 1)
|
| /arkcompiler/runtime_core/docs/diagrams/ |
| D | static-analyzer-gc-func-list-gen.puactivity | 18 split 21 split again 32 end split
|
| /arkcompiler/ets_frontend/ts2panda/templates/ |
| D | builtinsMap.ts.erb | 20 % args = sig.split(/,?\s+/) 35 % mnemonic = insn.mnemonic.split('.') 61 % args = sig.split(/,?\s+/) 67 case "<%= builtin.sig.split(' ')[0]%>":
|
| /arkcompiler/toolchain/build/compile_script/ |
| D | ark.py | 125 parameter = args.split(".") 216 …033[0m', '\033[32mARK_{} compilation finished successfully.\033[0m'.format(argvs[0].split('.')[0])) 218 …\033[0m', '\033[31mARK_{} compilation finished with errors.\033[0m'.format(argvs[0].split('.')[0]))
|
| /arkcompiler/runtime_core/libpandafile/templates/ |
| D | file_format_version.h.erb | 26 constexpr std::array<uint8_t, File::VERSION_SIZE> version {<%= Panda::version.split('.').join(', ')… 27 constexpr std::array<uint8_t, File::VERSION_SIZE> minVersion {<%= Panda::min_version.split('.').joi…
|
| /arkcompiler/runtime_core/bytecode_optimizer/tests/benchmark/ |
| D | run_benchmark.py | 59 for stdout_line in stdout.decode('ascii').split("\n"): 62 key, value = stdout_line.split(":")[:2] 158 c2p_options += args.compiler_options.split(",")
|
| /arkcompiler/ets_frontend/es2panda/test/ |
| D | test262util.py | 128 'includes').split(','))) if match else [] 132 'includes').split('-')))[1:] if match else [] 138 match.group('flags').split(','))) if match else []
|
| /arkcompiler/ets_runtime/test/aottest/definegettersetterbyvalue/ |
| D | definegettersetterbyvalue.ts | 26 [this.firstWord, this.secondWord] = value.split(" ");
|
| /arkcompiler/ets_runtime/test/aottest/stobjbyindex/ |
| D | stobjbyindex.ts | 37 [this[1], this["100"]] = value.split(" ");
|
| /arkcompiler/ets_runtime/test/aottest/stobjbyvalue/ |
| D | stobjbyvalue.ts | 41 [this[first], this[hundred]] = value.split(" ");
|
| /arkcompiler/toolchain/build/toolchain/ |
| D | gcc_solink_wrapper.py | 47 toc += '{}\n'.format(' '.join(line.decode().split(' ', 2)[:2])) 77 for arg in rspcontent.split(" "):
|
| D | gcc_link_wrapper.py | 32 command = command[0].split(None, 3) + command[1:]
|
| /arkcompiler/ets_runtime/script/ |
| D | build_resource_to_cpp.py | 62 input_dir, input_file = os.path.split(args.input)
|
| /arkcompiler/ets_frontend/es2panda/scripts/ |
| D | generate_js_bytecode.py | 55 (path, name) = os.path.split(frontend_tool_path)
|
| /arkcompiler/ets_frontend/ts2panda/scripts/ |
| D | generate_plugin.py | 65 (out_dir, _) = os.path.split(input_arguments.generated_file) 96 (out_dir, _) = os.path.split(input_arguments.generated_file)
|
| D | generate_js_bytecode.py | 76 (path, name) = os.path.split(frontend_tool_path)
|
| /arkcompiler/runtime_core/runtime/interpreter/templates/ |
| D | unimplemented_handlers-inl.h.erb | 21 % camel_case_name = name.split('.').map { |p| p == '64' ? 'Wide' : p.capitalize }.join
|
| /arkcompiler/ets_runtime/test/perform/string/ |
| D | string.js | 57 str.split(" ", 3); 68 str.split(" "); 80 str.split(re);
|
| /arkcompiler/ets_frontend/test262/ |
| D | run_sunspider.py | 232 os.path.split(dependency)[1]))[0] 251 file_dir = os.path.split(self.js_file)[0] 413 record_name = os.path.splitext(os.path.split(self.js_file)[1])[0] 450 record_name = os.path.splitext(os.path.split(self.js_file)[1])[0]
|
| D | harness.patch | 14 features = argv.features.split(',').map(feature => feature.trim()); 168 + let tmps = filePath.split(opts.test262Dir); 200 + let tmps = filePath.split(options.test262Dir);
|
| /arkcompiler/runtime_core/libark_defect_scan_aux/tests/ |
| D | generate_abc_file.py | 45 testcase, m_flag = s.split(' ')
|
| /arkcompiler/runtime_core/compiler/docs/ |
| D | ir_builder.md | 20 …type as well and if one constant is used in integer and float operations, it must be split into two 66 1. Split constants: for all constants that are used in instructions with different types, split con… 119 const.split()
|