Home
last modified time | relevance | path

Searched refs:events (Results 1 – 25 of 28) sorted by relevance

12

/arkcompiler/runtime_core/compiler/tests/
Dosr_test.cpp102 auto events = Events::CastTo<Events::MEMORY>(); in TEST_F() local
103 auto osr_events = events->Select<events::EventsMemory::OsrEntryEvent>(); in TEST_F()
117 auto events = Events::CastTo<Events::MEMORY>(); in TEST_F() local
118 auto osr_events = events->Select<events::EventsMemory::OsrEntryEvent>(); in TEST_F()
154 auto events = Events::CastTo<Events::MEMORY>(); in TEST_F() local
155 auto osr_events = events->Select<events::EventsMemory::OsrEntryEvent>(); in TEST_F()
168 auto events = Events::CastTo<Events::MEMORY>(); in TEST_F() local
169 auto osr_events = events->Select<events::EventsMemory::OsrEntryEvent>(); in TEST_F()
205 auto events = Events::CastTo<Events::MEMORY>(); in TEST_F() local
206 auto osr_events = events->Select<events::EventsMemory::OsrEntryEvent>(); in TEST_F()
[all …]
/arkcompiler/runtime_core/libpandabase/events/
Devents_gen.h.erb31 namespace events {
33 % EventsData.events.each do |event|
48 % EventsData.events.each do |event|
59 % EventsData.events.each do |event|
72 class EventsMemory : public events::EventsBase {
75 % EventsData.events.each do |event|
84 …struct EventRecord : public ListNode, public std::variant<<%= EventsData.events.map{|e| e.name.cam…
85 …using VariantBase = std::variant<<%= EventsData.events.map{|e| e.name.camelize + 'Event'}.join(', …
86 % EventsData.events.each do |event|
102 % EventsData.events.each do |event|
[all …]
Devents.rb72 def events method
77 @events = data.events.map { |op| Event.new(op) }
/arkcompiler/runtime_core/scripts/
Dtrace_enable.sh37 echo 1 > $TRACKING_PATH/events/sched/sched_switch/enable
38 echo 1 > $TRACKING_PATH/events/sched/sched_wakeup/enable
42 echo 0 > $TRACKING_PATH/events/sched/sched_switch/enable
43 echo 0 > $TRACKING_PATH/events/sched/sched_wakeup/enable
/arkcompiler/toolchain/tooling/test/testcases/
Djs_local_variable_scope_test.h94 void SendNotification(const PtBaseEvents &events) override in SendNotification() argument
96 const static std::vector<std::function<bool(const PtBaseEvents &events)>> eventList = { in SendNotification()
97 [](const PtBaseEvents &events) -> bool { in SendNotification()
99 auto parsed = static_cast<const ScriptParsed *>(&events); in SendNotification()
106 [this](const PtBaseEvents &events) -> bool { in SendNotification()
107 auto paused = static_cast<const Paused *>(&events); in SendNotification()
138 ASSERT_TRUE(eventList[index_++](events)); in SendNotification()
Djs_variable_second_test.h93 void SendNotification(const PtBaseEvents &events) override in SendNotification() argument
95 const static std::vector<std::function<bool(const PtBaseEvents &events)>> eventList = { in SendNotification()
96 [](const PtBaseEvents &events) -> bool { in SendNotification()
98 auto parsed = static_cast<const ScriptParsed *>(&events); in SendNotification()
106 [this](const PtBaseEvents &events) -> bool { in SendNotification()
107 auto paused = static_cast<const Paused *>(&events); in SendNotification()
158 ASSERT_TRUE(eventList[index_](events)); in SendNotification()
Djs_container_test.h94 void SendNotification(const PtBaseEvents &events) override in SendNotification() argument
96 const static std::vector<std::function<bool(const PtBaseEvents &events)>> eventList = { in SendNotification()
97 [](const PtBaseEvents &events) -> bool { in SendNotification()
99 auto parsed = static_cast<const ScriptParsed *>(&events); in SendNotification()
107 [this](const PtBaseEvents &events) -> bool { in SendNotification()
108 auto paused = static_cast<const Paused *>(&events); in SendNotification()
128 ASSERT_TRUE(eventList[index_](events)); in SendNotification()
Djs_variable_first_test.h93 void SendNotification(const PtBaseEvents &events) override in SendNotification() argument
95 const static std::vector<std::function<bool(const PtBaseEvents &events)>> eventList = { in SendNotification()
96 [](const PtBaseEvents &events) -> bool { in SendNotification()
98 auto parsed = static_cast<const ScriptParsed *>(&events); in SendNotification()
106 [this](const PtBaseEvents &events) -> bool { in SendNotification()
107 auto paused = static_cast<const Paused *>(&events); in SendNotification()
158 ASSERT_TRUE(eventList[index_](events)); in SendNotification()
Djs_module_variable_test.h97 void SendNotification(const PtBaseEvents &events) override in SendNotification() argument
99 const static std::vector<std::function<bool(const PtBaseEvents &events)>> eventList = { in SendNotification()
100 [](const PtBaseEvents &events) -> bool { in SendNotification()
101 auto parsed = static_cast<const ScriptParsed *>(&events); in SendNotification()
109 [this](const PtBaseEvents &events) -> bool { in SendNotification()
110 auto paused = static_cast<const Paused *>(&events); in SendNotification()
130 ASSERT_TRUE(eventList[index_](events)); in SendNotification()
Djs_dropframe_test.h119 void SendNotification(const PtBaseEvents &events) override in SendNotification() argument
121 const static std::vector<std::function<bool(const PtBaseEvents &events)>> eventList = { in SendNotification()
122 [](const PtBaseEvents &events) -> bool { in SendNotification()
124 auto parsed = static_cast<const ScriptParsed *>(&events); in SendNotification()
129 [this](const PtBaseEvents &events) -> bool { in SendNotification()
131 auto paused = static_cast<const Paused *>(&events); in SendNotification()
167 ASSERT_TRUE(eventList[index_](events)); in SendNotification()
/arkcompiler/toolchain/tooling/test/utils/
Dtest_channel.h42 void SendNotification(const PtBaseEvents &events) override in SendNotification() argument
44 std::string str = events.ToJson()->Stringify(); in SendNotification()
/arkcompiler/toolchain/tooling/
Dprotocol_handler.cpp101 void ProtocolHandler::SendNotification(const PtBaseEvents &events) in SendNotification() argument
103 LOG_DEBUGGER(DEBUG) << "ProtocolHandler::SendNotification: " << events.GetName(); in SendNotification()
104 std::unique_ptr<PtJson> reply = events.ToJson(); in SendNotification()
Dprotocol_channel.h35 virtual void SendNotification(const PtBaseEvents &events) = 0;
Dprotocol_handler.h47 void SendNotification(const PtBaseEvents &events) override;
/arkcompiler/runtime_core/libpandabase/
DBUILD.gn37 template_file = "events/events_gen.h.erb"
38 data_file = "events/events.yaml"
39 requires = [ "events/events.rb" ]
/arkcompiler/runtime_core/tests/checked/
Dtlab_test.pa15 …0 --no-async-jit=false --compiler-enable-jit=true --compiler-enable-tlab-events=true --compiler-ch…
32 #! RUN_PAOC options: "--compiler-enable-tlab-events=true --compiler-regex=.*tlab.* --young-shar…
33 #! RUN options: "--compiler-enable-tlab-events=true", entry: "_GLOBAL::main"
43 …0 --no-async-jit=false --compiler-enable-jit=true --compiler-enable-tlab-events=true --compiler-ch…
DREADME.md25 * **EVENT** (event: pattern) search event within all events
/arkcompiler/runtime_core/templates/
Dcommon.rb207 def events method
208 @data.events.map do |op|
/arkcompiler/runtime_core/docs/
Druntime-debug-api.md25 …r`](../runtime/include/runtime_notification.h) class that allows to subscript for different events:
29 [`tooling::Debugger`](../runtime/tooling/debugger.h) subscribes to these events and notificates deb…
/arkcompiler/runtime_core/compiler/optimizer/templates/intrinsics/
Dintrinsics_codegen.inl.erb39 events::IntrinsicCompilationResult::INLINE_FAILED);
/arkcompiler/runtime_core/templates/events/
Devents.h.erb42 % Common::events.each do |op|
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DcorrelatedUnions.ts251 function processEvents<K extends keyof DocumentEventMap>(events: Ev<K>[]) {
252 for (const event of events) {
254 AssertType(events, "Ev<K>[]");
/arkcompiler/runtime_core/compiler/
DBUILD.gn271 template_file = "$ark_root/templates/events/events.h.erb"
/arkcompiler/runtime_core/cmake/
DPandaAssembly.cmake324 if (${runtime_options} MATCHES ".*events-output=csv.*")
325 set(runtime_options "${runtime_options} --events-file=${build_dir}/events.csv")
/arkcompiler/runtime_core/
DREADME.md49 …by templates and scripts used to process command line options, loggers, error messages, and events.

12