/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/ |
H A D | locations.cpp | 28 void Location::Dump(std::ostream &stm, Arch arch) in Dump() argument 36 stm << GetName() << '?'; in Dump() 38 stm << "acc"; in Dump() 40 stm << target.GetRegName(GetValue(), IsFpRegister()); in Dump() 47 stm << GetName() << GetValue(); in Dump() 50 stm << GetName(); in Dump()
|
H A D | spill_fill_data.h | 81 void Dump(std::ostream &stm, Arch arch) const in Dump() argument 83 GetSrc().Dump(stm, arch); in Dump() 84 stm << " -> "; in Dump() 85 GetDst().Dump(stm, arch); in Dump() 86 stm << " [" << ToString(GetType()) << "]"; in Dump()
|
H A D | locations.h | 214 void Dump(std::ostream &stm, Arch arch);
|
H A D | graph.cpp | 843 void GraphMode::Dump(std::ostream &stm) in Dump() argument 850 stm << sep << #name; \ in Dump()
|
H A D | graph.h | 123 void Dump(std::ostream &stm);
|
/arkcompiler/runtime_core/compiler/optimizer/ir/ |
H A D | spill_fill_data.h | 81 void Dump(std::ostream &stm, Arch arch) const in Dump() argument 83 GetSrc().Dump(stm, arch); in Dump() 84 stm << " -> "; in Dump() 85 GetDst().Dump(stm, arch); in Dump() 86 stm << " [" << ToString(GetType()) << "]"; in Dump()
|
H A D | locations.cpp | 28 void Location::Dump(std::ostream &stm, [[maybe_unused]] Arch arch) in Dump() argument 30 stm << ""; in Dump()
|
H A D | locations.h | 213 void Dump(std::ostream &stm, Arch arch);
|
H A D | graph.cpp | 580 void GraphMode::Dump(std::ostream &stm) in Dump() argument 586 stm << sep << #name; \ in Dump()
|
H A D | graph.h | 88 void Dump(std::ostream &stm);
|
/arkcompiler/runtime_core/static_core/runtime/profiling/ |
H A D | profiling-disasm-inl.h | 25 inline Expected<ProfileContainer, const char *> ReadProfile([[maybe_unused]] std::istream &stm, in ReadProfile() argument 61 [[maybe_unused]] BytecodeInstruction *inst, [[maybe_unused]] std::ostream &stm) in DumpProfile() 60 DumpProfile([[maybe_unused]] ProfileType profile, [[maybe_unused]] ark::panda_file::SourceLang lang, [[maybe_unused]] BytecodeInstruction *inst, [[maybe_unused]] std::ostream &stm) DumpProfile() argument
|
/arkcompiler/runtime_core/static_core/irtoc/lang/ |
H A D | instruction.rb | 330 def dump(stm = STDOUT) 333 stm.print("#{index}.#{@name}#{type}") 336 stm.print(" (#{inputs.join(', ')})") 338 stm.print(mods) 340 stm.print(", #{@fields}")
|
/arkcompiler/runtime_core/static_core/runtime/fibers/arch/arm/ |
H A D | helpers.S | 25 stm r\tmp_regid, {r4-r12}
|
/arkcompiler/runtime_core/static_core/runtime/bridge/arch/arm/ |
H A D | compiled_code_to_interpreter_bridge_armhf.S | 188 stm r2, {r9, r10} 197 stm r2, {r9, r10} 205 stm r2, {r9, r10}
|
H A D | interpreter_to_compiled_code_bridge_armhf.S | 131 stm \stack_ptr!, {\tmp1, \tmp2} 164 stm \stack_ptr!, {\tmp1, \tmp2} 426 stm r3, {r0, r1} 462 stm sp, {THREAD_REG, fp}
|
H A D | interpreter_to_compiled_code_bridge_arm.S | 38 stm \stack_ptr!, {\tmp1, \tmp2} 51 stm \stack_ptr, {\tmp1, \tmp2} 129 stm sp, {THREAD_REG, fp} 293 stm sp, {THREAD_REG, fp}
|
H A D | interpreter_to_compiled_code_bridge_dyn_arm.S | 33 stm sp, {THREAD_REG, fp}
|
H A D | compiled_code_to_runtime_bridge_arm.S | 20 stm \tmp_reg, {r4-r10} 178 stm sp, {r12, lr}
|
H A D | compiled_code_to_interpreter_bridge_arm.S | 180 stm r2, {r4, r5}
|
H A D | deoptimization_arm.S | 55 stm r3, {r5, r6}
|
/arkcompiler/runtime_core/static_core/disassembler/ |
H A D | disassembler.cpp | 86 std::ifstream stm(fname.data(), std::ios::binary); in SetProfile() 87 if (!stm.is_open()) { in SetProfile() 91 auto res = profiling::ReadProfile(stm, fileLanguage_); in SetProfile()
|