Modify LTTng state provider to ignore scheduler wakeups on already-running processes
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.kernel.core / src / org / eclipse / linuxtools / internal / lttng2 / kernel / core / stateprovider / LttngKernelStateProvider.java
1 /*******************************************************************************
2 * Copyright (c) 2012, 2013 Ericsson
3 * Copyright (c) 2010, 2011 École Polytechnique de Montréal
4 * Copyright (c) 2010, 2011 Alexandre Montplaisir <alexandre.montplaisir@gmail.com>
5 *
6 * All rights reserved. This program and the accompanying materials are
7 * made available under the terms of the Eclipse Public License v1.0 which
8 * accompanies this distribution, and is available at
9 * http://www.eclipse.org/legal/epl-v10.html
10 *
11 *******************************************************************************/
12
13 package org.eclipse.linuxtools.internal.lttng2.kernel.core.stateprovider;
14
15 import java.util.HashMap;
16
17 import org.eclipse.linuxtools.internal.lttng2.kernel.core.Attributes;
18 import org.eclipse.linuxtools.internal.lttng2.kernel.core.LttngStrings;
19 import org.eclipse.linuxtools.internal.lttng2.kernel.core.StateValues;
20 import org.eclipse.linuxtools.tmf.core.ctfadaptor.CtfTmfEvent;
21 import org.eclipse.linuxtools.tmf.core.ctfadaptor.CtfTmfTrace;
22 import org.eclipse.linuxtools.tmf.core.event.ITmfEvent;
23 import org.eclipse.linuxtools.tmf.core.event.ITmfEventField;
24 import org.eclipse.linuxtools.tmf.core.exceptions.AttributeNotFoundException;
25 import org.eclipse.linuxtools.tmf.core.exceptions.StateValueTypeException;
26 import org.eclipse.linuxtools.tmf.core.exceptions.TimeRangeException;
27 import org.eclipse.linuxtools.tmf.core.statesystem.AbstractTmfStateProvider;
28 import org.eclipse.linuxtools.tmf.core.statesystem.ITmfStateSystemBuilder;
29 import org.eclipse.linuxtools.tmf.core.statevalue.ITmfStateValue;
30 import org.eclipse.linuxtools.tmf.core.statevalue.TmfStateValue;
31
32 /**
33 * This is the state change input plugin for TMF's state system which handles
34 * the LTTng 2.0 kernel traces in CTF format.
35 *
36 * It uses the reference handler defined in CTFKernelHandler.java.
37 *
38 * @author alexmont
39 *
40 */
41 public class LttngKernelStateProvider extends AbstractTmfStateProvider {
42
43 /**
44 * Version number of this state provider. Please bump this if you modify the
45 * contents of the generated state history in some way.
46 */
47 private static final int VERSION = 3;
48
49 /* Event names HashMap. TODO: This can be discarded once we move to Java 7 */
50 private final HashMap<String, Integer> knownEventNames;
51
52 // ------------------------------------------------------------------------
53 // Constructor
54 // ------------------------------------------------------------------------
55
56 /**
57 * Instantiate a new state provider plugin.
58 *
59 * @param trace
60 * The LTTng 2.0 kernel trace directory
61 */
62 public LttngKernelStateProvider(CtfTmfTrace trace) {
63 super(trace, CtfTmfEvent.class, "LTTng Kernel"); //$NON-NLS-1$
64 knownEventNames = fillEventNames();
65 }
66
67 // ------------------------------------------------------------------------
68 // IStateChangeInput
69 // ------------------------------------------------------------------------
70
71 @Override
72 public int getVersion() {
73 return VERSION;
74 }
75
76 @Override
77 public void assignTargetStateSystem(ITmfStateSystemBuilder ssb) {
78 /* We can only set up the locations once the state system is assigned */
79 super.assignTargetStateSystem(ssb);
80 }
81
82 @Override
83 public LttngKernelStateProvider getNewInstance() {
84 return new LttngKernelStateProvider((CtfTmfTrace) this.getTrace());
85 }
86
87 @Override
88 protected void eventHandle(ITmfEvent ev) {
89 /*
90 * AbstractStateChangeInput should have already checked for the correct
91 * class type
92 */
93 CtfTmfEvent event = (CtfTmfEvent) ev;
94
95 int quark;
96 ITmfStateValue value;
97
98 final ITmfEventField content = event.getContent();
99 final String eventName = event.getEventName();
100 final long ts = event.getTimestamp().getValue();
101
102 try {
103 /* Shortcut for the "current CPU" attribute node */
104 final Integer currentCPUNode = ss.getQuarkRelativeAndAdd(getNodeCPUs(), String.valueOf(event.getCPU()));
105
106 /*
107 * Shortcut for the "current thread" attribute node. It requires
108 * querying the current CPU's current thread.
109 */
110 quark = ss.getQuarkRelativeAndAdd(currentCPUNode, Attributes.CURRENT_THREAD);
111 value = ss.queryOngoingState(quark);
112 int thread = value.unboxInt();
113 final Integer currentThreadNode = ss.getQuarkRelativeAndAdd(getNodeThreads(), String.valueOf(thread));
114
115 /*
116 * Feed event to the history system if it's known to cause a state
117 * transition.
118 */
119 switch (getEventIndex(eventName)) {
120
121 case 1: // "exit_syscall":
122 /* Fields: int64 ret */
123 {
124 /* Clear the current system call on the process */
125 quark = ss.getQuarkRelativeAndAdd(currentThreadNode, Attributes.SYSTEM_CALL);
126 value = TmfStateValue.nullValue();
127 ss.modifyAttribute(ts, value, quark);
128
129 /* Put the process' status back to user mode */
130 quark = ss.getQuarkRelativeAndAdd(currentThreadNode, Attributes.STATUS);
131 value = StateValues.PROCESS_STATUS_RUN_USERMODE_VALUE;
132 ss.modifyAttribute(ts, value, quark);
133
134 /* Put the CPU's status back to user mode */
135 quark = ss.getQuarkRelativeAndAdd(currentCPUNode, Attributes.STATUS);
136 value = StateValues.CPU_STATUS_RUN_USERMODE_VALUE;
137 ss.modifyAttribute(ts, value, quark);
138 }
139 break;
140
141 case 2: // "irq_handler_entry":
142 /* Fields: int32 irq, string name */
143 {
144 Integer irqId = ((Long) content.getField(LttngStrings.IRQ).getValue()).intValue();
145
146 /* Mark this IRQ as active in the resource tree.
147 * The state value = the CPU on which this IRQ is sitting */
148 quark = ss.getQuarkRelativeAndAdd(getNodeIRQs(), irqId.toString());
149 value = TmfStateValue.newValueInt(event.getCPU());
150 ss.modifyAttribute(ts, value, quark);
151
152 /* Change the status of the running process to interrupted */
153 quark = ss.getQuarkRelativeAndAdd(currentThreadNode, Attributes.STATUS);
154 value = StateValues.PROCESS_STATUS_INTERRUPTED_VALUE;
155 ss.modifyAttribute(ts, value, quark);
156
157 /* Change the status of the CPU to interrupted */
158 quark = ss.getQuarkRelativeAndAdd(currentCPUNode, Attributes.STATUS);
159 value = StateValues.CPU_STATUS_IRQ_VALUE;
160 ss.modifyAttribute(ts, value, quark);
161 }
162 break;
163
164 case 3: // "irq_handler_exit":
165 /* Fields: int32 irq, int32 ret */
166 {
167 Integer irqId = ((Long) content.getField(LttngStrings.IRQ).getValue()).intValue();
168
169 /* Put this IRQ back to inactive in the resource tree */
170 quark = ss.getQuarkRelativeAndAdd(getNodeIRQs(), irqId.toString());
171 value = TmfStateValue.nullValue();
172 ss.modifyAttribute(ts, value, quark);
173
174 /* Set the previous process back to running */
175 setProcessToRunning(ts, currentThreadNode);
176
177 /* Set the CPU status back to running or "idle" */
178 cpuExitInterrupt(ts, currentCPUNode, currentThreadNode);
179 }
180 break;
181
182 case 4: // "softirq_entry":
183 /* Fields: int32 vec */
184 {
185 Integer softIrqId = ((Long) content.getField(LttngStrings.VEC).getValue()).intValue();
186
187 /* Mark this SoftIRQ as active in the resource tree.
188 * The state value = the CPU on which this SoftIRQ is processed */
189 quark = ss.getQuarkRelativeAndAdd(getNodeSoftIRQs(), softIrqId.toString());
190 value = TmfStateValue.newValueInt(event.getCPU());
191 ss.modifyAttribute(ts, value, quark);
192
193 /* Change the status of the running process to interrupted */
194 quark = ss.getQuarkRelativeAndAdd(currentThreadNode, Attributes.STATUS);
195 value = StateValues.PROCESS_STATUS_INTERRUPTED_VALUE;
196 ss.modifyAttribute(ts, value, quark);
197
198 /* Change the status of the CPU to interrupted */
199 quark = ss.getQuarkRelativeAndAdd(currentCPUNode, Attributes.STATUS);
200 value = StateValues.CPU_STATUS_SOFTIRQ_VALUE;
201 ss.modifyAttribute(ts, value, quark);
202 }
203 break;
204
205 case 5: // "softirq_exit":
206 /* Fields: int32 vec */
207 {
208 Integer softIrqId = ((Long) content.getField(LttngStrings.VEC).getValue()).intValue();
209
210 /* Put this SoftIRQ back to inactive (= -1) in the resource tree */
211 quark = ss.getQuarkRelativeAndAdd(getNodeSoftIRQs(), softIrqId.toString());
212 value = TmfStateValue.nullValue();
213 ss.modifyAttribute(ts, value, quark);
214
215 /* Set the previous process back to running */
216 setProcessToRunning(ts, currentThreadNode);
217
218 /* Set the CPU status back to "busy" or "idle" */
219 cpuExitInterrupt(ts, currentCPUNode, currentThreadNode);
220 }
221 break;
222
223 case 6: // "softirq_raise":
224 /* Fields: int32 vec */
225 {
226 Integer softIrqId = ((Long) content.getField(LttngStrings.VEC).getValue()).intValue();
227
228 /* Mark this SoftIRQ as *raised* in the resource tree.
229 * State value = -2 */
230 quark = ss.getQuarkRelativeAndAdd(getNodeSoftIRQs(), softIrqId.toString());
231 value = StateValues.SOFT_IRQ_RAISED_VALUE;
232 ss.modifyAttribute(ts, value, quark);
233 }
234 break;
235
236 case 7: // "sched_switch":
237 /*
238 * Fields: string prev_comm, int32 prev_tid, int32 prev_prio, int64 prev_state,
239 * string next_comm, int32 next_tid, int32 next_prio
240 */
241 {
242 Integer prevTid = ((Long) content.getField(LttngStrings.PREV_TID).getValue()).intValue();
243 Long prevState = (Long) content.getField(LttngStrings.PREV_STATE).getValue();
244 String nextProcessName = (String) content.getField(LttngStrings.NEXT_COMM).getValue();
245 Integer nextTid = ((Long) content.getField(LttngStrings.NEXT_TID).getValue()).intValue();
246
247 Integer formerThreadNode = ss.getQuarkRelativeAndAdd(getNodeThreads(), prevTid.toString());
248 Integer newCurrentThreadNode = ss.getQuarkRelativeAndAdd(getNodeThreads(), nextTid.toString());
249
250 /* Set the status of the process that got scheduled out. */
251 quark = ss.getQuarkRelativeAndAdd(formerThreadNode, Attributes.STATUS);
252 if (prevState != 0) {
253 value = StateValues.PROCESS_STATUS_WAIT_BLOCKED_VALUE;
254 } else {
255 value = StateValues.PROCESS_STATUS_WAIT_FOR_CPU_VALUE;
256 }
257 ss.modifyAttribute(ts, value, quark);
258
259 /* Set the status of the new scheduled process */
260 setProcessToRunning(ts, newCurrentThreadNode);
261
262 /* Set the exec name of the new process */
263 quark = ss.getQuarkRelativeAndAdd(newCurrentThreadNode, Attributes.EXEC_NAME);
264 value = TmfStateValue.newValueString(nextProcessName);
265 ss.modifyAttribute(ts, value, quark);
266
267 /* Make sure the PPID and system_call sub-attributes exist */
268 ss.getQuarkRelativeAndAdd(newCurrentThreadNode, Attributes.SYSTEM_CALL);
269 ss.getQuarkRelativeAndAdd(newCurrentThreadNode, Attributes.PPID);
270
271 /* Set the current scheduled process on the relevant CPU */
272 quark = ss.getQuarkRelativeAndAdd(currentCPUNode, Attributes.CURRENT_THREAD);
273 value = TmfStateValue.newValueInt(nextTid);
274 ss.modifyAttribute(ts, value, quark);
275
276 /* Set the status of the CPU itself */
277 if (nextTid > 0) {
278 /* Check if the entering process is in kernel or user mode */
279 quark = ss.getQuarkRelativeAndAdd(newCurrentThreadNode, Attributes.SYSTEM_CALL);
280 if (ss.queryOngoingState(quark).isNull()) {
281 value = StateValues.CPU_STATUS_RUN_USERMODE_VALUE;
282 } else {
283 value = StateValues.CPU_STATUS_RUN_SYSCALL_VALUE;
284 }
285 } else {
286 value = StateValues.CPU_STATUS_IDLE_VALUE;
287 }
288 quark = ss.getQuarkRelativeAndAdd(currentCPUNode, Attributes.STATUS);
289 ss.modifyAttribute(ts, value, quark);
290 }
291 break;
292
293 case 8: // "sched_process_fork":
294 /* Fields: string parent_comm, int32 parent_tid,
295 * string child_comm, int32 child_tid */
296 {
297 // String parentProcessName = (String) event.getFieldValue("parent_comm");
298 String childProcessName = (String) content.getField(LttngStrings.CHILD_COMM).getValue();
299 // assert ( parentProcessName.equals(childProcessName) );
300
301 Integer parentTid = ((Long) content.getField(LttngStrings.PARENT_TID).getValue()).intValue();
302 Integer childTid = ((Long) content.getField(LttngStrings.CHILD_TID).getValue()).intValue();
303
304 Integer parentTidNode = ss.getQuarkRelativeAndAdd(getNodeThreads(), parentTid.toString());
305 Integer childTidNode = ss.getQuarkRelativeAndAdd(getNodeThreads(), childTid.toString());
306
307 /* Assign the PPID to the new process */
308 quark = ss.getQuarkRelativeAndAdd(childTidNode, Attributes.PPID);
309 value = TmfStateValue.newValueInt(parentTid);
310 ss.modifyAttribute(ts, value, quark);
311
312 /* Set the new process' exec_name */
313 quark = ss.getQuarkRelativeAndAdd(childTidNode, Attributes.EXEC_NAME);
314 value = TmfStateValue.newValueString(childProcessName);
315 ss.modifyAttribute(ts, value, quark);
316
317 /* Set the new process' status */
318 quark = ss.getQuarkRelativeAndAdd(childTidNode, Attributes.STATUS);
319 value = StateValues.PROCESS_STATUS_WAIT_FOR_CPU_VALUE;
320 ss.modifyAttribute(ts, value, quark);
321
322 /* Set the process' syscall name, to be the same as the parent's */
323 quark = ss.getQuarkRelativeAndAdd(parentTidNode, Attributes.SYSTEM_CALL);
324 value = ss.queryOngoingState(quark);
325 if (value.isNull()) {
326 /*
327 * Maybe we were missing info about the parent? At least we
328 * will set the child right. Let's suppose "sys_clone".
329 */
330 value = TmfStateValue.newValueString(LttngStrings.SYS_CLONE);
331 }
332 quark = ss.getQuarkRelativeAndAdd(childTidNode, Attributes.SYSTEM_CALL);
333 ss.modifyAttribute(ts, value, quark);
334 }
335 break;
336
337 case 9: // "sched_process_exit":
338 /* Fields: string comm, int32 tid, int32 prio */
339 break;
340
341 case 10: // "sched_process_free":
342 /* Fields: string comm, int32 tid, int32 prio */
343 /*
344 * A sched_process_free will always happen after the sched_switch
345 * that will remove the process from the cpu for the last time. So
346 * this is when we should delete everything wrt to the process.
347 */
348 {
349 Integer tid = ((Long) content.getField(LttngStrings.TID).getValue()).intValue();
350 /*
351 * Remove the process and all its sub-attributes from the
352 * current state
353 */
354 quark = ss.getQuarkRelativeAndAdd(getNodeThreads(), tid.toString());
355 ss.removeAttribute(ts, quark);
356 }
357 break;
358
359 case 11: // "lttng_statedump_process_state":
360 /* Fields:
361 * int32 type, int32 mode, int32 pid, int32 submode, int32 vpid,
362 * int32 ppid, int32 tid, string name, int32 status, int32 vtid */
363 {
364 Integer tid = ((Long) content.getField(LttngStrings.TID).getValue()).intValue();
365 int ppid = ((Long) content.getField(LttngStrings.PPID).getValue()).intValue();
366 int status = ((Long) content.getField(LttngStrings.STATUS).getValue()).intValue();
367 String name = (String) content.getField(LttngStrings.NAME).getValue();
368 /*
369 * "mode" could be interesting too, but it doesn't seem to be
370 * populated with anything relevant for now.
371 */
372
373 int curThreadNode = ss.getQuarkRelativeAndAdd(getNodeThreads(), tid.toString());
374
375 /* Set the process' name */
376 quark = ss.getQuarkRelativeAndAdd(curThreadNode, Attributes.EXEC_NAME);
377 if (ss.queryOngoingState(quark).isNull()) {
378 /* If the value didn't exist previously, set it */
379 value = TmfStateValue.newValueString(name);
380 ss.modifyAttribute(ts, value, quark);
381 }
382
383 /* Set the process' PPID */
384 quark = ss.getQuarkRelativeAndAdd(curThreadNode, Attributes.PPID);
385 if (ss.queryOngoingState(quark).isNull()) {
386 value = TmfStateValue.newValueInt(ppid);
387 ss.modifyAttribute(ts, value, quark);
388 }
389
390 /* Set the process' status */
391 quark = ss.getQuarkRelativeAndAdd(curThreadNode, Attributes.STATUS);
392 if (ss.queryOngoingState(quark).isNull()) {
393 /* "2" here means "WAIT_FOR_CPU", and "5" "WAIT_BLOCKED" in the LTTng kernel. */
394 if (status == 2) {
395 value = StateValues.PROCESS_STATUS_WAIT_FOR_CPU_VALUE;
396 } else if (status == 5) {
397 value = StateValues.PROCESS_STATUS_WAIT_BLOCKED_VALUE;
398 } else {
399 value = StateValues.PROCESS_STATUS_UNKNOWN_VALUE;
400 }
401 ss.modifyAttribute(ts, value, quark);
402 }
403 }
404 break;
405
406 case 12: // "sched_wakeup":
407 case 13: // "sched_wakeup_new":
408 /* Fields (same fields for both types):
409 * string comm, int32 pid, int32 prio, int32 success,
410 * int32 target_cpu */
411 {
412 final int tid = ((Long) content.getField(LttngStrings.TID).getValue()).intValue();
413 final int threadNode = ss.getQuarkRelativeAndAdd(getNodeThreads(), String.valueOf(tid));
414
415 /*
416 * The process indicated in the event's payload is now ready to
417 * run. Assign it to the "wait for cpu" state, but only if it
418 * was not already running.
419 */
420 quark = ss.getQuarkRelativeAndAdd(threadNode, Attributes.STATUS);
421 int status = ss.queryOngoingState(quark).unboxInt();
422
423 if (status != StateValues.PROCESS_STATUS_RUN_SYSCALL &&
424 status != StateValues.PROCESS_STATUS_RUN_USERMODE) {
425 value = StateValues.PROCESS_STATUS_WAIT_FOR_CPU_VALUE;
426 ss.modifyAttribute(ts, value, quark);
427 }
428 }
429 break;
430
431 default:
432 /* Other event types not covered by the main switch */
433 {
434 if (eventName.startsWith(LttngStrings.SYSCALL_PREFIX)
435 || eventName.startsWith(LttngStrings.COMPAT_SYSCALL_PREFIX)) {
436 /*
437 * This is a replacement for the old sys_enter event. Now
438 * syscall names are listed into the event type
439 */
440
441 /* Assign the new system call to the process */
442 quark = ss.getQuarkRelativeAndAdd(currentThreadNode, Attributes.SYSTEM_CALL);
443 value = TmfStateValue.newValueString(eventName);
444 ss.modifyAttribute(ts, value, quark);
445
446 /* Put the process in system call mode */
447 quark = ss.getQuarkRelativeAndAdd(currentThreadNode, Attributes.STATUS);
448 value = StateValues.PROCESS_STATUS_RUN_SYSCALL_VALUE;
449 ss.modifyAttribute(ts, value, quark);
450
451 /* Put the CPU in system call (kernel) mode */
452 quark = ss.getQuarkRelativeAndAdd(currentCPUNode, Attributes.STATUS);
453 value = StateValues.CPU_STATUS_RUN_SYSCALL_VALUE;
454 ss.modifyAttribute(ts, value, quark);
455 }
456 }
457 break;
458 } // End of big switch
459
460 } catch (AttributeNotFoundException ae) {
461 /*
462 * This would indicate a problem with the logic of the manager here,
463 * so it shouldn't happen.
464 */
465 ae.printStackTrace();
466
467 } catch (TimeRangeException tre) {
468 /*
469 * This would happen if the events in the trace aren't ordered
470 * chronologically, which should never be the case ...
471 */
472 System.err.println("TimeRangeExcpetion caught in the state system's event manager."); //$NON-NLS-1$
473 System.err.println("Are the events in the trace correctly ordered?"); //$NON-NLS-1$
474 tre.printStackTrace();
475
476 } catch (StateValueTypeException sve) {
477 /*
478 * This would happen if we were trying to push/pop attributes not of
479 * type integer. Which, once again, should never happen.
480 */
481 sve.printStackTrace();
482 }
483 }
484
485 // ------------------------------------------------------------------------
486 // Convenience methods for commonly-used attribute tree locations
487 // ------------------------------------------------------------------------
488
489 private int getNodeCPUs() {
490 return ss.getQuarkAbsoluteAndAdd(Attributes.CPUS);
491 }
492
493 private int getNodeThreads() {
494 return ss.getQuarkAbsoluteAndAdd(Attributes.THREADS);
495 }
496
497 private int getNodeIRQs() {
498 return ss.getQuarkAbsoluteAndAdd(Attributes.RESOURCES, Attributes.IRQS);
499 }
500
501 private int getNodeSoftIRQs() {
502 return ss.getQuarkAbsoluteAndAdd(Attributes.RESOURCES, Attributes.SOFT_IRQS);
503 }
504
505 // ------------------------------------------------------------------------
506 // Workaround for the lack of switch-on-strings in Java < 7
507 // ------------------------------------------------------------------------
508
509 private static HashMap<String, Integer> fillEventNames() {
510 /*
511 * TODO Replace with straight strings in the switch/case once we move to
512 * Java 7
513 */
514 HashMap<String, Integer> map = new HashMap<String, Integer>();
515
516 map.put(LttngStrings.EXIT_SYSCALL, 1);
517 map.put(LttngStrings.IRQ_HANDLER_ENTRY, 2);
518 map.put(LttngStrings.IRQ_HANDLER_EXIT, 3);
519 map.put(LttngStrings.SOFTIRQ_ENTRY, 4);
520 map.put(LttngStrings.SOFTIRQ_EXIT, 5);
521 map.put(LttngStrings.SOFTIRQ_RAISE, 6);
522 map.put(LttngStrings.SCHED_SWITCH, 7);
523 map.put(LttngStrings.SCHED_PROCESS_FORK, 8);
524 map.put(LttngStrings.SCHED_PROCESS_EXIT, 9);
525 map.put(LttngStrings.SCHED_PROCESS_FREE, 10);
526 map.put(LttngStrings.STATEDUMP_PROCESS_STATE, 11);
527 map.put(LttngStrings.SCHED_WAKEUP, 12);
528 map.put(LttngStrings.SCHED_WAKEUP_NEW, 13);
529
530 return map;
531 }
532
533 private int getEventIndex(String eventName) {
534 Integer ret = knownEventNames.get(eventName);
535 return (ret != null) ? ret : -1;
536 }
537
538 // ------------------------------------------------------------------------
539 // Advanced state-setting methods
540 // ------------------------------------------------------------------------
541
542 /**
543 * When we want to set a process back to a "running" state, first check
544 * its current System_call attribute. If there is a system call active, we
545 * put the process back in the syscall state. If not, we put it back in
546 * user mode state.
547 */
548 private void setProcessToRunning(long ts, int currentThreadNode)
549 throws AttributeNotFoundException, TimeRangeException,
550 StateValueTypeException {
551 int quark;
552 ITmfStateValue value;
553
554 quark = ss.getQuarkRelativeAndAdd(currentThreadNode, Attributes.SYSTEM_CALL);
555 if (ss.queryOngoingState(quark).isNull()) {
556 /* We were in user mode before the interruption */
557 value = StateValues.PROCESS_STATUS_RUN_USERMODE_VALUE;
558 } else {
559 /* We were previously in kernel mode */
560 value = StateValues.PROCESS_STATUS_RUN_SYSCALL_VALUE;
561 }
562 quark = ss.getQuarkRelativeAndAdd(currentThreadNode, Attributes.STATUS);
563 ss.modifyAttribute(ts, value, quark);
564 }
565
566 /**
567 * Similar logic as above, but to set the CPU's status when it's coming out
568 * of an interruption.
569 */
570 private void cpuExitInterrupt(long ts, int currentCpuNode, int currentThreadNode)
571 throws StateValueTypeException, AttributeNotFoundException,
572 TimeRangeException {
573 int quark;
574 ITmfStateValue value;
575
576 quark = ss.getQuarkRelativeAndAdd(currentCpuNode, Attributes.CURRENT_THREAD);
577 if (ss.queryOngoingState(quark).unboxInt() > 0) {
578 /* There was a process on the CPU */
579 quark = ss.getQuarkRelative(currentThreadNode, Attributes.SYSTEM_CALL);
580 if (ss.queryOngoingState(quark).isNull()) {
581 /* That process was in user mode */
582 value = StateValues.CPU_STATUS_RUN_USERMODE_VALUE;
583 } else {
584 /* That process was in a system call */
585 value = StateValues.CPU_STATUS_RUN_SYSCALL_VALUE;
586 }
587 } else {
588 /* There was no real process scheduled, CPU was idle */
589 value = StateValues.CPU_STATUS_IDLE_VALUE;
590 }
591 quark = ss.getQuarkRelativeAndAdd(currentCpuNode, Attributes.STATUS);
592 ss.modifyAttribute(ts, value, quark);
593 }
594 }
This page took 0.048578 seconds and 6 git commands to generate.