Home
last modified time | relevance | path

Searched full:method_name (Results 1 – 25 of 49) sorted by relevance

12

/arkcompiler/runtime_core/runtime/
Druntime.yaml39 method_name: absI32
51 method_name: absI64
63 method_name: absF32
75 method_name: absF64
87 method_name: minI32
98 method_name: minI64
109 method_name: minF32
120 method_name: minF64
131 method_name: maxI32
142 method_name: maxI64
[all …]
/arkcompiler/runtime_core/irtoc/lang/
Disa.rb22 def cached(method_name) argument
23 definer = instance_methods.include?(method_name) ? :define_method : :define_singleton_method
24 noncached_method = instance_method(method_name)
25 send(definer, method_name) do
26 unless instance_variable_defined? "@#{method_name}"
27 instance_variable_set("@#{method_name}", noncached_method.bind(self).call)
29 instance_variable_get("@#{method_name}").freeze
Dvalidation.rb77 YAML.load_file(validation_file).each do |method_name, data|
78 method = methods[method_name.to_sym]
79 raise "Method not found: #{method_name}" unless method
/arkcompiler/runtime_core/verification/config/debug_breakpoint/
Dbreakpoint.cpp31 …ets> BreakpointsForName(const BreakpointConfigT &breakpoint_config, const PandaString &method_name) in BreakpointsForName() argument
34 [&](const auto &pair) { return pair.first == method_name; }); in BreakpointsForName()
41 void AddBreakpointConfig(const PandaString &method_name, Offset offset) in AddBreakpointConfig() argument
44 auto opt_breakpoints = BreakpointsForName(breakpoint_config, method_name); in AddBreakpointConfig()
48 breakpoint_config.push_back({method_name, Offsets {offset}}); in AddBreakpointConfig()
50 LOG_VERIFIER_DEBUG_BREAKPOINT_ADDED_INFO(method_name, offset); in AddBreakpointConfig()
53 void DebugContext::InsertBreakpoints(const PandaString &method_name, Method::UniqId id) in InsertBreakpoints() argument
55 auto opt_breakpoints = BreakpointsForName(ManagedBreakpoints.Config, method_name); in InsertBreakpoints()
58 LOG_VERIFIER_DEBUG_BREAKPOINT_SET_INFO(method_name, id, offset); in InsertBreakpoints()
Dbreakpoint_private.h24 void AddBreakpointConfig(const PandaString &method_name, Offset offset);
26 inline void AddBreakpointConfig([[maybe_unused]] const PandaString &method_name, [[maybe_unused]] O…
Dconfig_handler_breakpoints.cpp87 static const auto METHOD_NAME = p5::of_charset(!charset {" \t,"}) |= METHOD_NAME_HANDLER; in BreakpointParser() local
88 …static const auto BREAKPOINT = ~WS >> METHOD_NAME >> *(~WS >> COMMA >> ~WS >> OFFSET) >> ~WS >> p:… in BreakpointParser()
/arkcompiler/runtime_core/irtoc/
Dintrinsics.yaml22 method_name:
36 method_name:
49 method_name:
62 method_name:
76 method_name:
90 method_name:
103 method_name:
117 method_name:
131 method_name:
/arkcompiler/runtime_core/compiler/
Dcompile_method.cpp37 const std::string &method_name);
98 …nt8_t *GetEntryPoint(Graph *graph, [[maybe_unused]] Method *method, const std::string &method_name, in GetEntryPoint() argument
104 … ? EmitElf(graph, code_allocator, gdb_debug_info_allocator, method_name) in GetEntryPoint()
110 LOG(INFO, COMPILER) << "Compilation failed due to memory allocation fail: " << method_name; in GetEntryPoint()
114 LOG(INFO, COMPILER) << "Compiled code for '" << method_name << "' has been installed to " in GetEntryPoint()
118 …EVENT_COMPILATION(method_name, is_osr, method->GetCodeSize(), reinterpret_cast<uintptr_t>(entry_po… in GetEntryPoint()
127 std::string method_name = runtime->GetMethodFullName(method, false); in JITCompileMethod() local
128 SCOPED_TRACE_STREAM << "JIT compiling " << method_name; in JITCompileMethod()
130 if (!options.MatchesRegex(method_name)) { in JITCompileMethod()
131 LOG(DEBUG, COMPILER) << "Skip the method due to regexp mismatch: " << method_name; in JITCompileMethod()
[all …]
Dcompile_method.h33 … ArenaAllocator *local_allocator, bool is_dynamic, Arch *arch, const std::string &method_name,
35 bool CheckMethodInLists(const std::string &method_name);
Dcompiler_options.h66 bool MatchesRegex(const T &method_name) in MatchesRegex() argument
75 return std::regex_match(method_name, regex_); in MatchesRegex()
/arkcompiler/runtime_core/isa/
Dgen.rb24 def cached(method_name) argument
25 definer = instance_methods.include?(method_name) ? :define_method : :define_singleton_method
26 noncached_method = instance_method(method_name)
27 send(definer, method_name) do
28 unless instance_variable_defined? "@#{method_name}"
29 instance_variable_set("@#{method_name}", noncached_method.bind(self).call)
31 instance_variable_get("@#{method_name}").freeze
/arkcompiler/runtime_core/templates/events/
Devents.h.erb30 EventWriter(std::string_view class_name, std::string_view method_name) {
33 …std::copy(method_name.begin(), method_name.begin() + std::min(method_name.size(), BUF_SIZE - 1) + …
42 void <%= op.method_name %>(<%= op.args_list %>) {
/arkcompiler/runtime_core/verification/
Dmessages.yaml477 args: class_name, method_name, class_id
479 Cannot find class definition for method parameter. Method '${class_name}.${method_name}'.
517 args: method_name
518 …message: Argument of method '${method_name}' was not resolved at caching stage (class was not foun…
522 args: method_name
523 message: Internal error. Cannot convert argument of method '${method_name}' to type
547 args: method_name, jump_target_offset, jump_instruction_offset, details
550 Method: '${method_name}'.
557 args: method_name, instruction_offset
560 Method: '${method_name}'.
[all …]
/arkcompiler/runtime_core/compiler/tools/
Dbenchmark_coverage.sh119 method_name=$(echo $1 | rev | cut -f 1 -d '.' | rev)
123 method_name=$1
151 local tmp_file=$benchmark-$class_name-$method_name.tmp
154 … $PAOC --paoc-panda-files="$benchmark.abc" --compiler-regex="$class_name::$method_name" \
185 echo -n " --compiler-regex=\"$class_name::$method_name\"" >> $LOG_ERROR
285 local method_name=$method_name
288 local method_name=".cctor"
291 local method_name=".ctor"
296 local tmp_file=$test-$class_name-$method_name.tmp
299 $PAOC --paoc-panda-files=$test.abc --compiler-regex="$class_name::$method_name" \
[all …]
/arkcompiler/runtime_core/libpandabase/events/
Devents.yaml29 - name: method_name
57 - name: method_name
67 - name: method_name
80 - name: method_name
196 - name: method_name
/arkcompiler/runtime_core/verification/config/options/
Dmethod_options_config.h40 const MethodOptions &operator[](const PandaString &method_name) const
44 if (std::regex_match(method_name, regex)) {
/arkcompiler/runtime_core/compiler/tools/paoc/
Dpaoc_clusters.h112 const auto &method_name = p.first; in InitClustersMap() local
117 … LOG_PAOC_CLUSTERS(FATAL) << "Can't get clusters array for method `" << method_name << "`"; in InitClustersMap()
119 auto &cur_clusters = special_options_.try_emplace(method_name).first->second; in InitClustersMap()
132 … LOG_PAOC_CLUSTERS(FATAL) << "Incorrect reference to a cluster for `" << method_name << "`"; in InitClustersMap()
136 … LOG_PAOC_CLUSTERS(FATAL) << "Cluster's index out of range for `" << method_name << "`"; in InitClustersMap()
Dpaoc.cpp537 auto method_name = runtime_->GetMethodFullName(&method, false); in Compile() local
539 …IsMethodInList(method_name) && options.MatchesRegex(method_name) && !Compile(&method, method_index… in Compile()
610 auto method_name = runtime_->GetMethodFullName(method, false); in Compile() local
614 << "): " << method_name; in Compile()
618 PaocClusters::ScopedApplySpecialOptions to(method_name, &clusters_info_); in Compile()
622 EVENT_COMPILATION(method_name, false, ctx.method->GetCodeSize(), 0, 0, 0, in Compile()
786 auto method_name = runtime_->GetMethodFullName(method, false); in Skip() local
788 if (method_name == paoc_options_->GetPaocSkipUntil()) { in Skip()
797 …if (paoc_options_->WasSetPaocCompileUntil() && method_name == paoc_options_->GetPaocCompileUntil()… in Skip()
/arkcompiler/runtime_core/compiler/tools/debug/
Djit_writer.h47 …rch arch, RuntimeInterface *runtime, CodeAllocator *code_allocator, const std::string &method_name) in JitDebugWriter() argument
48 : code_allocator_(code_allocator), method_name_(method_name) in JitDebugWriter()
/arkcompiler/runtime_core/verification/config/context/
Dcontext.h66 void InsertBreakpoints(const PandaString &method_name, Method::UniqId id);
68 …void InsertBreakpoints([[maybe_unused]] const PandaString &method_name, [[maybe_unused]] Method::U… in InsertBreakpoints()
/arkcompiler/runtime_core/libpandafile/tests/
Dfile_item_container_test.cpp250 StringItem *method_name = container.GetOrCreateStringItem("foo"); variable
256 …MethodItem *method_item = class_item->AddMethod(method_name, proto_item, ACC_PUBLIC | ACC_STATIC, …
378 EXPECT_EQ(data_accessor.GetNameId().GetOffset(), method_name->GetOffset()); in __anona8d9bbf90802()
410 StringItem *method_name = container.GetOrCreateStringItem("foo"); variable
416 …MethodItem *method_item = class_item->AddMethod(method_name, proto_item, ACC_PUBLIC | ACC_STATIC, …
440 EXPECT_EQ(data_accessor.GetNameId().GetOffset(), method_name->GetOffset()); in __anona8d9bbf90b02()
488 StringItem *method_name = container.GetOrCreateStringItem("foo"); in TestProtos() local
513 …MethodItem *method_item = class_item->AddMethod(method_name, proto_item, ACC_PUBLIC | ACC_STATIC, … in TestProtos()
584 StringItem *method_name = container.GetOrCreateStringItem("foo"); variable
590 …MethodItem *method_item = class_item->AddMethod(method_name, proto_item, ACC_PUBLIC | ACC_STATIC, …
[all …]
/arkcompiler/runtime_core/runtime/templates/
Dintrinsics.yaml.erb18 method_name: <%= intrinsic.method_name %>
Dintrinsics_gen.h.erb92 mutf8_name = reinterpret_cast<const uint8_t *>("<%= intrinsic.method_name %>");
107 …IME) << "Cannot find method '<%= intrinsic.class_name %>.<%= intrinsic.method_name %>' in space '<…
111 % method_full_name = intrinsic.class_name + "::" + intrinsic.method_name
/arkcompiler/runtime_core/verification/jobs/
Dthread_pool.cpp44 auto method_name = method.GetFullName(); in Process() local
61 const auto &verif_method_options = method_options[method_name]; in Process()
62 …LOG(DEBUG, VERIFIER) << "Verification config for '" << method_name << "': " << verif_method_option… in Process()
/arkcompiler/runtime_core/verification/config/handlers/
Dconfig_handler_whitelist.cpp53 …static const auto METHOD_NAME = p1::of_charset(!charset {" \t,"}) |= METHOD_NAME_HANDLER; // NOLI… in WhitelistMethodParser() local
55 static const auto WHITELIST_METHOD = ~WS >> METHOD_NAME >> ~WS >> p::end() | ~WS >> p::end(); in WhitelistMethodParser()

12