/arkcompiler/runtime_core/compiler/optimizer/ |
H A D | pass_manager_statistics.cpp | 152 void PassManagerStatistics::DumpStatisticsCsv(char sep) const in DumpStatisticsCsv() 158 csv << "\"" << m_name << "\"" << sep; in DumpStatisticsCsv() local 159 csv << i.pass_name << sep; in DumpStatisticsCsv() 160 csv << i.mem_used_ir << sep; in DumpStatisticsCsv() 161 csv << i.mem_used_local << sep; in DumpStatisticsCsv() 162 csv << i.time_us << sep; in DumpStatisticsCsv() 164 csv << i.before_pass.num_of_basicblocks << sep; in DumpStatisticsCsv() 165 csv << i.after_pass.num_of_basicblocks << sep; in DumpStatisticsCsv() 166 csv << i.before_pass.num_of_instructions << sep; in DumpStatisticsCsv() 167 csv << i.after_pass.num_of_instructions << sep; in DumpStatisticsCsv() [all...] |
H A D | pass_manager_statistics.h | 67 void DumpStatisticsCsv(char sep = ',') const;
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/ |
H A D | pass_manager_statistics.cpp | 153 void PassManagerStatistics::DumpStatisticsCsv(char sep) const in DumpStatisticsCsv() 159 csv << "\"" << mName << "\"" << sep; in DumpStatisticsCsv() local 160 csv << i.passName << sep; in DumpStatisticsCsv() 161 csv << i.memUsedIr << sep; in DumpStatisticsCsv() 162 csv << i.memUsedLocal << sep; in DumpStatisticsCsv() 163 csv << i.timeUs << sep; in DumpStatisticsCsv() 165 csv << i.beforePass.numOfBasicblocks << sep; in DumpStatisticsCsv() 166 csv << i.afterPass.numOfBasicblocks << sep; in DumpStatisticsCsv() 167 csv << i.beforePass.numOfInstructions << sep; in DumpStatisticsCsv() 168 csv << i.afterPass.numOfInstructions << sep; in DumpStatisticsCsv() [all...] |
H A D | pass_manager_statistics.h | 67 void DumpStatisticsCsv(char sep = ',') const;
|
/arkcompiler/runtime_core/static_core/compiler/code_info/ |
H A D | code_info.cpp | 42 const char *sep = ""; in Dump() local 45 sep = ","; in Dump() 49 stream << sep << "s:" << region; in Dump()
|
H A D | code_info_builder.cpp | 110 const char *sep = ""; in DumpCurrentStackMap() local 114 sep = ","; in DumpCurrentStackMap() 118 stream << sep << "s:" << region; in DumpCurrentStackMap()
|
/arkcompiler/ets_frontend/testTs/ |
H A D | config.py | 47 TEST_PATH = os.sep.join([".", "testTs", "test"])
48 OUT_PATH = os.sep.join([".", "out", "testTs"])
49 EXPECT_PATH = os.sep.join([".", "testTs", "expect"])
|
H A D | run_testTs.py | 74 path_list = file.split(os.sep) 76 file = "." + os.sep + file 80 ts_list = temp_out_file_path.split(os.sep) 82 ts_dir_path = os.sep.join(ts_list) 83 path_list = out_file_path.split(os.sep) 85 out_dir_path = os.sep.join(path_list) 195 path_list = file.split(os.sep) 197 file = "." + os.sep + file 201 path_list = out_path.split(os.sep) 203 out_dir_path = os.sep [all...] |
/arkcompiler/runtime_core/static_core/compiler/optimizer/analysis/ |
H A D | liveness_use_table.cpp | 55 auto sep = ""; in Dump() local 57 out << sep << "{" << std::to_string(ln) << ", " << Location::MakeRegister(r, inst->GetType()).ToString(arch) in Dump() 59 sep = ", "; in Dump()
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | js_stable_array_test.cpp | 40 JSHandle<JSTaggedValue> CallJoin(JSHandle<TaggedArray> handleTagArr, std::string& sep, int64_t lengthArr) const in CallJoin() argument 48 JSHandle<JSTaggedValue>::Cast(objFactory->NewFromStdString(sep)).GetTaggedValue()); in CallJoin() 365 std::string sep = ""; in HWTEST_F_L0() local 373 JSHandle<JSTaggedValue> handleTagValEcmaStrRet = CallJoin(handleTagArr, sep, lengthArr); in HWTEST_F_L0() 382 sep = ","; in HWTEST_F_L0() 383 handleTagValEcmaStrRet = CallJoin(handleTagArr, sep, lengthArr); in HWTEST_F_L0() 408 std::string sep = ""; in HWTEST_F_L0() local 418 JSHandle<JSTaggedValue> handleTagValEcmaStrRet = CallJoin(handleTagArr, sep, lengthArr); in HWTEST_F_L0() 439 std::string sep = ","; in HWTEST_F_L0() local 449 JSHandle<JSTaggedValue> handleTagValEcmaStrRet = CallJoin(handleTagArr, sep, lengthAr in HWTEST_F_L0() 471 std::string sep = ","; HWTEST_F_L0() local [all...] |
/arkcompiler/ets_frontend/es2panda/test/ |
H A D | test262util.py | 44 test262_path = path.join(path.sep, 'tmp', 'test262-%s' % revision) 47 archive_file = path.join(path.sep, 'tmp', 'test262.zip') 67 ['unzip', '-q', '-d', path.join(path.sep, 'tmp'), archive_file])
|
/arkcompiler/runtime_core/static_core/compiler/ |
H A D | compile_method.cpp | 59 void JITStats::DumpCsv(char sep) in DumpCsv() argument 64 csv << "\"" << i.methodName << "\"" << sep; in DumpCsv() 65 csv << i.isOsr << sep; in DumpCsv() 66 csv << i.bcSize << sep; in DumpCsv() 67 csv << i.codeSize << sep; in DumpCsv()
|
H A D | compile_method.h | 47 void DumpCsv(char sep = ',');
|
/arkcompiler/runtime_core/compiler/optimizer/ir/ |
H A D | graph.cpp | 519 auto sep = " "; in DumpThrowableInsts() local 521 (*out) << sep << "BB " << bb->GetId(); in DumpThrowableInsts() 522 sep = ", "; in DumpThrowableInsts() 582 const char *sep = ""; in Dump() local 586 stm << sep << #name; \ in Dump() 587 sep = ", "; \ in Dump()
|
H A D | dump.cpp | 197 const char *sep = ""; in DumpInputs() local 199 (*out) << sep << std::dec << InstId(GetInput(i).GetInst(), allocator); in DumpInputs() 205 sep = ", "; in DumpInputs() 209 (*out) << sep << std::hex << "0x" << imm.value; in DumpInputs() 215 sep = ", "; in DumpInputs()
|
/arkcompiler/runtime_core/static_core/scripts/ |
H A D | compiler_bisect.py | 256 print('stdout:', res.stdout.decode('unicode_escape'), sep='\n') 257 print('stderr:', res.stderr.decode('unicode_escape'), sep='\n') 293 *[f'{name}: {opt.values}' for name, opt in runner.opts._asdict().items()], sep='\n')
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | js_stable_array.h | 103 static void SetSepValue(JSHandle<EcmaString> sepStringHandle, int &sep, uint32_t &sepLength); 142 JSHandle<EcmaString> sepStringHandle, int sep, 144 inline static bool WorthUseTreeString(int sep, size_t allocateLength, uint32_t len);
|
H A D | js_stable_array.cpp | 420 void JSStableArray::SetSepValue(JSHandle<EcmaString> sepStringHandle, int &sep, uint32_t &sepLength) in SetSepValue() argument 424 sep = EcmaStringAccessor(sepStringHandle).Get(0); in SetSepValue() 426 sep = JSStableArray::SeparatorFlag::MINUS_TWO; in SetSepValue() 429 sep = JSStableArray::SeparatorFlag::MINUS_ONE; in SetSepValue() 434 bool JSStableArray::WorthUseTreeString(int sep, size_t allocateLength, uint32_t len) in WorthUseTreeString() argument 437 size_t treeStringElementNum = (sep == MINUS_TWO) ? (len - 1) : (2 * (len - 1)); in WorthUseTreeString() 438 // if sep is MINUS_TWO, means all the elements in treeString is len -1; in WorthUseTreeString() 450 const JSHandle<EcmaString> sepStringHandle, const int sep, in JoinUseTreeString() 455 if (sep != JSStableArray::SeparatorFlag::MINUS_TWO) { in JoinUseTreeString() 485 int sep in Join() local 449 JoinUseTreeString(const JSThread* thread, const JSHandle<JSTaggedValue> receiverValue, const JSHandle<EcmaString> sepStringHandle, const int sep, CVector<JSHandle<EcmaString>>& vec) JoinUseTreeString() argument [all...] |
/arkcompiler/toolchain/tooling/client/tcpServer/test/ |
H A D | runtest.py | 45 case_dir = current_dir + os.sep + 'js_test_case'
|
/arkcompiler/runtime_core/static_core/compiler/tools/paoc/ |
H A D | paoc.cpp | 66 char sep = ','; in DumpStatistics() local 67 *stats << method->GetFullName() << sep; in DumpStatistics() 68 *stats << "paoc-summary" << sep; in DumpStatistics() local 69 *stats << allocator.GetAllocatedSize() << sep; in DumpStatistics()
|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/astchecker/ |
H A D | util_astchecker.py | 147 sep = str_match.find(' ') 148 if sep == -1: 168 pattern_type = UtilASTChecker._TestType(str_match[:sep]) 169 pattern = str_match[sep + 1:]
|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/ |
H A D | utils.py | 44 archive_file = path.join(path.sep, 'tmp', f'{name}.zip') 84 temp_path = path.join(path.sep, 'tmp', name, f'{name}-{revision}')
|
/arkcompiler/ets_runtime/ecmascript/extractortool/src/ |
H A D | file_path_utils.h | 28 std::string JoinString(const std::vector<std::string>& strs, char sep, size_t startIndex = 0);
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/ |
H A D | graph.cpp | 763 auto sep = " "; in DumpThrowableInsts() local 765 (*out) << sep << "BB " << bb->GetId(); in DumpThrowableInsts() 766 sep = ", "; in DumpThrowableInsts() 845 const char *sep = ""; in Dump() local 850 stm << sep << #name; \ in Dump() 852 sep = ", "; \ in Dump()
|
/arkcompiler/runtime_core/static_core/runtime/ |
H A D | method.cpp | 303 const char *sep = ""; in GetFullName() local 310 ss << sep << ClassHelper::GetName(GetRefArgType(refIdx++).data); in GetFullName() 312 ss << sep << type; in GetFullName() 314 sep = ", "; in GetFullName()
|