/arkcompiler/runtime_core/compiler/tests/ |
D | osr_test.cpp | 102 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/ |
D | events_gen.h.erb | 31 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 …]
|
D | events.rb | 72 def events method 77 @events = data.events.map { |op| Event.new(op) }
|
/arkcompiler/runtime_core/scripts/ |
D | trace_enable.sh | 37 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/ |
D | js_local_variable_scope_test.h | 94 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()
|
D | js_variable_second_test.h | 93 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()
|
D | js_container_test.h | 94 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()
|
D | js_variable_first_test.h | 93 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()
|
D | js_module_variable_test.h | 97 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()
|
D | js_dropframe_test.h | 119 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/ |
D | test_channel.h | 42 void SendNotification(const PtBaseEvents &events) override in SendNotification() argument 44 std::string str = events.ToJson()->Stringify(); in SendNotification()
|
/arkcompiler/toolchain/tooling/ |
D | protocol_handler.cpp | 101 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()
|
D | protocol_channel.h | 35 virtual void SendNotification(const PtBaseEvents &events) = 0;
|
D | protocol_handler.h | 47 void SendNotification(const PtBaseEvents &events) override;
|
/arkcompiler/runtime_core/libpandabase/ |
D | BUILD.gn | 37 template_file = "events/events_gen.h.erb" 38 data_file = "events/events.yaml" 39 requires = [ "events/events.rb" ]
|
/arkcompiler/runtime_core/tests/checked/ |
D | tlab_test.pa | 15 …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…
|
D | README.md | 25 * **EVENT** (event: pattern) search event within all events
|
/arkcompiler/runtime_core/templates/ |
D | common.rb | 207 def events method 208 @data.events.map do |op|
|
/arkcompiler/runtime_core/docs/ |
D | runtime-debug-api.md | 25 …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/ |
D | intrinsics_codegen.inl.erb | 39 events::IntrinsicCompilationResult::INLINE_FAILED);
|
/arkcompiler/runtime_core/templates/events/ |
D | events.h.erb | 42 % Common::events.each do |op|
|
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/ |
D | correlatedUnions.ts | 251 function processEvents<K extends keyof DocumentEventMap>(events: Ev<K>[]) { 252 for (const event of events) { 254 AssertType(events, "Ev<K>[]");
|
/arkcompiler/runtime_core/compiler/ |
D | BUILD.gn | 271 template_file = "$ark_root/templates/events/events.h.erb"
|
/arkcompiler/runtime_core/cmake/ |
D | PandaAssembly.cmake | 324 if (${runtime_options} MATCHES ".*events-output=csv.*") 325 set(runtime_options "${runtime_options} --events-file=${build_dir}/events.csv")
|
/arkcompiler/runtime_core/ |
D | README.md | 49 …by templates and scripts used to process command line options, loggers, error messages, and events.
|