diff --git a/.gitmodules b/.gitmodules index ada6c789..09e88c56 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ [submodule "flamegraph"] path = flamegraph - url = https://github.com/brendangregg/FlameGraph.git + url = https://github.com/jonhoo/FlameGraph.git diff --git a/flamegraph b/flamegraph index 1b1c6dee..98137095 160000 --- a/flamegraph +++ b/flamegraph @@ -1 +1 @@ -Subproject commit 1b1c6deede9c33c5134c920bdb7a44cc5528e9a7 +Subproject commit 98137095121e43df85d8ffd29a05b3eb78a62f39 diff --git a/src/collapse/perf.rs b/src/collapse/perf.rs index fc7640df..a0596f4a 100644 --- a/src/collapse/perf.rs +++ b/src/collapse/perf.rs @@ -158,7 +158,13 @@ impl CollapsePrivate for Folder { // information to get started). Only read one stack, however, as we would // like the remaining stacks to be processed on the worker threads. let mut line_buffer = String::new(); - self.process_single_stack(&mut line_buffer, reader, occurrences)?; + let eof = self.process_single_stack(&mut line_buffer, reader, occurrences)?; + + if eof { + // If we hit EOF, it may be that the input was completely empty. + // In that case, we don't do the event_filter assertion below. + return Ok(()); + } // If we didn't find an event filter, there is something wrong with // our processing code. @@ -275,6 +281,9 @@ impl Folder { loop { line_buffer.clear(); if reader.read_line(line_buffer)? == 0 { + if !self.stack.is_empty() { + self.after_event(occurrences); + } return Ok(true); } if line_buffer.starts_with('#') { @@ -287,12 +296,17 @@ impl Folder { } else if self.in_event { self.on_stack_line(line); } else { + assert!(self.stack.is_empty()); self.on_event_line(line); + if !self.stack.is_empty() { + // we must have hit a combined event/stack line + self.after_event(occurrences); + } } } } - fn event_line_parts(line: &str) -> Option<(&str, &str, &str)> { + fn event_line_parts(line: &str) -> Option<(&str, &str, &str, usize)> { let mut word_start = 0; let mut all_digits = false; let mut last_was_space = false; @@ -310,7 +324,7 @@ impl Folder { }; // also trim comm in case multiple spaces were used to separate let comm = line[..(word_start - 1)].trim(); - return Some((comm, pid, tid)); + return Some((comm, pid, tid, idx + 1)); } word_start = idx + 1; all_digits = true; @@ -338,29 +352,57 @@ impl Folder { // java 12688/12764 6544038.708352: cpu-clock: // V8 WorkerThread 24636/25607 [000] 94564.109216: cycles: // vote 913 72.176760: 257597 cycles:uppp: + // false 64414 20110.539270: 34467 cycles:u: ffffffff9aa3c8de [unknown] ([unknown]) fn on_event_line(&mut self, line: &str) { self.in_event = true; - if let Some((comm, pid, tid)) = Self::event_line_parts(line) { - if let Some(event) = line.rsplitn(2, ' ').next() { - if event.ends_with(':') { - let event = &event[..(event.len() - 1)]; - - if let Some(ref event_filter) = self.event_filter { - if event != event_filter { - self.skip_stack = true; - return; - } - } else { - // By default only show events of the first encountered event type. - // Merging together different types, such as instructions and cycles, - // produces misleading results. - logging::filtering_for_events_of_type(event); - self.event_filter = Some(event.to_string()); + if let Some((comm, pid, tid, end)) = Self::event_line_parts(line) { + let mut by_colons = line[end..].splitn(3, ':').skip(1); + let event = by_colons + .next() + .and_then(|has_event| has_event.rsplit(' ').next()); + if let Some(event) = event { + if let Some(ref event_filter) = self.event_filter { + if event != event_filter { + self.skip_stack = true; + return; } + } else { + // By default only show events of the first encountered event type. + // Merging together different types, such as instructions and cycles, + // produces misleading results. + logging::filtering_for_events_of_type(event); + self.event_filter = Some(event.to_string()); } } + // some event lines _include_ a stack line if the stack only has one frame. + // in that case, the event will be followed by the stack. + let single_stack = if let Some(post_event) = by_colons.next() { + // we need to deal with a couple of cases here: + // + // vote 913 72.176760: 257597 cycles:uppp: + // false 64414 20110.539270: 34467 cycles:u: ffffffff9aa3c8de [unknown] ([unknown]) + // false 64414 20110.539270: 34467 cycles: ffffffff9aa3c8de [unknown] ([unknown]) + // + // the first should not be handled as a stack, whereas the latter two both should + // the trick is going to be to trim until we encounter a space or a :, whichever + // comes first, and then evaluate from there. + let post_event_start = post_event + .find(|c| c == ':' || c == ' ') + .map(|i| i + 1) + .unwrap_or(0); + let post_event = post_event[post_event_start..].trim(); + if !post_event.is_empty() { + // we have a stack! + Some(post_event) + } else { + None + } + } else { + None + }; + // XXX: re-use existing memory in pname if possible self.pname = comm.replace(' ', "_"); if self.opt.include_tid { @@ -372,6 +414,11 @@ impl Folder { self.pname.push_str("-"); self.pname.push_str(pid); } + + if let Some(stack_line) = single_stack { + self.on_stack_line(stack_line); + self.in_event = false; + } } else { logging::weird_event_line(line); self.in_event = false; diff --git a/tests/collapse-perf.rs b/tests/collapse-perf.rs index b77c3ed6..dc2c2e03 100644 --- a/tests/collapse-perf.rs +++ b/tests/collapse-perf.rs @@ -228,6 +228,9 @@ macro_rules! collapse_perf_tests { } collapse_perf_tests! { + collapse_perf_no_events, + collapse_perf_single_line_stacks, + collapse_perf_single_event, collapse_perf_go_stacks, collapse_perf_java_inline } diff --git a/tests/data/collapse-perf/no-events.txt b/tests/data/collapse-perf/no-events.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/data/collapse-perf/results/go-stacks-collapsed.txt b/tests/data/collapse-perf/results/go-stacks-collapsed.txt index a1ebad24..0d714c24 100644 --- a/tests/data/collapse-perf/results/go-stacks-collapsed.txt +++ b/tests/data/collapse-perf/results/go-stacks-collapsed.txt @@ -1,4 +1,5 @@ go;[unknown];[unknown];runtime.main;main.main;cmd/go/internal/run.runRun;cmd/go/internal/load.PackagesAndErrors;cmd/go/internal/load.loadPackage;cmd/go/internal/load.LoadImport;cmd/go/internal/load.(*Package).load;cmd/go/internal/load.LoadImport;cmd/go/internal/load.(*Package).load;cmd/go/internal/load.LoadImport;cmd/go/internal/load.(*Package).load;cmd/go/internal/load.LoadImport;cmd/go/internal/load.(*Package).load;cmd/go/internal/load.LoadImport;go/build.(*Context).Import;go/build.(*Context).matchFile;go/build.readImports;go/build.(*importReader).readKeyword;go/build.(*importReader).peekByte;go/build.(*importReader).readByte 1 +go;[unknown];[unknown];runtime.main;main.main;cmd/go/internal/run.runRun;cmd/go/internal/load.PackagesAndErrors;cmd/go/internal/load.loadPackage;cmd/go/internal/load.LoadImport;cmd/go/internal/load.(*Package).load;cmd/go/internal/load.LoadImport;cmd/go/internal/load.(*Package).load;cmd/go/internal/load.LoadImport;cmd/go/internal/load.(*Package).load;cmd/go/internal/load.LoadImport;cmd/go/internal/load.(*Package).load;cmd/go/internal/load.LoadImport;go/build.(*Context).Import;go/parser.ParseFile;go/parser.(*parser).parseFile;go/parser.(*parser).expectSemi;go/parser.(*parser).next;go/parser.(*parser).consumeComment 1 go;[unknown];x_cgo_notify_runtime_init_done;runtime.main;main.init;cmd/go/internal/base.init;cmd/go/internal/cfg.init;go/build.init;go/doc.init;text/template.init;text/template.init.ializers;text/template.createValueFuncs;text/template.addValueFuncs;runtime.mapassign_faststr 1 go;[unknown];x_cgo_notify_runtime_init_done;runtime.main;main.init;cmd/go/internal/bug.init;cmd/go/internal/envcmd.init;cmd/go/internal/modload.init;cmd/go/internal/modfetch.init;cmd/go/internal/get.init;cmd/go/internal/work.init;cmd/go/internal/work.init.ializers;regexp.MustCompile;regexp.compile;regexp/syntax.Compile;runtime.growslice 1 go;[unknown];x_cgo_notify_runtime_init_done;runtime.main;main.init;cmd/go/internal/bug.init;cmd/go/internal/envcmd.init;cmd/go/internal/modload.init;cmd/go/internal/modfetch.init;cmd/go/internal/get.init;cmd/go/internal/work.init;cmd/go/internal/work.init.ializers;regexp.MustCompile;regexp.compile;regexp/syntax.Parse;regexp/syntax.(*parser).literal;regexp/syntax.(*parser).push;regexp/syntax.(*parser).maybeConcat;runtime.growslice 1 diff --git a/tests/data/collapse-perf/results/java-inline-collapsed.txt b/tests/data/collapse-perf/results/java-inline-collapsed.txt index b2fb54d7..70b5047a 100644 --- a/tests/data/collapse-perf/results/java-inline-collapsed.txt +++ b/tests/data/collapse-perf/results/java-inline-collapsed.txt @@ -1,6 +1,6 @@ java;[unknown];__GI___libc_write 6 java;[unknown];__GI___libc_write;entry_SYSCALL_64_after_hwframe;do_syscall_64 2 -java;[unknown];__GI___libc_write;entry_SYSCALL_64_after_hwframe;do_syscall_64;ksys_write;__fdget_pos;__fget_light 2 +java;[unknown];__GI___libc_write;entry_SYSCALL_64_after_hwframe;do_syscall_64;ksys_write;__fdget_pos;__fget_light 3 java;[unknown];__GI___libc_write;entry_SYSCALL_64_after_hwframe;do_syscall_64;ksys_write;fput 1 java;[unknown];__GI___libc_write;entry_SYSCALL_64_after_hwframe;do_syscall_64;ksys_write;vfs_write;__vfs_write;tty_write;n_tty_write 1 java;[unknown];__GI___libc_write;entry_SYSCALL_64_after_hwframe;do_syscall_64;ksys_write;vfs_write;__vfs_write;tty_write;n_tty_write;_raw_spin_unlock_irqrestore 1 diff --git a/tests/data/collapse-perf/results/no-events-collapsed.txt b/tests/data/collapse-perf/results/no-events-collapsed.txt new file mode 100644 index 00000000..e69de29b diff --git a/tests/data/collapse-perf/results/single-event-collapsed.txt b/tests/data/collapse-perf/results/single-event-collapsed.txt new file mode 100644 index 00000000..f572440f --- /dev/null +++ b/tests/data/collapse-perf/results/single-event-collapsed.txt @@ -0,0 +1 @@ +boa_cli;[unknown];boa_cli::main;boa::realm::Realm::create;boa::realm::Realm::create_instrinsics;boa::builtins::console::create_constructor;boa::builtins::value::ValueData::set_field_slice;boa::builtins::value::ValueData::set_field;boa::builtins::object::internal_methods_trait::ObjectInternalMethods::set;::define_own_property;boa::builtins::value::to_value;::to_value;gc::Gc::new;gc::gc::GcBox::new;std::thread::local::LocalKey::with;std::thread::local::LocalKey::try_with;gc::gc::GcBox::new::_{{closure}};gc::gc::collect_garbage;gc::gc::collect_garbage::mark;gc::gc::GcBox::trace_inner; as gc::trace::Trace>::trace; as gc::trace::Trace>::trace; as gc::trace::Trace>::trace::mark;::trace;::trace::mark; as gc::trace::Trace>::trace; as gc::trace::Trace>::trace::mark;::trace;::trace::mark; as gc::trace::Trace>::trace;gc::gc::GcBox::trace_inner;::trace;::trace::mark; as gc::trace::Trace>::trace;::trace;::trace::mark; as gc::trace::Trace>::trace; as gc::trace::Trace>::trace::mark; as gc::trace::Trace>::trace; as gc::trace::Trace>::trace::mark;::trace;::trace::mark; as gc::trace::Trace>::trace; as gc::trace::Trace>::trace::mark; as gc::trace::Trace>::trace;gc::gc::GcBox::trace_inner;::trace;::trace::mark; as gc::trace::Trace>::trace;::trace;::trace::mark; as gc::trace::Trace>::trace; as gc::trace::Trace>::trace::mark; as gc::trace::Trace>::trace; as gc::trace::Trace>::trace::mark;::trace;::trace::mark; as gc::trace::Trace>::trace; as gc::trace::Trace>::trace::mark; as gc::trace::Trace>::trace;gc::gc::GcBox::trace_inner;::trace;::trace::mark; as gc::trace::Trace>::trace;::trace;::trace::mark; as gc::trace::Trace>::trace; as gc::trace::Trace>::trace::mark; as gc::trace::Trace>::trace; as gc::trace::Trace>::trace::mark;::trace;::trace::mark; as gc::trace::Trace>::trace; as gc::trace::Trace>::trace::mark; as gc::trace::Trace>::trace;gc::gc::GcBox::trace_inner;::trace;::trace::mark; as gc::trace::Trace>::trace; as gc::trace::Trace>::trace::mark; as gc::trace::Trace>::trace;::trace;::trace::mark;::trace;::trace::mark;::trace;::trace::mark; as gc::trace::Trace>::trace; as gc::trace::Trace>::trace::mark; as gc::trace::Trace>::trace 1 diff --git a/tests/data/collapse-perf/results/single-line-stacks-collapsed.txt b/tests/data/collapse-perf/results/single-line-stacks-collapsed.txt new file mode 100644 index 00000000..f23a160a --- /dev/null +++ b/tests/data/collapse-perf/results/single-line-stacks-collapsed.txt @@ -0,0 +1,2 @@ +false;[unknown] 1 +false;_dl_start 1 diff --git a/tests/data/collapse-perf/single-event.txt b/tests/data/collapse-perf/single-event.txt new file mode 100644 index 00000000..df8470e1 --- /dev/null +++ b/tests/data/collapse-perf/single-event.txt @@ -0,0 +1,90 @@ +boa_cli 12937 10360.271071: 10101010 cpu-clock:uhH: + 562039122f0f as gc::trace::Trace>::trace+0xbf (/workspaces/boa/target/debug/boa_cli) + 56203912789e as gc::trace::Trace>::trace::mark+0xe (/workspaces/boa/target/debug/boa_cli) + 562039148b50 as gc::trace::Trace>::trace+0x20 (/workspaces/boa/target/debug/boa_cli) + 5620391b9e5e ::trace::mark+0xe (/workspaces/boa/target/debug/boa_cli) + 56203917a598 ::trace+0x68 (/workspaces/boa/target/debug/boa_cli) + 5620391ca6bd ::trace::mark+0xd (/workspaces/boa/target/debug/boa_cli) + 5620391b9470 ::trace+0x20 (/workspaces/boa/target/debug/boa_cli) + 5620391ca53d ::trace::mark+0xd (/workspaces/boa/target/debug/boa_cli) + 5620391b8da6 ::trace+0x36 (/workspaces/boa/target/debug/boa_cli) + 56203915fcfa as gc::trace::Trace>::trace+0x5a (/workspaces/boa/target/debug/boa_cli) + 56203912787e as gc::trace::Trace>::trace::mark+0xe (/workspaces/boa/target/debug/boa_cli) + 562039148a90 as gc::trace::Trace>::trace+0x20 (/workspaces/boa/target/debug/boa_cli) + 562039126b6e ::trace::mark+0xe (/workspaces/boa/target/debug/boa_cli) + 56203915ace0 ::trace+0xe0 (/workspaces/boa/target/debug/boa_cli) + 5620391bc62a gc::gc::GcBox::trace_inner+0x5a (/workspaces/boa/target/debug/boa_cli) + 56203915ef63 as gc::trace::Trace>::trace+0x23 (/workspaces/boa/target/debug/boa_cli) + 562039127b8e as gc::trace::Trace>::trace::mark+0xe (/workspaces/boa/target/debug/boa_cli) + 5620391c9761 as gc::trace::Trace>::trace+0x41 (/workspaces/boa/target/debug/boa_cli) + 56203917b5fe ::trace::mark+0xe (/workspaces/boa/target/debug/boa_cli) + 562039166a37 ::trace+0x87 (/workspaces/boa/target/debug/boa_cli) + 562039127e2d as gc::trace::Trace>::trace::mark+0xd (/workspaces/boa/target/debug/boa_cli) + 56203912306a as gc::trace::Trace>::trace+0x10a (/workspaces/boa/target/debug/boa_cli) + 56203912785e as gc::trace::Trace>::trace::mark+0xe (/workspaces/boa/target/debug/boa_cli) + 562039148ac0 as gc::trace::Trace>::trace+0x20 (/workspaces/boa/target/debug/boa_cli) + 5620391b9dfe ::trace::mark+0xe (/workspaces/boa/target/debug/boa_cli) + 56203917a5a3 ::trace+0x73 (/workspaces/boa/target/debug/boa_cli) + 56203915fc8a as gc::trace::Trace>::trace+0x5a (/workspaces/boa/target/debug/boa_cli) + 562039126b8e ::trace::mark+0xe (/workspaces/boa/target/debug/boa_cli) + 56203915acc3 ::trace+0xc3 (/workspaces/boa/target/debug/boa_cli) + 5620391bc62a gc::gc::GcBox::trace_inner+0x5a (/workspaces/boa/target/debug/boa_cli) + 56203915ef63 as gc::trace::Trace>::trace+0x23 (/workspaces/boa/target/debug/boa_cli) + 562039127b8e as gc::trace::Trace>::trace::mark+0xe (/workspaces/boa/target/debug/boa_cli) + 5620391c9761 as gc::trace::Trace>::trace+0x41 (/workspaces/boa/target/debug/boa_cli) + 56203917b5fe ::trace::mark+0xe (/workspaces/boa/target/debug/boa_cli) + 562039166a37 ::trace+0x87 (/workspaces/boa/target/debug/boa_cli) + 562039127e2d as gc::trace::Trace>::trace::mark+0xd (/workspaces/boa/target/debug/boa_cli) + 56203912306a as gc::trace::Trace>::trace+0x10a (/workspaces/boa/target/debug/boa_cli) + 56203912785e as gc::trace::Trace>::trace::mark+0xe (/workspaces/boa/target/debug/boa_cli) + 562039148ac0 as gc::trace::Trace>::trace+0x20 (/workspaces/boa/target/debug/boa_cli) + 5620391b9dfe ::trace::mark+0xe (/workspaces/boa/target/debug/boa_cli) + 56203917a5a3 ::trace+0x73 (/workspaces/boa/target/debug/boa_cli) + 56203915fc8a as gc::trace::Trace>::trace+0x5a (/workspaces/boa/target/debug/boa_cli) + 562039126b8e ::trace::mark+0xe (/workspaces/boa/target/debug/boa_cli) + 56203915acc3 ::trace+0xc3 (/workspaces/boa/target/debug/boa_cli) + 5620391bc62a gc::gc::GcBox::trace_inner+0x5a (/workspaces/boa/target/debug/boa_cli) + 56203915ef63 as gc::trace::Trace>::trace+0x23 (/workspaces/boa/target/debug/boa_cli) + 562039127b8e as gc::trace::Trace>::trace::mark+0xe (/workspaces/boa/target/debug/boa_cli) + 5620391c9761 as gc::trace::Trace>::trace+0x41 (/workspaces/boa/target/debug/boa_cli) + 56203917b5fe ::trace::mark+0xe (/workspaces/boa/target/debug/boa_cli) + 562039166a37 ::trace+0x87 (/workspaces/boa/target/debug/boa_cli) + 562039127e2d as gc::trace::Trace>::trace::mark+0xd (/workspaces/boa/target/debug/boa_cli) + 56203912306a as gc::trace::Trace>::trace+0x10a (/workspaces/boa/target/debug/boa_cli) + 56203912785e as gc::trace::Trace>::trace::mark+0xe (/workspaces/boa/target/debug/boa_cli) + 562039148ac0 as gc::trace::Trace>::trace+0x20 (/workspaces/boa/target/debug/boa_cli) + 5620391b9dfe ::trace::mark+0xe (/workspaces/boa/target/debug/boa_cli) + 56203917a5a3 ::trace+0x73 (/workspaces/boa/target/debug/boa_cli) + 56203915fc8a as gc::trace::Trace>::trace+0x5a (/workspaces/boa/target/debug/boa_cli) + 562039126b8e ::trace::mark+0xe (/workspaces/boa/target/debug/boa_cli) + 56203915acc3 ::trace+0xc3 (/workspaces/boa/target/debug/boa_cli) + 5620391bc62a gc::gc::GcBox::trace_inner+0x5a (/workspaces/boa/target/debug/boa_cli) + 56203915ef63 as gc::trace::Trace>::trace+0x23 (/workspaces/boa/target/debug/boa_cli) + 5620391b95fe ::trace::mark+0xe (/workspaces/boa/target/debug/boa_cli) + 5620391b4bbd ::trace+0x3d (/workspaces/boa/target/debug/boa_cli) + 5620391277ed as gc::trace::Trace>::trace::mark+0xd (/workspaces/boa/target/debug/boa_cli) + 562039148be0 as gc::trace::Trace>::trace+0x20 (/workspaces/boa/target/debug/boa_cli) + 5620391cb52e ::trace::mark+0xe (/workspaces/boa/target/debug/boa_cli) + 5620391336e8 ::trace+0x48 (/workspaces/boa/target/debug/boa_cli) + 5620391278ed as gc::trace::Trace>::trace::mark+0x1d (/workspaces/boa/target/debug/boa_cli) + 562039148af4 as gc::trace::Trace>::trace+0x24 (/workspaces/boa/target/debug/boa_cli) + 56203915fddb as gc::trace::Trace>::trace+0x5b (/workspaces/boa/target/debug/boa_cli) + 5620394a6c7a gc::gc::GcBox::trace_inner+0x7a (/workspaces/boa/target/debug/boa_cli) + 5620394a6f7c gc::gc::collect_garbage::mark+0xdc (/workspaces/boa/target/debug/boa_cli) + 5620394a6d95 gc::gc::collect_garbage+0x105 (/workspaces/boa/target/debug/boa_cli) + 5620391bcf1e gc::gc::GcBox$LT$T$GT$::new::_$u7b$$u7b$closure$u7d$$u7d$::ha2ed0674a1c3dc9f+0x10e (/workspaces/boa/target/debug/boa_cli) + 5620391e3b80 std::thread::local::LocalKey::try_with+0x140 (/workspaces/boa/target/debug/boa_cli) + 5620391e385c std::thread::local::LocalKey::with+0x3c (/workspaces/boa/target/debug/boa_cli) + 5620391bc889 gc::gc::GcBox::new+0x39 (/workspaces/boa/target/debug/boa_cli) + 56203915d08a gc::Gc::new+0x9a (/workspaces/boa/target/debug/boa_cli) + 5620390d2626 ::to_value+0x46 (/workspaces/boa/target/debug/boa_cli) + 562039126731 boa::builtins::value::to_value+0x11 (/workspaces/boa/target/debug/boa_cli) + 5620391774a5 ::define_own_property+0x85 (/workspaces/boa/target/debug/boa_cli) + 5620391b9b8e boa::builtins::object::internal_methods_trait::ObjectInternalMethods::set+0x31e (/workspaces/boa/target/debug/boa_cli) + 5620391538f4 boa::builtins::value::ValueData::set_field+0x5f4 (/workspaces/boa/target/debug/boa_cli) + 562039153eda boa::builtins::value::ValueData::set_field_slice+0xaa (/workspaces/boa/target/debug/boa_cli) + 562039140793 boa::builtins::console::create_constructor+0x163 (/workspaces/boa/target/debug/boa_cli) + 5620390e95fe boa::realm::Realm::create_instrinsics+0x39e (/workspaces/boa/target/debug/boa_cli) + 5620390e9127 boa::realm::Realm::create+0x167 (/workspaces/boa/target/debug/boa_cli) + 562038f4dd49 boa_cli::main+0x59 (/workspaces/boa/target/debug/boa_cli) + ffffffffffffffff [unknown] ([unknown]) diff --git a/tests/data/collapse-perf/single-line-stacks.txt b/tests/data/collapse-perf/single-line-stacks.txt new file mode 100644 index 00000000..1df4c05c --- /dev/null +++ b/tests/data/collapse-perf/single-line-stacks.txt @@ -0,0 +1,2 @@ + false 39654 19115.489713: 1 cycles:u: ffffffff9b201293 [unknown] ([unknown]) + false 39654 19115.489719: 1 cycles: 7fa68b1f2d84 _dl_start+0x4 (/usr/lib/ld-2.31.so) diff --git a/tests/data/flamegraph/colors/java.svg b/tests/data/flamegraph/colors/java.svg index f19b0d9c..699b8e76 100644 --- a/tests/data/flamegraph/colors/java.svg +++ b/tests/data/flamegraph/colors/java.svg @@ -36,1374 +36,1419 @@ var truncate_text_right = false;]]> - call_function_single_interrupt (4 samples, 8.89%) - - call_function.. + [[vdso]] (1 samples, 2.17%) + + [.. - smp_call_function_single_interrupt (4 samples, 8.89%) - - smp_call_func.. + __epoll_wait_nocancel (1 samples, 2.17%) + + _.. - generic_smp_call_function_single_interrupt (4 samples, 8.89%) - - generic_smp_c.. + system_call_fastpath (1 samples, 2.17%) + + s.. - remote_function (4 samples, 8.89%) - - remote_functi.. + sys_epoll_wait (1 samples, 2.17%) + + s.. - __perf_event_enable (4 samples, 8.89%) - - __perf_event_.. + ep_poll (1 samples, 2.17%) + + e.. - group_sched_in (4 samples, 8.89%) - - group_sched_in + schedule_hrtimeout_range (1 samples, 2.17%) + + s.. - x86_pmu_commit_txn (4 samples, 8.89%) - - x86_pmu_commi.. + schedule_hrtimeout_range_clock (1 samples, 2.17%) + + s.. - perf_pmu_enable (4 samples, 8.89%) - - perf_pmu_enab.. + schedule (1 samples, 2.17%) + + s.. - x86_pmu_enable (4 samples, 8.89%) - - x86_pmu_enable + __schedule (1 samples, 2.17%) + + _.. - intel_pmu_enable_all (4 samples, 8.89%) - - intel_pmu_ena.. + call_function_single_interrupt (4 samples, 8.70%) + + call_functio.. - native_write_msr_safe (4 samples, 8.89%) - - native_write_.. + smp_call_function_single_interrupt (4 samples, 8.70%) + + smp_call_fun.. - __tcp_push_pending_frames (1 samples, 2.22%) - - _.. + generic_smp_call_function_single_interrupt (4 samples, 8.70%) + + generic_smp_.. - tcp_write_xmit (1 samples, 2.22%) - - t.. + remote_function (4 samples, 8.70%) + + remote_funct.. - tcp_transmit_skb (1 samples, 2.22%) - - t.. + __perf_event_enable (4 samples, 8.70%) + + __perf_event.. - ip_queue_xmit (1 samples, 2.22%) - - i.. + group_sched_in (4 samples, 8.70%) + + group_sched_.. - ip_local_out (1 samples, 2.22%) - - i.. + x86_pmu_commit_txn (4 samples, 8.70%) + + x86_pmu_comm.. - ip_output (1 samples, 2.22%) - - i.. + perf_pmu_enable (4 samples, 8.70%) + + perf_pmu_ena.. - ip_finish_output (1 samples, 2.22%) - - i.. + x86_pmu_enable (4 samples, 8.70%) + + x86_pmu_enab.. - local_bh_enable (1 samples, 2.22%) - - l.. + intel_pmu_enable_all (4 samples, 8.70%) + + intel_pmu_en.. - do_softirq (1 samples, 2.22%) - - d.. + native_write_msr_safe (4 samples, 8.70%) + + native_write.. - do_softirq_own_stack (1 samples, 2.22%) - - d.. + __tcp_push_pending_frames (1 samples, 2.17%) + + _.. - __do_softirq (1 samples, 2.22%) - - _.. + tcp_write_xmit (1 samples, 2.17%) + + t.. - net_rx_action (1 samples, 2.22%) - - n.. + tcp_transmit_skb (1 samples, 2.17%) + + t.. - process_backlog (1 samples, 2.22%) - - p.. + ip_queue_xmit (1 samples, 2.17%) + + i.. - __netif_receive_skb (1 samples, 2.22%) - - _.. + ip_local_out (1 samples, 2.17%) + + i.. - __netif_receive_skb_core (1 samples, 2.22%) - - _.. + ip_output (1 samples, 2.17%) + + i.. - ip_rcv (1 samples, 2.22%) - - i.. + ip_finish_output (1 samples, 2.17%) + + i.. - ip_rcv_finish (1 samples, 2.22%) - - i.. + local_bh_enable (1 samples, 2.17%) + + l.. - ip_local_deliver (1 samples, 2.22%) - - i.. + do_softirq (1 samples, 2.17%) + + d.. - ip_local_deliver_finish (1 samples, 2.22%) - - i.. + do_softirq_own_stack (1 samples, 2.17%) + + d.. - tcp_v4_rcv (1 samples, 2.22%) - - t.. + __do_softirq (1 samples, 2.17%) + + _.. - tcp_v4_do_rcv (1 samples, 2.22%) - - t.. + net_rx_action (1 samples, 2.17%) + + n.. - tcp_rcv_established (1 samples, 2.22%) - - t.. + process_backlog (1 samples, 2.17%) + + p.. - tcp_ack (1 samples, 2.22%) - - t.. + __netif_receive_skb (1 samples, 2.17%) + + _.. - tcp_clean_rtx_queue (1 samples, 2.22%) - - t.. + __netif_receive_skb_core (1 samples, 2.17%) + + _.. - __kfree_skb (1 samples, 2.22%) - - _.. + ip_rcv (1 samples, 2.17%) + + i.. - sk_stream_alloc_skb (1 samples, 2.22%) - - s.. + ip_rcv_finish (1 samples, 2.17%) + + i.. - __alloc_skb (1 samples, 2.22%) - - _.. + ip_local_deliver (1 samples, 2.17%) + + i.. - __kmalloc_reserve.isra.26 (1 samples, 2.22%) - - _.. + ip_local_deliver_finish (1 samples, 2.17%) + + i.. - ab (7 samples, 15.56%) - + tcp_v4_rcv (1 samples, 2.17%) + + t.. + + + tcp_v4_do_rcv (1 samples, 2.17%) + + t.. + + + tcp_rcv_established (1 samples, 2.17%) + + t.. + + + tcp_ack (1 samples, 2.17%) + + t.. + + + tcp_clean_rtx_queue (1 samples, 2.17%) + + t.. + + + __kfree_skb (1 samples, 2.17%) + + _.. + + + sk_stream_alloc_skb (1 samples, 2.17%) + + s.. + + + __alloc_skb (1 samples, 2.17%) + + _.. + + + __kmalloc_reserve.isra.26 (1 samples, 2.17%) + + _.. + + + ab (8 samples, 17.39%) + ab - [unknown] (7 samples, 15.56%) - + [unknown] (8 samples, 17.39%) + [unknown] - __write_nocancel (7 samples, 15.56%) - - __write_nocancel + __write_nocancel (7 samples, 15.22%) + + __write_nocancel - system_call_fastpath (7 samples, 15.56%) - - system_call_fastpath + system_call_fastpath (7 samples, 15.22%) + + system_call_fastpath - sys_write (7 samples, 15.56%) - - sys_write + sys_write (7 samples, 15.22%) + + sys_write - vfs_write (7 samples, 15.56%) - - vfs_write + vfs_write (7 samples, 15.22%) + + vfs_write - do_sync_write (7 samples, 15.56%) - - do_sync_write + do_sync_write (7 samples, 15.22%) + + do_sync_write - sock_aio_write (7 samples, 15.56%) - - sock_aio_write + sock_aio_write (7 samples, 15.22%) + + sock_aio_write - inet_sendmsg (7 samples, 15.56%) - - inet_sendmsg + inet_sendmsg (7 samples, 15.22%) + + inet_sendmsg - tcp_sendmsg (3 samples, 6.67%) - - tcp_sendm.. + tcp_sendmsg (3 samples, 6.52%) + + tcp_sendm.. - tcp_send_mss (1 samples, 2.22%) - - t.. + tcp_send_mss (1 samples, 2.17%) + + t.. - tcp_current_mss (1 samples, 2.22%) - - t.. + tcp_current_mss (1 samples, 2.17%) + + t.. - tcp_v4_md5_lookup (1 samples, 2.22%) - - t.. + tcp_v4_md5_lookup (1 samples, 2.17%) + + t.. - io/netty/buffer/AbstractByteBuf:.writeBytes (2 samples, 4.44%) - - io/ne.. + io/netty/buffer/AbstractByteBuf:.writeBytes (2 samples, 4.35%) + + io/ne.. - sun/nio/ch/SocketChannelImpl:.read (2 samples, 4.44%) - - sun/n.. + sun/nio/ch/SocketChannelImpl:.read (2 samples, 4.35%) + + sun/n.. - java/lang/Thread:.blockedOn (1 samples, 2.22%) - - j.. + java/lang/Thread:.blockedOn (1 samples, 2.17%) + + j.. - pthread_self (1 samples, 2.22%) - - p.. + pthread_self (1 samples, 2.17%) + + p.. - ip_queue_xmit (1 samples, 2.22%) - - i.. + ip_queue_xmit (1 samples, 2.17%) + + i.. - ip_local_out (1 samples, 2.22%) - - i.. + ip_local_out (1 samples, 2.17%) + + i.. - ip_output (1 samples, 2.22%) - - i.. + ip_output (1 samples, 2.17%) + + i.. - ip_finish_output (1 samples, 2.22%) - - i.. + ip_finish_output (1 samples, 2.17%) + + i.. - local_bh_enable (1 samples, 2.22%) - - l.. + local_bh_enable (1 samples, 2.17%) + + l.. - do_softirq (1 samples, 2.22%) - - d.. + do_softirq (1 samples, 2.17%) + + d.. - do_softirq_own_stack (1 samples, 2.22%) - - d.. + do_softirq_own_stack (1 samples, 2.17%) + + d.. - __do_softirq (1 samples, 2.22%) - - _.. + __do_softirq (1 samples, 2.17%) + + _.. - net_rx_action (1 samples, 2.22%) - - n.. + net_rx_action (1 samples, 2.17%) + + n.. - process_backlog (1 samples, 2.22%) - - p.. + process_backlog (1 samples, 2.17%) + + p.. - __netif_receive_skb (1 samples, 2.22%) - - _.. + __netif_receive_skb (1 samples, 2.17%) + + _.. - __netif_receive_skb_core (1 samples, 2.22%) - - _.. + __netif_receive_skb_core (1 samples, 2.17%) + + _.. - ip_rcv (1 samples, 2.22%) - - i.. + ip_rcv (1 samples, 2.17%) + + i.. - ip_rcv_finish (1 samples, 2.22%) - - i.. + ip_rcv_finish (1 samples, 2.17%) + + i.. - ip_local_deliver (1 samples, 2.22%) - - i.. + ip_local_deliver (1 samples, 2.17%) + + i.. - ip_local_deliver_finish (1 samples, 2.22%) - - i.. + ip_local_deliver_finish (1 samples, 2.17%) + + i.. - tcp_v4_rcv (1 samples, 2.22%) - - t.. + tcp_v4_rcv (1 samples, 2.17%) + + t.. - tcp_v4_do_rcv (1 samples, 2.22%) - - t.. + tcp_v4_do_rcv (1 samples, 2.17%) + + t.. - tcp_rcv_established (1 samples, 2.22%) - - t.. + tcp_rcv_established (1 samples, 2.17%) + + t.. - tcp_data_queue (1 samples, 2.22%) - - t.. + tcp_data_queue (1 samples, 2.17%) + + t.. - sock_def_readable (1 samples, 2.22%) - - s.. + sock_def_readable (1 samples, 2.17%) + + s.. - __wake_up_sync_key (1 samples, 2.22%) - - _.. + __wake_up_sync_key (1 samples, 2.17%) + + _.. - __wake_up_common (1 samples, 2.22%) - - _.. + __wake_up_common (1 samples, 2.17%) + + _.. - ep_poll_callback (1 samples, 2.22%) - - e.. + ep_poll_callback (1 samples, 2.17%) + + e.. - __wake_up_locked (1 samples, 2.22%) - - _.. + __wake_up_locked (1 samples, 2.17%) + + _.. - __wake_up_common (1 samples, 2.22%) - - _.. + __wake_up_common (1 samples, 2.17%) + + _.. - default_wake_function (1 samples, 2.22%) - - d.. + default_wake_function (1 samples, 2.17%) + + d.. - try_to_wake_up (1 samples, 2.22%) - - t.. + try_to_wake_up (1 samples, 2.17%) + + t.. - _raw_spin_unlock_irqrestore (1 samples, 2.22%) - - _.. + _raw_spin_unlock_irqrestore (1 samples, 2.17%) + + _.. - io/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete (3 samples, 6.67%) - - io/netty/.. + io/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete (3 samples, 6.52%) + + io/netty/.. - io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (3 samples, 6.67%) - - io/netty/.. + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (3 samples, 6.52%) + + io/netty/.. - io/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete (3 samples, 6.67%) - - io/netty/.. + io/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete (3 samples, 6.52%) + + io/netty/.. - org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (3 samples, 6.67%) - - org/vertx.. + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (3 samples, 6.52%) + + org/vertx.. - io/netty/channel/DefaultChannelHandlerContext:.flush (3 samples, 6.67%) - - io/netty/.. + io/netty/channel/DefaultChannelHandlerContext:.flush (3 samples, 6.52%) + + io/netty/.. - io/netty/channel/ChannelDuplexHandler:.flush (3 samples, 6.67%) - - io/netty/.. + io/netty/channel/ChannelDuplexHandler:.flush (3 samples, 6.52%) + + io/netty/.. - io/netty/channel/DefaultChannelHandlerContext:.flush (3 samples, 6.67%) - - io/netty/.. + io/netty/channel/DefaultChannelHandlerContext:.flush (3 samples, 6.52%) + + io/netty/.. - io/netty/channel/ChannelOutboundHandlerAdapter:.flush (3 samples, 6.67%) - - io/netty/.. + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (3 samples, 6.52%) + + io/netty/.. - io/netty/channel/DefaultChannelHandlerContext:.flush (3 samples, 6.67%) - - io/netty/.. + io/netty/channel/DefaultChannelHandlerContext:.flush (3 samples, 6.52%) + + io/netty/.. - io/netty/channel/DefaultChannelPipeline$HeadHandler:.flush (3 samples, 6.67%) - - io/netty/.. + io/netty/channel/DefaultChannelPipeline$HeadHandler:.flush (3 samples, 6.52%) + + io/netty/.. - io/netty/channel/nio/AbstractNioByteChannel:.doWrite (3 samples, 6.67%) - - io/netty/.. + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (3 samples, 6.52%) + + io/netty/.. - io/netty/buffer/PooledUnsafeDirectByteBuf:.getBytes (3 samples, 6.67%) - - io/netty/.. + io/netty/buffer/PooledUnsafeDirectByteBuf:.getBytes (3 samples, 6.52%) + + io/netty/.. - sun/nio/ch/SocketChannelImpl:.write (3 samples, 6.67%) - - sun/nio/c.. + sun/nio/ch/SocketChannelImpl:.write (3 samples, 6.52%) + + sun/nio/c.. - sun/nio/ch/FileDispatcherImpl:.write0 (2 samples, 4.44%) - - sun/n.. + sun/nio/ch/FileDispatcherImpl:.write0 (2 samples, 4.35%) + + sun/n.. - [libpthread-2.19.so] (2 samples, 4.44%) - - [libp.. + [libpthread-2.19.so] (2 samples, 4.35%) + + [libp.. - system_call_fastpath (2 samples, 4.44%) - - syste.. + system_call_fastpath (2 samples, 4.35%) + + syste.. - sys_write (2 samples, 4.44%) - - sys_w.. + sys_write (2 samples, 4.35%) + + sys_w.. - vfs_write (2 samples, 4.44%) - - vfs_w.. + vfs_write (2 samples, 4.35%) + + vfs_w.. - do_sync_write (2 samples, 4.44%) - - do_sy.. + do_sync_write (2 samples, 4.35%) + + do_sy.. - sock_aio_write (2 samples, 4.44%) - - sock_.. + sock_aio_write (2 samples, 4.35%) + + sock_.. - inet_sendmsg (2 samples, 4.44%) - - inet_.. + inet_sendmsg (2 samples, 4.35%) + + inet_.. - tcp_sendmsg (2 samples, 4.44%) - - tcp_s.. + tcp_sendmsg (2 samples, 4.35%) + + tcp_s.. - __tcp_push_pending_frames (2 samples, 4.44%) - - __tcp.. + __tcp_push_pending_frames (2 samples, 4.35%) + + __tcp.. - tcp_write_xmit (2 samples, 4.44%) - - tcp_w.. + tcp_write_xmit (2 samples, 4.35%) + + tcp_w.. - tcp_transmit_skb (2 samples, 4.44%) - - tcp_t.. + tcp_transmit_skb (2 samples, 4.35%) + + tcp_t.. - tcp_v4_send_check (1 samples, 2.22%) - - t.. + tcp_v4_send_check (1 samples, 2.17%) + + t.. - __tcp_v4_send_check (1 samples, 2.22%) - - _.. + __tcp_v4_send_check (1 samples, 2.17%) + + _.. - org/mozilla/javascript/WrapFactory:.wrap (4 samples, 8.89%) - - org/mozilla/j.. + org/mozilla/javascript/WrapFactory:.wrap (4 samples, 8.70%) + + org/mozilla/.. - call_function_single_interrupt (4 samples, 8.89%) - - call_function.. + call_function_single_interrupt (4 samples, 8.70%) + + call_functio.. - smp_call_function_single_interrupt (4 samples, 8.89%) - - smp_call_func.. + smp_call_function_single_interrupt (4 samples, 8.70%) + + smp_call_fun.. - generic_smp_call_function_single_interrupt (4 samples, 8.89%) - - generic_smp_c.. + generic_smp_call_function_single_interrupt (4 samples, 8.70%) + + generic_smp_.. - remote_function (4 samples, 8.89%) - - remote_functi.. + remote_function (4 samples, 8.70%) + + remote_funct.. - __perf_event_enable (4 samples, 8.89%) - - __perf_event_.. + __perf_event_enable (4 samples, 8.70%) + + __perf_event.. - group_sched_in (4 samples, 8.89%) - - group_sched_in + group_sched_in (4 samples, 8.70%) + + group_sched_.. - x86_pmu_commit_txn (4 samples, 8.89%) - - x86_pmu_commi.. + x86_pmu_commit_txn (4 samples, 8.70%) + + x86_pmu_comm.. - perf_pmu_enable (4 samples, 8.89%) - - perf_pmu_enab.. + perf_pmu_enable (4 samples, 8.70%) + + perf_pmu_ena.. - x86_pmu_enable (4 samples, 8.89%) - - x86_pmu_enable + x86_pmu_enable (4 samples, 8.70%) + + x86_pmu_enab.. - intel_pmu_enable_all (4 samples, 8.89%) - - intel_pmu_ena.. + intel_pmu_enable_all (4 samples, 8.70%) + + intel_pmu_en.. - native_write_msr_safe (4 samples, 8.89%) - - native_write_.. + native_write_msr_safe (4 samples, 8.70%) + + native_write.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call (1 samples, 2.17%) + + o.. - org/mozilla/javascript/BaseFunction:.construct (1 samples, 2.22%) - - o.. + org/mozilla/javascript/BaseFunction:.construct (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:._c_anonymous_3 (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:._c_anonymous_3 (1 samples, 2.17%) + + o.. - org/mozilla/javascript/BaseFunction:.construct (1 samples, 2.22%) - - o.. + org/mozilla/javascript/BaseFunction:.construct (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:._c_anonymous_21 (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:._c_anonymous_21 (1 samples, 2.17%) + + o.. - org/mozilla/javascript/optimizer/OptRuntime:.call2 (1 samples, 2.22%) - - o.. + org/mozilla/javascript/optimizer/OptRuntime:.call2 (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_31:.call (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_31:.call (1 samples, 2.17%) + + o.. - org/mozilla/javascript/ScriptRuntime:.setObjectProp (1 samples, 2.22%) - - o.. + org/mozilla/javascript/ScriptRuntime:.setObjectProp (1 samples, 2.17%) + + o.. - org/mozilla/javascript/IdScriptableObject:.has (1 samples, 2.22%) - - o.. + org/mozilla/javascript/IdScriptableObject:.has (1 samples, 2.17%) + + o.. - org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis (1 samples, 2.22%) - - o.. + org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis (1 samples, 2.17%) + + o.. - org/mozilla/javascript/ScriptRuntime:.nameOrFunction (1 samples, 2.22%) - - o.. + org/mozilla/javascript/ScriptRuntime:.nameOrFunction (1 samples, 2.17%) + + o.. - org/mozilla/javascript/IdScriptableObject:.get (1 samples, 2.22%) - - o.. + org/mozilla/javascript/IdScriptableObject:.get (1 samples, 2.17%) + + o.. - org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 2.22%) - - o.. + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 2.17%) + + o.. - org/mozilla/javascript/BaseFunction:.construct (3 samples, 6.67%) - - org/mozil.. + org/mozilla/javascript/BaseFunction:.construct (3 samples, 6.52%) + + org/mozil.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call (3 samples, 6.67%) - - org/mozil.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call (3 samples, 6.52%) + + org/mozil.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:._c_anonymous_3 (3 samples, 6.67%) - - org/mozil.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:._c_anonymous_3 (3 samples, 6.52%) + + org/mozil.. - org/mozilla/javascript/ScriptRuntime:.setObjectProp (1 samples, 2.22%) - - o.. + org/mozilla/javascript/ScriptRuntime:.setObjectProp (1 samples, 2.17%) + + o.. - org/mozilla/javascript/IdScriptableObject:.put (1 samples, 2.22%) - - o.. + org/mozilla/javascript/IdScriptableObject:.put (1 samples, 2.17%) + + o.. - org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 2.22%) - - o.. + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 2.17%) + + o.. - org/mozilla/javascript/ScriptableObject:.createSlot (1 samples, 2.22%) - - o.. + org/mozilla/javascript/ScriptableObject:.createSlot (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call (4 samples, 8.89%) - - org/mozilla/j.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call (4 samples, 8.70%) + + org/mozilla/.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call (4 samples, 8.89%) - - org/mozilla/j.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call (4 samples, 8.70%) + + org/mozilla/.. - org/mozilla/javascript/gen/file__home_bgregg_bench_Server_js_js_4:.call (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_bench_Server_js_js_4:.call (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_bench_Server_js_js_4:._c_anonymous_1 (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_bench_Server_js_js_4:._c_anonymous_1 (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call (1 samples, 2.17%) + + o.. - org/mozilla/javascript/NativeJavaMethod:.call (1 samples, 2.22%) - - o.. + org/mozilla/javascript/NativeJavaMethod:.call (1 samples, 2.17%) + + o.. - org/mozilla/javascript/MemberBox:.invoke (1 samples, 2.22%) - - o.. + org/mozilla/javascript/MemberBox:.invoke (1 samples, 2.17%) + + o.. - java/lang/reflect/Method:.invoke (1 samples, 2.22%) - - j.. + java/lang/reflect/Method:.invoke (1 samples, 2.17%) + + j.. - org/mozilla/javascript/BaseFunction:.construct (1 samples, 2.22%) - - o.. + org/mozilla/javascript/BaseFunction:.construct (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:._c_anonymous_21 (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:._c_anonymous_21 (1 samples, 2.17%) + + o.. - org/mozilla/javascript/optimizer/OptRuntime:.call2 (1 samples, 2.22%) - - o.. + org/mozilla/javascript/optimizer/OptRuntime:.call2 (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_49:.call (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_49:.call (1 samples, 2.17%) + + o.. - org/mozilla/javascript/optimizer/OptRuntime:.call2 (1 samples, 2.22%) - - o.. + org/mozilla/javascript/optimizer/OptRuntime:.call2 (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_49:.call (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_49:.call (1 samples, 2.17%) + + o.. - org/mozilla/javascript/ScriptRuntime:.setObjectProp (1 samples, 2.22%) - - o.. + org/mozilla/javascript/ScriptRuntime:.setObjectProp (1 samples, 2.17%) + + o.. - org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 2.22%) - - o.. + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 2.17%) + + o.. - org/mozilla/javascript/IdScriptableObject:.has (1 samples, 2.22%) - - o.. + org/mozilla/javascript/IdScriptableObject:.has (1 samples, 2.17%) + + o.. - org/mozilla/javascript/BaseFunction:.construct (3 samples, 6.67%) - - org/mozil.. + org/mozilla/javascript/BaseFunction:.construct (3 samples, 6.52%) + + org/mozil.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call (3 samples, 6.67%) - - org/mozil.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call (3 samples, 6.52%) + + org/mozil.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:._c_anonymous_3 (3 samples, 6.67%) - - org/mozil.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:._c_anonymous_3 (3 samples, 6.52%) + + org/mozil.. - org/mozilla/javascript/ScriptRuntime:.setObjectProp (2 samples, 4.44%) - - org/m.. + org/mozilla/javascript/ScriptRuntime:.setObjectProp (2 samples, 4.35%) + + org/m.. - org/mozilla/javascript/IdScriptableObject:.put (1 samples, 2.22%) - - o.. + org/mozilla/javascript/IdScriptableObject:.put (1 samples, 2.17%) + + o.. - org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 2.22%) - - o.. + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 2.17%) + + o.. - org/mozilla/javascript/ScriptableObject:.createSlot (1 samples, 2.22%) - - o.. + org/mozilla/javascript/ScriptableObject:.createSlot (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call (4 samples, 8.89%) - - org/mozilla/j.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call (4 samples, 8.70%) + + org/mozilla/.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call (4 samples, 8.89%) - - org/mozilla/j.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call (4 samples, 8.70%) + + org/mozilla/.. - org/mozilla/javascript/gen/file__home_bgregg_bench_Server_js_js_2:.call (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_bench_Server_js_js_2:.call (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call (1 samples, 2.17%) + + o.. - org/mozilla/javascript/NativeJavaMethod:.call (1 samples, 2.22%) - - o.. + org/mozilla/javascript/NativeJavaMethod:.call (1 samples, 2.17%) + + o.. - org/mozilla/javascript/MemberBox:.invoke (1 samples, 2.22%) - - o.. + org/mozilla/javascript/MemberBox:.invoke (1 samples, 2.17%) + + o.. - java/lang/reflect/Method:.invoke (1 samples, 2.22%) - - j.. + java/lang/reflect/Method:.invoke (1 samples, 2.17%) + + j.. - io/netty/handler/codec/http/DefaultHttpHeaders:.add0 (1 samples, 2.22%) - - i.. + io/netty/handler/codec/http/DefaultHttpHeaders:.add0 (1 samples, 2.17%) + + i.. - org/mozilla/javascript/BaseFunction:.construct (1 samples, 2.22%) - - o.. + org/mozilla/javascript/BaseFunction:.construct (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_21 (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_21 (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.getParamAndVarCount (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.getParamAndVarCount (1 samples, 2.17%) + + o.. - org/mozilla/javascript/ScriptRuntime:.setObjectProp (1 samples, 2.22%) - - o.. + org/mozilla/javascript/ScriptRuntime:.setObjectProp (1 samples, 2.17%) + + o.. - org/mozilla/javascript/IdScriptableObject:.has (1 samples, 2.22%) - - o.. + org/mozilla/javascript/IdScriptableObject:.has (1 samples, 2.17%) + + o.. - org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 2.22%) - - o.. + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.<init> (4 samples, 8.89%) - - org/mozilla/j.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.<init> (4 samples, 8.70%) + + org/mozilla/.. - org/mozilla/javascript/NativeFunction:.initScriptFunction (4 samples, 8.89%) - - org/mozilla/j.. + org/mozilla/javascript/NativeFunction:.initScriptFunction (4 samples, 8.70%) + + org/mozilla/.. - org/mozilla/javascript/TopLevel:.getBuiltinPrototype (4 samples, 8.89%) - - org/mozilla/j.. + org/mozilla/javascript/TopLevel:.getBuiltinPrototype (4 samples, 8.70%) + + org/mozilla/.. - call_function_single_interrupt (4 samples, 8.89%) - - call_function.. + call_function_single_interrupt (4 samples, 8.70%) + + call_functio.. - smp_call_function_single_interrupt (4 samples, 8.89%) - - smp_call_func.. + smp_call_function_single_interrupt (4 samples, 8.70%) + + smp_call_fun.. - generic_smp_call_function_single_interrupt (4 samples, 8.89%) - - generic_smp_c.. + generic_smp_call_function_single_interrupt (4 samples, 8.70%) + + generic_smp_.. - remote_function (4 samples, 8.89%) - - remote_functi.. + remote_function (4 samples, 8.70%) + + remote_funct.. - __perf_event_enable (4 samples, 8.89%) - - __perf_event_.. + __perf_event_enable (4 samples, 8.70%) + + __perf_event.. - group_sched_in (4 samples, 8.89%) - - group_sched_in + group_sched_in (4 samples, 8.70%) + + group_sched_.. - x86_pmu_commit_txn (4 samples, 8.89%) - - x86_pmu_commi.. + x86_pmu_commit_txn (4 samples, 8.70%) + + x86_pmu_comm.. - perf_pmu_enable (4 samples, 8.89%) - - perf_pmu_enab.. + perf_pmu_enable (4 samples, 8.70%) + + perf_pmu_ena.. - x86_pmu_enable (4 samples, 8.89%) - - x86_pmu_enable + x86_pmu_enable (4 samples, 8.70%) + + x86_pmu_enab.. - intel_pmu_enable_all (4 samples, 8.89%) - - intel_pmu_ena.. + intel_pmu_enable_all (4 samples, 8.70%) + + intel_pmu_en.. - native_write_msr_safe (4 samples, 8.89%) - - native_write_.. + native_write_msr_safe (4 samples, 8.70%) + + native_write.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.getParamCount (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.getParamCount (1 samples, 2.17%) + + o.. - io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead (24 samples, 53.33%) - - io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead + io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead (24 samples, 52.17%) + + io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead - org/vertx/java/core/net/impl/VertxHandler:.channelRead (23 samples, 51.11%) - - org/vertx/java/core/net/impl/VertxHandler:.channelRead + org/vertx/java/core/net/impl/VertxHandler:.channelRead (23 samples, 50.00%) + + org/vertx/java/core/net/impl/VertxHandler:.channelRead - org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead (23 samples, 51.11%) - - org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead + org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead (23 samples, 50.00%) + + org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead - org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (23 samples, 51.11%) - - org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (23 samples, 50.00%) + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived - org/vertx/java/core/http/impl/ServerConnection:.handleMessage (23 samples, 51.11%) - - org/vertx/java/core/http/impl/ServerConnection:.handleMessage + org/vertx/java/core/http/impl/ServerConnection:.handleMessage (23 samples, 50.00%) + + org/vertx/java/core/http/impl/ServerConnection:.handleMessage - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call (9 samples, 20.00%) - - org/mozilla/javascript/gen/file.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call (9 samples, 19.57%) + + org/mozilla/javascript/gen/file.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call (9 samples, 20.00%) - - org/mozilla/javascript/gen/file.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call (9 samples, 19.57%) + + org/mozilla/javascript/gen/file.. - org/mozilla/javascript/BaseFunction:.construct (8 samples, 17.78%) - - org/mozilla/javascript/BaseF.. + org/mozilla/javascript/BaseFunction:.construct (8 samples, 17.39%) + + org/mozilla/javascript/Base.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call (8 samples, 17.78%) - - org/mozilla/javascript/gen/f.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call (8 samples, 17.39%) + + org/mozilla/javascript/gen/.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_3 (8 samples, 17.78%) - - org/mozilla/javascript/gen/f.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_3 (8 samples, 17.39%) + + org/mozilla/javascript/gen/.. - org/mozilla/javascript/optimizer/OptRuntime:.call2 (1 samples, 2.22%) - - o.. + org/mozilla/javascript/optimizer/OptRuntime:.call2 (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_47:.call (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_47:.call (1 samples, 2.17%) + + o.. - org/mozilla/javascript/ScriptRuntime:.setObjectProp (1 samples, 2.22%) - - o.. + org/mozilla/javascript/ScriptRuntime:.setObjectProp (1 samples, 2.17%) + + o.. - org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 2.22%) - - o.. + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 2.17%) + + o.. - io/netty/handler/codec/http/HttpMethod:.valueOf (1 samples, 2.22%) - - i.. + io/netty/handler/codec/http/HttpMethod:.valueOf (1 samples, 2.17%) + + i.. - io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (31 samples, 68.89%) - - io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (31 samples, 67.39%) + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized - io/netty/channel/nio/NioEventLoop:.processSelectedKey (31 samples, 68.89%) - - io/netty/channel/nio/NioEventLoop:.processSelectedKey + io/netty/channel/nio/NioEventLoop:.processSelectedKey (31 samples, 67.39%) + + io/netty/channel/nio/NioEventLoop:.processSelectedKey - io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (31 samples, 68.89%) - - io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (31 samples, 67.39%) + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read - io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead (26 samples, 57.78%) - - io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead + io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead (26 samples, 56.52%) + + io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead - io/netty/handler/codec/ByteToMessageDecoder:.channelRead (26 samples, 57.78%) - - io/netty/handler/codec/ByteToMessageDecoder:.channelRead + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (26 samples, 56.52%) + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead - io/netty/handler/codec/http/HttpObjectDecoder:.decode (2 samples, 4.44%) - - io/ne.. + io/netty/handler/codec/http/HttpObjectDecoder:.decode (2 samples, 4.35%) + + io/ne.. - io/netty/handler/codec/http/HttpObjectDecoder:.findWhitespace (1 samples, 2.22%) - - i.. + io/netty/handler/codec/http/HttpObjectDecoder:.findWhitespace (1 samples, 2.17%) + + i.. - java (32 samples, 71.11%) - - java + java (32 samples, 69.57%) + + java - start_thread (32 samples, 71.11%) - - start_thread + start_thread (32 samples, 69.57%) + + start_thread - java_start (32 samples, 71.11%) - - java_start + java_start (32 samples, 69.57%) + + java_start - JavaThread::run (32 samples, 71.11%) - - JavaThread::run + JavaThread::run (32 samples, 69.57%) + + JavaThread::run - JavaThread::thread_main_inner (32 samples, 71.11%) - - JavaThread::thread_main_inner + JavaThread::thread_main_inner (32 samples, 69.57%) + + JavaThread::thread_main_inner - thread_entry (32 samples, 71.11%) - - thread_entry + thread_entry (32 samples, 69.57%) + + thread_entry - JavaCalls::call_virtual (32 samples, 71.11%) - - JavaCalls::call_virtual + JavaCalls::call_virtual (32 samples, 69.57%) + + JavaCalls::call_virtual - JavaCalls::call_virtual (32 samples, 71.11%) - - JavaCalls::call_virtual + JavaCalls::call_virtual (32 samples, 69.57%) + + JavaCalls::call_virtual - JavaCalls::call_helper (32 samples, 71.11%) - - JavaCalls::call_helper + JavaCalls::call_helper (32 samples, 69.57%) + + JavaCalls::call_helper - call_stub (32 samples, 71.11%) - - call_stub + call_stub (32 samples, 69.57%) + + call_stub - Interpreter (32 samples, 71.11%) - - Interpreter + Interpreter (32 samples, 69.57%) + + Interpreter - Interpreter (32 samples, 71.11%) - - Interpreter + Interpreter (32 samples, 69.57%) + + Interpreter - io/netty/channel/nio/NioEventLoop:.run (32 samples, 71.11%) - - io/netty/channel/nio/NioEventLoop:.run + io/netty/channel/nio/NioEventLoop:.run (32 samples, 69.57%) + + io/netty/channel/nio/NioEventLoop:.run - io/netty/channel/nio/NioEventLoop:.select (1 samples, 2.22%) - - i.. + io/netty/channel/nio/NioEventLoop:.select (1 samples, 2.17%) + + i.. - sun/nio/ch/SelectorImpl:.lockAndDoSelect (1 samples, 2.22%) - - s.. + sun/nio/ch/SelectorImpl:.lockAndDoSelect (1 samples, 2.17%) + + s.. - sun/nio/ch/EPollSelectorImpl:.doSelect (1 samples, 2.22%) - - s.. + sun/nio/ch/EPollSelectorImpl:.doSelect (1 samples, 2.17%) + + s.. - sun/nio/ch/EPollArrayWrapper:.poll (1 samples, 2.22%) - - s.. + sun/nio/ch/EPollArrayWrapper:.poll (1 samples, 2.17%) + + s.. - sun/nio/ch/EPollArrayWrapper:.epollWait (1 samples, 2.22%) - - s.. + sun/nio/ch/EPollArrayWrapper:.epollWait (1 samples, 2.17%) + + s.. - __libc_enable_asynccancel (1 samples, 2.22%) - - _.. + __libc_enable_asynccancel (1 samples, 2.17%) + + _.. - __GI___ioctl (4 samples, 8.89%) - - __GI___ioctl + __GI___ioctl (4 samples, 8.70%) + + __GI___ioctl - system_call_fastpath (4 samples, 8.89%) - - system_call_f.. + system_call_fastpath (4 samples, 8.70%) + + system_call_.. - sys_ioctl (4 samples, 8.89%) - - sys_ioctl + sys_ioctl (4 samples, 8.70%) + + sys_ioctl - do_vfs_ioctl (4 samples, 8.89%) - - do_vfs_ioctl + do_vfs_ioctl (4 samples, 8.70%) + + do_vfs_ioctl - perf_ioctl (4 samples, 8.89%) - - perf_ioctl + perf_ioctl (4 samples, 8.70%) + + perf_ioctl - perf_event_for_each_child (4 samples, 8.89%) - - perf_event_fo.. + perf_event_for_each_child (4 samples, 8.70%) + + perf_event_f.. - perf_event_enable (4 samples, 8.89%) - - perf_event_en.. + perf_event_enable (4 samples, 8.70%) + + perf_event_e.. - cpu_function_call (4 samples, 8.89%) - - cpu_function_.. + cpu_function_call (4 samples, 8.70%) + + cpu_function.. - smp_call_function_single (4 samples, 8.89%) - - smp_call_func.. + smp_call_function_single (4 samples, 8.70%) + + smp_call_fun.. - remote_function (4 samples, 8.89%) - - remote_functi.. + remote_function (4 samples, 8.70%) + + remote_funct.. - __perf_event_enable (4 samples, 8.89%) - - __perf_event_.. + __perf_event_enable (4 samples, 8.70%) + + __perf_event.. - group_sched_in (4 samples, 8.89%) - - group_sched_in + group_sched_in (4 samples, 8.70%) + + group_sched_.. - x86_pmu_commit_txn (4 samples, 8.89%) - - x86_pmu_commi.. + x86_pmu_commit_txn (4 samples, 8.70%) + + x86_pmu_comm.. - perf_pmu_enable (4 samples, 8.89%) - - perf_pmu_enab.. + perf_pmu_enable (4 samples, 8.70%) + + perf_pmu_ena.. - x86_pmu_enable (4 samples, 8.89%) - - x86_pmu_enable + x86_pmu_enable (4 samples, 8.70%) + + x86_pmu_enab.. - intel_pmu_enable_all (4 samples, 8.89%) - - intel_pmu_ena.. + intel_pmu_enable_all (4 samples, 8.70%) + + intel_pmu_en.. - native_write_msr_safe (4 samples, 8.89%) - - native_write_.. + native_write_msr_safe (4 samples, 8.70%) + + native_write.. - perf (5 samples, 11.11%) - - perf + perf (5 samples, 10.87%) + + perf - __libc_start_main (5 samples, 11.11%) - - __libc_start_main + __libc_start_main (5 samples, 10.87%) + + __libc_start_main - [perf] (5 samples, 11.11%) - - [perf] + [perf] (5 samples, 10.87%) + + [perf] - [perf] (5 samples, 11.11%) - - [perf] + [perf] (5 samples, 10.87%) + + [perf] - [perf] (5 samples, 11.11%) - - [perf] + [perf] (5 samples, 10.87%) + + [perf] - page_fault (1 samples, 2.22%) - - p.. + page_fault (1 samples, 2.17%) + + p.. - all (45 samples, 100%) + all (46 samples, 100%) - swapper (1 samples, 2.22%) - - s.. + swapper (1 samples, 2.17%) + + s.. - x86_64_start_kernel (1 samples, 2.22%) - - x.. + x86_64_start_kernel (1 samples, 2.17%) + + x.. - x86_64_start_reservations (1 samples, 2.22%) - - x.. + x86_64_start_reservations (1 samples, 2.17%) + + x.. - start_kernel (1 samples, 2.22%) - - s.. + start_kernel (1 samples, 2.17%) + + s.. - rest_init (1 samples, 2.22%) - - r.. + rest_init (1 samples, 2.17%) + + r.. - cpu_startup_entry (1 samples, 2.22%) - - c.. + cpu_startup_entry (1 samples, 2.17%) + + c.. - rcu_idle_enter (1 samples, 2.22%) - - r.. + rcu_idle_enter (1 samples, 2.17%) + + r.. \ No newline at end of file diff --git a/tests/data/flamegraph/factor/factor-2.5.svg b/tests/data/flamegraph/factor/factor-2.5.svg index 326f93d5..830ac820 100644 --- a/tests/data/flamegraph/factor/factor-2.5.svg +++ b/tests/data/flamegraph/factor/factor-2.5.svg @@ -37,1808 +37,1823 @@ var truncate_text_right = false;]]> read (3 samples, 0.42%) - + check_events (3 samples, 0.42%) - + hypercall_page (3 samples, 0.42%) - + ScavengeRootsTask::do_it (3 samples, 0.42%) - - + + ClassLoaderDataGraph::oops_do (3 samples, 0.42%) - - + + ClassLoaderData::oops_do (3 samples, 0.42%) - - + + PSScavengeKlassClosure::do_klass (3 samples, 0.42%) - - + + PSPromotionManager::drain_stacks_depth (3 samples, 0.42%) - - + + oopDesc* PSPromotionManager::copy_to_survivor_space<false> (3 samples, 0.42%) - - + + InstanceKlass::oop_push_contents (3 samples, 0.42%) - - + + ParallelTaskTerminator::offer_termination (13 samples, 1.82%) - - + + - GCTaskThread::run (35 samples, 4.91%) - - GCTask.. + GCTaskThread::run (35 samples, 4.90%) + + GCTask.. - StealTask::do_it (33 samples, 4.63%) - - Steal.. + StealTask::do_it (33 samples, 4.62%) + + Steal.. - SpinPause (18 samples, 2.53%) - - Sp.. + SpinPause (18 samples, 2.52%) + + Sp.. io/netty/buffer/AbstractByteBufAllocator:.directBuffer (3 samples, 0.42%) - - + + io/netty/buffer/AbstractReferenceCountedByteBuf:.release (3 samples, 0.42%) - - + + io/netty/buffer/PooledByteBuf:.internalNioBuffer (3 samples, 0.42%) - - + + sun/nio/ch/NativeThread:.current (3 samples, 0.42%) - - + + (8 samples, 1.12%) - - + + Java_sun_nio_ch_FileDispatcherImpl_write0 (3 samples, 0.42%) - - + + sys_write (3 samples, 0.42%) - - + + fget_light (3 samples, 0.42%) - - + + __srcu_read_lock (3 samples, 0.42%) - - + + __tcp_push_pending_frames (3 samples, 0.42%) - - + + ktime_get_real (3 samples, 0.42%) - - + + skb_clone (3 samples, 0.42%) - - + + tcp_set_skb_tso_segs (3 samples, 0.42%) - - + + dev_hard_start_xmit (3 samples, 0.42%) - - + + dev_pick_tx (3 samples, 0.42%) - - + + dev_queue_xmit_nit (3 samples, 0.42%) - - + + xen_restore_fl_direct (3 samples, 0.42%) - - + + dev_hard_start_xmit (10 samples, 1.40%) - - + + loopback_xmit (8 samples, 1.12%) - - + + netif_rx (5 samples, 0.70%) - - + + netif_rx.part.82 (5 samples, 0.70%) - - + + xen_restore_fl_direct_end (3 samples, 0.42%) - - + + dma_issue_pending_all (3 samples, 0.42%) - - + + __inet_lookup_established (8 samples, 1.12%) - - + + tcp_event_data_recv (3 samples, 0.42%) - - + + - sock_def_readable (48 samples, 6.74%) - - sock_def_.. + sock_def_readable (48 samples, 6.71%) + + sock_def_.. - __wake_up_sync_key (48 samples, 6.74%) - - __wake_up.. + __wake_up_sync_key (48 samples, 6.71%) + + __wake_up.. - check_events (48 samples, 6.74%) - - check_eve.. + check_events (48 samples, 6.71%) + + check_eve.. - hypercall_page (48 samples, 6.74%) - - hypercall.. + hypercall_page (48 samples, 6.71%) + + hypercall.. + + + __kfree_skb (3 samples, 0.42%) + + + + + skb_release_data (3 samples, 0.42%) + + + + + skb_release_data.part.45 (3 samples, 0.42%) + + bictcp_acked (3 samples, 0.42%) - - + + ktime_get_real (5 samples, 0.70%) - - + + getnstimeofday (5 samples, 0.70%) - - + + xen_clocksource_get_cycles (3 samples, 0.42%) - - + + xen_clocksource_read (3 samples, 0.42%) - - + + tcp_rtt_estimator (3 samples, 0.42%) - - + + - ip_local_deliver (85 samples, 11.93%) - - ip_local_deliver + ip_local_deliver (88 samples, 12.31%) + + ip_local_deliver - ip_local_deliver_finish (85 samples, 11.93%) - - ip_local_deliver_f.. + ip_local_deliver_finish (88 samples, 12.31%) + + ip_local_deliver_f.. - tcp_v4_rcv (83 samples, 11.65%) - - tcp_v4_rcv + tcp_v4_rcv (85 samples, 11.89%) + + tcp_v4_rcv - tcp_v4_do_rcv (73 samples, 10.25%) - - tcp_v4_do_rcv + tcp_v4_do_rcv (75 samples, 10.49%) + + tcp_v4_do_rcv - tcp_rcv_established (70 samples, 9.82%) - - tcp_rcv_establ.. + tcp_rcv_established (73 samples, 10.21%) + + tcp_rcv_establi.. - tcp_ack (23 samples, 3.23%) - - tcp.. + tcp_ack (25 samples, 3.50%) + + tcp.. - tcp_clean_rtx_queue (15 samples, 2.11%) - - t.. + tcp_clean_rtx_queue (18 samples, 2.52%) + + tc.. tcp_valid_rtt_meas (3 samples, 0.42%) - - + + tcp_rtt_estimator (3 samples, 0.42%) - - + + - __do_softirq (93 samples, 13.05%) - - __do_softirq + __do_softirq (95 samples, 13.29%) + + __do_softirq - net_rx_action (93 samples, 13.05%) - - net_rx_action + net_rx_action (95 samples, 13.29%) + + net_rx_action - process_backlog (90 samples, 12.63%) - - process_backlog + process_backlog (93 samples, 13.01%) + + process_backlog - __netif_receive_skb (90 samples, 12.63%) - - __netif_receive_skb + __netif_receive_skb (93 samples, 13.01%) + + __netif_receive_skb - ip_rcv (88 samples, 12.35%) - - ip_rcv + ip_rcv (90 samples, 12.59%) + + ip_rcv - ip_rcv_finish (88 samples, 12.35%) - - ip_rcv_finish + ip_rcv_finish (90 samples, 12.59%) + + ip_rcv_finish ip_local_deliver_finish (3 samples, 0.42%) - - + + - local_bh_enable (95 samples, 13.33%) - - local_bh_enable + local_bh_enable (98 samples, 13.71%) + + local_bh_enable - do_softirq (95 samples, 13.33%) - - do_softirq + do_softirq (98 samples, 13.71%) + + do_softirq - call_softirq (95 samples, 13.33%) - - call_softirq + call_softirq (98 samples, 13.71%) + + call_softirq rcu_bh_qs (3 samples, 0.42%) - - + + - ip_local_out (113 samples, 15.86%) - - ip_local_out + ip_local_out (115 samples, 16.08%) + + ip_local_out - ip_output (113 samples, 15.86%) - - ip_output + ip_output (115 samples, 16.08%) + + ip_output - ip_finish_output (113 samples, 15.86%) - - ip_finish_output + ip_finish_output (115 samples, 16.08%) + + ip_finish_output - dev_queue_xmit (108 samples, 15.16%) - - dev_queue_xmit + dev_queue_xmit (110 samples, 15.38%) + + dev_queue_xmit netif_skb_features (3 samples, 0.42%) - - + + - ip_queue_xmit (118 samples, 16.56%) - - ip_queue_xmit + ip_queue_xmit (120 samples, 16.78%) + + ip_queue_xmit ip_output (5 samples, 0.70%) - - + + pvclock_clocksource_read (3 samples, 0.42%) - - + + getnstimeofday (5 samples, 0.70%) - - + + xen_clocksource_get_cycles (5 samples, 0.70%) - - + + xen_clocksource_read (3 samples, 0.42%) - - + + pvclock_clocksource_read (3 samples, 0.42%) - - + + ktime_get_real (8 samples, 1.12%) - - + + xen_clocksource_get_cycles (3 samples, 0.42%) - - + + - __tcp_push_pending_frames (140 samples, 19.65%) - - __tcp_push_pending_frames + __tcp_push_pending_frames (143 samples, 20.00%) + + __tcp_push_pending_frames - tcp_write_xmit (140 samples, 19.65%) - - tcp_write_xmit + tcp_write_xmit (143 samples, 20.00%) + + tcp_write_xmit - tcp_transmit_skb (133 samples, 18.67%) - - tcp_transmit_skb + tcp_transmit_skb (135 samples, 18.88%) + + tcp_transmit_skb skb_dst_set_noref (3 samples, 0.42%) - - + + lock_sock_nested (3 samples, 0.42%) - - + + _raw_spin_lock_bh (3 samples, 0.42%) - - + + local_bh_disable (3 samples, 0.42%) - - + + __kmalloc_node_track_caller (5 samples, 0.70%) - - + + arch_local_irq_save (3 samples, 0.42%) - - + + __phys_addr (3 samples, 0.42%) - - + + get_slab (5 samples, 0.70%) - - + + - __alloc_skb (18 samples, 2.53%) - - __.. + __alloc_skb (18 samples, 2.52%) + + __.. kmem_cache_alloc_node (3 samples, 0.42%) - - + + - sk_stream_alloc_skb (20 samples, 2.81%) - - sk.. + sk_stream_alloc_skb (20 samples, 2.80%) + + sk.. ksize (3 samples, 0.42%) - - + + ipv4_mtu (3 samples, 0.42%) - - + + tcp_current_mss (5 samples, 0.70%) - - + + tcp_established_options (3 samples, 0.42%) - - + + tcp_send_mss (8 samples, 1.12%) - - + + tcp_xmit_size_goal (3 samples, 0.42%) - - + + - do_sync_write (180 samples, 25.26%) - - do_sync_write + do_sync_write (183 samples, 25.59%) + + do_sync_write - sock_aio_write (180 samples, 25.26%) - - sock_aio_write + sock_aio_write (183 samples, 25.59%) + + sock_aio_write - do_sock_write.isra.10 (180 samples, 25.26%) - - do_sock_write.isra.10 + do_sock_write.isra.10 (183 samples, 25.59%) + + do_sock_write.isra.10 - inet_sendmsg (180 samples, 25.26%) - - inet_sendmsg + inet_sendmsg (183 samples, 25.59%) + + inet_sendmsg - tcp_sendmsg (178 samples, 24.98%) - - tcp_sendmsg + tcp_sendmsg (180 samples, 25.17%) + + tcp_sendmsg tcp_xmit_size_goal (3 samples, 0.42%) - - + + fsnotify (5 samples, 0.70%) - - + + __srcu_read_lock (3 samples, 0.42%) - - + + apparmor_file_permission (3 samples, 0.42%) - - + + rw_verify_area (8 samples, 1.12%) - - + + security_file_permission (3 samples, 0.42%) - - + + apparmor_file_permission (3 samples, 0.42%) - - + + common_file_perm (3 samples, 0.42%) - - + + - sun/nio/ch/FileDispatcherImpl:.write0 (218 samples, 30.60%) - - sun/nio/ch/FileDispatcherImpl:.write0 + sun/nio/ch/FileDispatcherImpl:.write0 (220 samples, 30.77%) + + sun/nio/ch/FileDispatcherImpl:.write0 - write (205 samples, 28.77%) - - write + write (208 samples, 29.09%) + + write - system_call_fastpath (200 samples, 28.07%) - - system_call_fastpath + system_call_fastpath (203 samples, 28.39%) + + system_call_fastpath - sys_write (200 samples, 28.07%) - - sys_write + sys_write (203 samples, 28.39%) + + sys_write - vfs_write (198 samples, 27.79%) - - vfs_write + vfs_write (200 samples, 27.97%) + + vfs_write sock_aio_write (3 samples, 0.42%) - - + + - sun/nio/ch/SocketChannelImpl:.write (220 samples, 30.88%) - - sun/nio/ch/SocketChannelImpl:.write + sun/nio/ch/SocketChannelImpl:.write (223 samples, 31.19%) + + sun/nio/ch/SocketChannelImpl:.write sun/nio/ch/SocketChannelImpl:.writerCleanup (3 samples, 0.42%) - - + + - io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (228 samples, 32.00%) - - io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (230 samples, 32.17%) + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes sun/nio/ch/SocketChannelImpl:.writerCleanup (3 samples, 0.42%) - - + + - io/netty/channel/AbstractChannelHandlerContext:.flush (238 samples, 33.40%) - - io/netty/channel/AbstractChannelHandlerContext:.flush + io/netty/channel/AbstractChannelHandlerContext:.flush (240 samples, 33.57%) + + io/netty/channel/AbstractChannelHandlerContext:.flush - io/netty/channel/ChannelDuplexHandler:.flush (238 samples, 33.40%) - - io/netty/channel/ChannelDuplexHandler:.flush + io/netty/channel/ChannelDuplexHandler:.flush (240 samples, 33.57%) + + io/netty/channel/ChannelDuplexHandler:.flush - io/netty/channel/AbstractChannelHandlerContext:.flush (238 samples, 33.40%) - - io/netty/channel/AbstractChannelHandlerContext:.flush + io/netty/channel/AbstractChannelHandlerContext:.flush (240 samples, 33.57%) + + io/netty/channel/AbstractChannelHandlerContext:.flush - io/netty/channel/ChannelOutboundHandlerAdapter:.flush (238 samples, 33.40%) - - io/netty/channel/ChannelOutboundHandlerAdapter:.flush + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (240 samples, 33.57%) + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush - io/netty/channel/AbstractChannelHandlerContext:.flush (238 samples, 33.40%) - - io/netty/channel/AbstractChannelHandlerContext:.flush + io/netty/channel/AbstractChannelHandlerContext:.flush (240 samples, 33.57%) + + io/netty/channel/AbstractChannelHandlerContext:.flush - io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (238 samples, 33.40%) - - io/netty/channel/DefaultChannelPipeline$HeadContext:.f.. + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (240 samples, 33.57%) + + io/netty/channel/DefaultChannelPipeline$HeadContext:.f.. - io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (238 samples, 33.40%) - - io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (240 samples, 33.57%) + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 - io/netty/channel/nio/AbstractNioByteChannel:.doWrite (238 samples, 33.40%) - - io/netty/channel/nio/AbstractNioByteChannel:.doWrite + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (240 samples, 33.57%) + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite io/netty/util/Recycler:.recycle (3 samples, 0.42%) - - + + - io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (243 samples, 34.11%) - - io/netty/channel/AbstractChannelHandlerContext:.fireCha.. + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (245 samples, 34.27%) + + io/netty/channel/AbstractChannelHandlerContext:.fireChan.. - org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (243 samples, 34.11%) - - org/vertx/java/core/net/impl/VertxHandler:.channelReadC.. + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (245 samples, 34.27%) + + org/vertx/java/core/net/impl/VertxHandler:.channelReadCo.. io/netty/channel/ChannelDuplexHandler:.flush (5 samples, 0.70%) - - + + - io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (245 samples, 34.39%) - - io/netty/channel/AbstractChannelHandlerContext:.fireChan.. + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (248 samples, 34.69%) + + io/netty/channel/AbstractChannelHandlerContext:.fireChan.. - io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (245 samples, 34.39%) - - io/netty/handler/codec/ByteToMessageDecoder:.channelRead.. + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (248 samples, 34.69%) + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead.. org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (3 samples, 0.42%) - - + + io/netty/buffer/AbstractReferenceCountedByteBuf:.release (3 samples, 0.42%) - - + + java/util/concurrent/ConcurrentHashMap:.get (3 samples, 0.42%) - - + + org/mozilla/javascript/Context:.getWrapFactory (5 samples, 0.70%) - - + + org/mozilla/javascript/ScriptableObject:.getParentScope (3 samples, 0.42%) - - + + org/mozilla/javascript/WrapFactory:.wrapAsJavaObject (5 samples, 0.70%) - - + + java/util/HashMap:.get (3 samples, 0.42%) - - + + org/mozilla/javascript/WrapFactory:.wrap (3 samples, 0.42%) - - + + java/util/HashMap:.get (3 samples, 0.42%) - - + + org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue (3 samples, 0.42%) - - + + org/mozilla/javascript/ScriptRuntime:.getObjectProp (10 samples, 1.40%) - - + + vtable chunks (3 samples, 0.42%) - - + + org/mozilla/javascript/ScriptRuntime:.nameOrFunction (3 samples, 0.42%) - - + + org/mozilla/javascript/ScriptableObject$Slot:.getValue (3 samples, 0.42%) - - + + org/mozilla/javascript/ScriptRuntime:.name (3 samples, 0.42%) - - + + org/mozilla/javascript/IdScriptableObject:.get (3 samples, 0.42%) - - + + org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis (3 samples, 0.42%) - - + + org/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo (3 samples, 0.42%) - - + + org/mozilla/javascript/IdScriptableObject:.has (8 samples, 1.12%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (5 samples, 0.70%) - - + + org/mozilla/javascript/IdScriptableObject:.put (3 samples, 0.42%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (3 samples, 0.42%) - - + + org/mozilla/javascript/IdScriptableObject:.setAttributes (3 samples, 0.42%) - - + + org/mozilla/javascript/MemberBox:.invoke (3 samples, 0.42%) - - + + org/mozilla/javascript/NativeJavaMethod:.call (5 samples, 0.70%) - - + + org/mozilla/javascript/WrapFactory:.wrap (3 samples, 0.42%) - - + + org/mozilla/javascript/NativeJavaMethod:.findFunction (3 samples, 0.42%) - - + + org/mozilla/javascript/NativeJavaObject:.get (5 samples, 0.70%) - - + + org/mozilla/javascript/IdScriptableObject:.get (3 samples, 0.42%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (3 samples, 0.42%) - - + + org/mozilla/javascript/IdScriptableObject:.put (5 samples, 0.70%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (5 samples, 0.70%) - - + + org/mozilla/javascript/ScriptableObject:.createSlot (5 samples, 0.70%) - - + + org/mozilla/javascript/IdScriptableObject:.setAttributes (3 samples, 0.42%) - - + + org/mozilla/javascript/ScriptRuntime:.createFunctionActivation (13 samples, 1.82%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (3 samples, 0.42%) - - + + org/mozilla/javascript/ScriptRuntime:.getObjectProp (3 samples, 0.42%) - - + + org/mozilla/javascript/ScriptableObject$Slot:.getValue (3 samples, 0.42%) - - + + org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis (3 samples, 0.42%) - - + + org/mozilla/javascript/NativeJavaObject:.get (3 samples, 0.42%) - - + + java/util/HashMap:.get (3 samples, 0.42%) - - + + jint_disjoint_arraycopy (3 samples, 0.42%) - - + + org/mozilla/javascript/IdScriptableObject:.get (5 samples, 0.70%) - - + + org/mozilla/javascript/IdScriptableObject:.has (3 samples, 0.42%) - - + + org/mozilla/javascript/IdScriptableObject:.put (5 samples, 0.70%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (5 samples, 0.70%) - - + + org/mozilla/javascript/ScriptableObject:.createSlot (5 samples, 0.70%) - - + + org/mozilla/javascript/ScriptRuntime:.createFunctionActivation (13 samples, 1.82%) - - + + org/mozilla/javascript/IdScriptableObject:.setAttributes (5 samples, 0.70%) - - + + org/mozilla/javascript/ScriptRuntime:.getObjectProp (3 samples, 0.42%) - - + + org/mozilla/javascript/IdScriptableObject:.get (3 samples, 0.42%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (3 samples, 0.42%) - - + + org/mozilla/javascript/ScriptRuntime:.nameOrFunction (3 samples, 0.42%) - - + + org/mozilla/javascript/IdScriptableObject:.get (3 samples, 0.42%) - - + + org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue (3 samples, 0.42%) - - + + org/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo (3 samples, 0.42%) - - + + org/mozilla/javascript/IdScriptableObject:.put (10 samples, 1.40%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (8 samples, 1.12%) - - + + org/mozilla/javascript/ScriptableObject:.createSlot (8 samples, 1.12%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (3 samples, 0.42%) - - + + - org/mozilla/javascript/ScriptRuntime:.setObjectProp (18 samples, 2.53%) - - or.. + org/mozilla/javascript/ScriptRuntime:.setObjectProp (18 samples, 2.52%) + + or.. vtable chunks (3 samples, 0.42%) - - + + org/mozilla/javascript/NativeFunction:.initScriptFunction (3 samples, 0.42%) - - + + org/mozilla/javascript/ScriptRuntime:.createFunctionActivation (3 samples, 0.42%) - - + + org/mozilla/javascript/ScriptRuntime:.createFunctionActivation (5 samples, 0.70%) - - + + org/mozilla/javascript/IdScriptableObject:.get (3 samples, 0.42%) - - + + org/mozilla/javascript/IdScriptableObject:.has (3 samples, 0.42%) - - + + - org/mozilla/javascript/ScriptRuntime:.setObjectProp (20 samples, 2.81%) - - or.. + org/mozilla/javascript/ScriptRuntime:.setObjectProp (20 samples, 2.80%) + + or.. - org/mozilla/javascript/IdScriptableObject:.put (18 samples, 2.53%) - - or.. + org/mozilla/javascript/IdScriptableObject:.put (18 samples, 2.52%) + + or.. - org/mozilla/javascript/ScriptableObject:.getSlot (15 samples, 2.11%) - - o.. + org/mozilla/javascript/ScriptableObject:.getSlot (15 samples, 2.10%) + + o.. - org/mozilla/javascript/ScriptableObject:.createSlot (15 samples, 2.11%) - - o.. + org/mozilla/javascript/ScriptableObject:.createSlot (15 samples, 2.10%) + + o.. - org/mozilla/javascript/ScriptRuntime:.newObject (80 samples, 11.23%) - - org/mozilla/javas.. + org/mozilla/javascript/ScriptRuntime:.newObject (80 samples, 11.19%) + + org/mozilla/java.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (80 samples, 11.23%) - - org/mozilla/javas.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (80 samples, 11.19%) + + org/mozilla/java.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (80 samples, 11.23%) - - org/mozilla/javas.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (80 samples, 11.19%) + + org/mozilla/java.. - org/mozilla/javascript/optimizer/OptRuntime:.call2 (33 samples, 4.63%) - - org/m.. + org/mozilla/javascript/optimizer/OptRuntime:.call2 (33 samples, 4.62%) + + org/m.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (28 samples, 3.93%) - - org/.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (28 samples, 3.92%) + + org/.. org/mozilla/javascript/ScriptableObject:.getParentScope (3 samples, 0.42%) - - + + - org/mozilla/javascript/IdScriptableObject:.has (23 samples, 3.23%) - - org.. + org/mozilla/javascript/IdScriptableObject:.has (23 samples, 3.22%) + + org.. org/mozilla/javascript/ScriptableObject:.getSlot (13 samples, 1.82%) - - + + - org/mozilla/javascript/ScriptRuntime:.setObjectProp (43 samples, 6.04%) - - org/mozi.. + org/mozilla/javascript/ScriptRuntime:.setObjectProp (43 samples, 6.01%) + + org/mozi.. - org/mozilla/javascript/IdScriptableObject:.put (20 samples, 2.81%) - - or.. + org/mozilla/javascript/IdScriptableObject:.put (20 samples, 2.80%) + + or.. - org/mozilla/javascript/ScriptableObject:.getSlot (18 samples, 2.53%) - - or.. + org/mozilla/javascript/ScriptableObject:.getSlot (18 samples, 2.52%) + + or.. - org/mozilla/javascript/ScriptableObject:.createSlot (15 samples, 2.11%) - - o.. + org/mozilla/javascript/ScriptableObject:.createSlot (15 samples, 2.10%) + + o.. org/mozilla/javascript/ScriptableObject:.getPrototype (3 samples, 0.42%) - - + + org/mozilla/javascript/ScriptableObject:.getParentScope (3 samples, 0.42%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (8 samples, 1.12%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (8 samples, 1.12%) - - + + org/mozilla/javascript/TopLevel:.getBuiltinPrototype (5 samples, 0.70%) - - + + org/mozilla/javascript/ScriptRuntime:.name (3 samples, 0.42%) - - + + org/mozilla/javascript/ScriptRuntime:.nameOrFunction (3 samples, 0.42%) - - + + vtable chunks (3 samples, 0.42%) - - + + org/mozilla/javascript/ScriptRuntime:.setObjectProp (3 samples, 0.42%) - - + + org/mozilla/javascript/IdScriptableObject:.has (3 samples, 0.42%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (3 samples, 0.42%) - - + + org/mozilla/javascript/IdScriptableObject:.setAttributes (5 samples, 0.70%) - - + + org/mozilla/javascript/ScriptRuntime:.createFunctionActivation (13 samples, 1.82%) - - + + org/mozilla/javascript/TopLevel:.getBuiltinPrototype (5 samples, 0.70%) - - + + - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (205 samples, 28.77%) - - org/mozilla/javascript/gen/file__home_bgregg_t.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (205 samples, 28.67%) + + org/mozilla/javascript/gen/file__home_bgregg_t.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (203 samples, 28.49%) - - org/mozilla/javascript/gen/file__home_bgregg_t.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (203 samples, 28.39%) + + org/mozilla/javascript/gen/file__home_bgregg_t.. - org/mozilla/javascript/optimizer/OptRuntime:.call2 (23 samples, 3.23%) - - org.. + org/mozilla/javascript/optimizer/OptRuntime:.call2 (23 samples, 3.22%) + + org.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (15 samples, 2.11%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (15 samples, 2.10%) + + o.. org/mozilla/javascript/ScriptRuntime:.setObjectProp (3 samples, 0.42%) - - + + org/mozilla/javascript/IdScriptableObject:.put (3 samples, 0.42%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (3 samples, 0.42%) - - + + org/mozilla/javascript/ScriptableObject:.createSlot (3 samples, 0.42%) - - + + org/mozilla/javascript/ScriptRuntime:.indexFromString (3 samples, 0.42%) - - + + org/mozilla/javascript/ScriptRuntime:.setObjectElem (5 samples, 0.70%) - - + + org/mozilla/javascript/ScriptRuntime:.indexFromString (5 samples, 0.70%) - - + + io/netty/handler/codec/http/DefaultHttpHeaders:.set (3 samples, 0.42%) - - + + io/netty/buffer/AbstractByteBuf:.writeBytes (3 samples, 0.42%) - - + + io/netty/buffer/AbstractByteBuf:.writeBytes (3 samples, 0.42%) - - + + io/netty/buffer/AbstractByteBufAllocator:.directBuffer (8 samples, 1.12%) - - + + io/netty/util/concurrent/FastThreadLocal:.get (3 samples, 0.42%) - - + + io/netty/handler/codec/http/HttpObjectEncoder:.encode (13 samples, 1.82%) - - + + java/util/ArrayList:.add (3 samples, 0.42%) - - + + io/netty/util/internal/RecyclableArrayList:.newInstance (3 samples, 0.42%) - - + + io/netty/util/concurrent/FastThreadLocal:.get (3 samples, 0.42%) - - + + java/util/ArrayList:.ensureExplicitCapacity (3 samples, 0.42%) - - + + - io/netty/channel/AbstractChannelHandlerContext:.write (30 samples, 4.21%) - - io/ne.. + io/netty/channel/AbstractChannelHandlerContext:.write (30 samples, 4.20%) + + io/ne.. - org/vertx/java/core/http/impl/VertxHttpHandler:.write (28 samples, 3.93%) - - org/.. + org/vertx/java/core/http/impl/VertxHttpHandler:.write (28 samples, 3.92%) + + org/.. - io/netty/channel/AbstractChannelHandlerContext:.write (25 samples, 3.51%) - - io/.. + io/netty/channel/AbstractChannelHandlerContext:.write (25 samples, 3.50%) + + io/.. - io/netty/handler/codec/MessageToMessageEncoder:.write (25 samples, 3.51%) - - io/.. + io/netty/handler/codec/MessageToMessageEncoder:.write (25 samples, 3.50%) + + io/.. vtable chunks (3 samples, 0.42%) - - + + - io/netty/channel/AbstractChannelHandlerContext:.write (33 samples, 4.63%) - - io/ne.. + io/netty/channel/AbstractChannelHandlerContext:.write (33 samples, 4.62%) + + io/ne.. org/vertx/java/core/http/impl/VertxHttpHandler:.write (3 samples, 0.42%) - - + + io/netty/handler/codec/http/DefaultHttpHeaders:.add0 (3 samples, 0.42%) - - + + io/netty/handler/codec/http/DefaultHttpHeaders:.set (3 samples, 0.42%) - - + + - org/mozilla/javascript/NativeJavaMethod:.call (53 samples, 7.44%) - - org/mozill.. + org/mozilla/javascript/NativeJavaMethod:.call (53 samples, 7.41%) + + org/mozill.. - org/mozilla/javascript/MemberBox:.invoke (53 samples, 7.44%) - - org/mozill.. + org/mozilla/javascript/MemberBox:.invoke (53 samples, 7.41%) + + org/mozill.. - sun/reflect/DelegatingMethodAccessorImpl:.invoke (48 samples, 6.74%) - - sun/refle.. + sun/reflect/DelegatingMethodAccessorImpl:.invoke (48 samples, 6.71%) + + sun/refle.. sun/nio/cs/UTF_8$Encoder:.<init> (3 samples, 0.42%) - - + + jbyte_disjoint_arraycopy (3 samples, 0.42%) - - + + - io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (320 samples, 44.91%) - - io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (320 samples, 44.76%) + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead - org/vertx/java/core/net/impl/VertxHandler:.channelRead (320 samples, 44.91%) - - org/vertx/java/core/net/impl/VertxHandler:.channelRead + org/vertx/java/core/net/impl/VertxHandler:.channelRead (320 samples, 44.76%) + + org/vertx/java/core/net/impl/VertxHandler:.channelRead - org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (310 samples, 43.51%) - - org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessag.. + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (310 samples, 43.36%) + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessag.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (293 samples, 41.12%) - - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (293 samples, 40.98%) + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (290 samples, 40.70%) - - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (290 samples, 40.56%) + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call (68 samples, 9.54%) - - org/mozilla/ja.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call (68 samples, 9.51%) + + org/mozilla/ja.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (60 samples, 8.42%) - - org/mozilla/.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (60 samples, 8.39%) + + org/mozilla/.. org/mozilla/javascript/ScriptRuntime:.name (3 samples, 0.42%) - - + + org/mozilla/javascript/ScriptRuntime:.nameOrFunction (3 samples, 0.42%) - - + + org/mozilla/javascript/IdScriptableObject:.get (3 samples, 0.42%) - - + + org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue (3 samples, 0.42%) - - + + io/netty/buffer/AbstractByteBuf:.forEachByteAsc0 (3 samples, 0.42%) - - + + io/netty/util/internal/AppendableCharSequence:.append (3 samples, 0.42%) - - + + io/netty/handler/codec/http/HttpHeaders:.isTransferEncodingChunked (3 samples, 0.42%) - - + + io/netty/handler/codec/http/HttpObjectDecoder:.findWhitespace (3 samples, 0.42%) - - + + io/netty/buffer/AbstractByteBuf:.forEachByteAsc0 (5 samples, 0.70%) - - + + io/netty/handler/codec/http/HttpHeaders:.hash (3 samples, 0.42%) - - + + io/netty/handler/codec/http/HttpObjectDecoder:.splitHeader (13 samples, 1.82%) - - + + - io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (358 samples, 50.25%) - - io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (358 samples, 50.07%) + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead - io/netty/handler/codec/ByteToMessageDecoder:.channelRead (358 samples, 50.25%) - - io/netty/handler/codec/ByteToMessageDecoder:.channelRead + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (358 samples, 50.07%) + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead - io/netty/handler/codec/http/HttpObjectDecoder:.decode (33 samples, 4.63%) - - io/ne.. + io/netty/handler/codec/http/HttpObjectDecoder:.decode (33 samples, 4.62%) + + io/ne.. - io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders (25 samples, 3.51%) - - io/.. + io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders (25 samples, 3.50%) + + io/.. java/util/Arrays:.fill (3 samples, 0.42%) - - + + java/nio/channels/spi/AbstractInterruptibleChannel:.end (3 samples, 0.42%) - - + + sys_read (3 samples, 0.42%) - - + + do_sync_read (3 samples, 0.42%) - - + + __kfree_skb (3 samples, 0.42%) - - + + tcp_rcv_space_adjust (3 samples, 0.42%) - - + + skb_release_data (3 samples, 0.42%) - - + + __kfree_skb (5 samples, 0.70%) - - + + skb_release_head_state (3 samples, 0.42%) - - + + dst_release (3 samples, 0.42%) - - + + _raw_spin_lock_bh (3 samples, 0.42%) - - + + skb_copy_datagram_iovec (5 samples, 0.70%) - - + + copy_user_enhanced_fast_string (3 samples, 0.42%) - - + + - do_sync_read (23 samples, 3.23%) - - do_.. + do_sync_read (23 samples, 3.22%) + + do_.. - sock_aio_read (23 samples, 3.23%) - - soc.. + sock_aio_read (23 samples, 3.22%) + + soc.. - sock_aio_read.part.13 (23 samples, 3.23%) - - soc.. + sock_aio_read.part.13 (23 samples, 3.22%) + + soc.. - do_sock_read.isra.12 (23 samples, 3.23%) - - do_.. + do_sock_read.isra.12 (23 samples, 3.22%) + + do_.. - inet_recvmsg (23 samples, 3.23%) - - ine.. + inet_recvmsg (23 samples, 3.22%) + + ine.. - tcp_recvmsg (18 samples, 2.53%) - - tc.. + tcp_recvmsg (18 samples, 2.52%) + + tc.. tcp_cleanup_rbuf (5 samples, 0.70%) - - + + __tcp_select_window (3 samples, 0.42%) - - + + - io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes (40 samples, 5.61%) - - io/nett.. + io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes (40 samples, 5.59%) + + io/nett.. - sun/nio/ch/SocketChannelImpl:.read (40 samples, 5.61%) - - sun/nio.. + sun/nio/ch/SocketChannelImpl:.read (40 samples, 5.59%) + + sun/nio.. - sun/nio/ch/FileDispatcherImpl:.read0 (38 samples, 5.33%) - - sun/ni.. + sun/nio/ch/FileDispatcherImpl:.read0 (38 samples, 5.31%) + + sun/ni.. - read (38 samples, 5.33%) - - read + read (38 samples, 5.31%) + + read - system_call_fastpath (30 samples, 4.21%) - - syste.. + system_call_fastpath (30 samples, 4.20%) + + syste.. - sys_read (30 samples, 4.21%) - - sys_r.. + sys_read (30 samples, 4.20%) + + sys_r.. - vfs_read (25 samples, 3.51%) - - vfs.. + vfs_read (25 samples, 3.50%) + + vfs.. rw_verify_area (3 samples, 0.42%) - - + + - io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (650 samples, 91.23%) - - io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (653 samples, 91.33%) + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (3 samples, 0.42%) - - + + - JavaThread::run (658 samples, 92.35%) - - JavaThread::run + JavaThread::run (660 samples, 92.31%) + + JavaThread::run - JavaThread::thread_main_inner (658 samples, 92.35%) - - JavaThread::thread_main_inner + JavaThread::thread_main_inner (660 samples, 92.31%) + + JavaThread::thread_main_inner - thread_entry (658 samples, 92.35%) - - thread_entry + thread_entry (660 samples, 92.31%) + + thread_entry - JavaCalls::call_virtual (658 samples, 92.35%) - - JavaCalls::call_virtual + JavaCalls::call_virtual (660 samples, 92.31%) + + JavaCalls::call_virtual - JavaCalls::call_virtual (658 samples, 92.35%) - - JavaCalls::call_virtual + JavaCalls::call_virtual (660 samples, 92.31%) + + JavaCalls::call_virtual - JavaCalls::call_helper (658 samples, 92.35%) - - JavaCalls::call_helper + JavaCalls::call_helper (660 samples, 92.31%) + + JavaCalls::call_helper - call_stub (658 samples, 92.35%) - - call_stub + call_stub (660 samples, 92.31%) + + call_stub - Interpreter (658 samples, 92.35%) - - Interpreter + Interpreter (660 samples, 92.31%) + + Interpreter - Interpreter (658 samples, 92.35%) - - Interpreter + Interpreter (660 samples, 92.31%) + + Interpreter - io/netty/channel/nio/NioEventLoop:.run (658 samples, 92.35%) - - io/netty/channel/nio/NioEventLoop:.run + io/netty/channel/nio/NioEventLoop:.run (660 samples, 92.31%) + + io/netty/channel/nio/NioEventLoop:.run - io/netty/channel/nio/NioEventLoop:.processSelectedKeys (655 samples, 91.93%) - - io/netty/channel/nio/NioEventLoop:.processSelectedKeys + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (658 samples, 92.03%) + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys - io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (655 samples, 91.93%) - - io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (658 samples, 92.03%) + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized - io/netty/channel/nio/NioEventLoop:.processSelectedKey (653 samples, 91.65%) - - io/netty/channel/nio/NioEventLoop:.processSelectedKey + io/netty/channel/nio/NioEventLoop:.processSelectedKey (655 samples, 91.61%) + + io/netty/channel/nio/NioEventLoop:.processSelectedKey io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes (3 samples, 0.42%) - - + + PSIsAliveClosure::do_object_b (3 samples, 0.42%) - - + + StringTable::unlink_or_oops_do (5 samples, 0.70%) - - + + - start_thread (703 samples, 98.67%) - - start_thread + start_thread (705 samples, 98.60%) + + start_thread - java_start (703 samples, 98.67%) - - java_start + java_start (705 samples, 98.60%) + + java_start VMThread::run (10 samples, 1.40%) - - + + VMThread::loop (10 samples, 1.40%) - - + + VMThread::evaluate_operation (10 samples, 1.40%) - - + + VM_Operation::evaluate (10 samples, 1.40%) - - + + VM_ParallelGCFailedAllocation::doit (10 samples, 1.40%) - - + + ParallelScavengeHeap::failed_mem_allocate (10 samples, 1.40%) - - + + PSScavenge::invoke (10 samples, 1.40%) - - + + PSScavenge::invoke_no_policy (10 samples, 1.40%) - - + + pthread_cond_signal@@GLIBC_2.3.2 (3 samples, 0.42%) - - + + system_call_fastpath (3 samples, 0.42%) - - + + sys_futex (3 samples, 0.42%) - - + + do_futex (3 samples, 0.42%) - - + + futex_wake_op (3 samples, 0.42%) - - + + - all (713 samples, 100%) + all (715 samples, 100%) - java (713 samples, 100.07%) + java (715 samples, 100.00%) java write (8 samples, 1.12%) - - + + check_events (8 samples, 1.12%) - - + + hypercall_page (8 samples, 1.12%) - - + + \ No newline at end of file diff --git a/tests/data/flamegraph/inverted/inverted.svg b/tests/data/flamegraph/inverted/inverted.svg index 2f5f68e7..fbc763bd 100644 --- a/tests/data/flamegraph/inverted/inverted.svg +++ b/tests/data/flamegraph/inverted/inverted.svg @@ -37,1808 +37,1823 @@ var truncate_text_right = false;]]> read (1 samples, 0.35%) - + check_events (1 samples, 0.35%) - + hypercall_page (1 samples, 0.35%) - + ScavengeRootsTask::do_it (1 samples, 0.35%) - - + + ClassLoaderDataGraph::oops_do (1 samples, 0.35%) - - + + ClassLoaderData::oops_do (1 samples, 0.35%) - - + + PSScavengeKlassClosure::do_klass (1 samples, 0.35%) - - + + PSPromotionManager::drain_stacks_depth (1 samples, 0.35%) - - + + oopDesc* PSPromotionManager::copy_to_survivor_space<false> (1 samples, 0.35%) - - + + InstanceKlass::oop_push_contents (1 samples, 0.35%) - - + + ParallelTaskTerminator::offer_termination (5 samples, 1.75%) - - + + - GCTaskThread::run (14 samples, 4.91%) - - GCTask.. + GCTaskThread::run (14 samples, 4.90%) + + GCTask.. - StealTask::do_it (13 samples, 4.56%) - - Steal.. + StealTask::do_it (13 samples, 4.55%) + + Steal.. - SpinPause (7 samples, 2.46%) - - Sp.. + SpinPause (7 samples, 2.45%) + + Sp.. io/netty/buffer/AbstractByteBufAllocator:.directBuffer (1 samples, 0.35%) - - + + io/netty/buffer/AbstractReferenceCountedByteBuf:.release (1 samples, 0.35%) - - + + io/netty/buffer/PooledByteBuf:.internalNioBuffer (1 samples, 0.35%) - - + + sun/nio/ch/NativeThread:.current (1 samples, 0.35%) - - + + (3 samples, 1.05%) - - + + Java_sun_nio_ch_FileDispatcherImpl_write0 (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + fget_light (1 samples, 0.35%) - - + + __srcu_read_lock (1 samples, 0.35%) - - + + __tcp_push_pending_frames (1 samples, 0.35%) - - + + ktime_get_real (1 samples, 0.35%) - - + + skb_clone (1 samples, 0.35%) - - + + tcp_set_skb_tso_segs (1 samples, 0.35%) - - + + dev_hard_start_xmit (1 samples, 0.35%) - - + + dev_pick_tx (1 samples, 0.35%) - - + + dev_queue_xmit_nit (1 samples, 0.35%) - - + + xen_restore_fl_direct (1 samples, 0.35%) - - + + dev_hard_start_xmit (4 samples, 1.40%) - - + + loopback_xmit (3 samples, 1.05%) - - + + netif_rx (2 samples, 0.70%) - - + + netif_rx.part.82 (2 samples, 0.70%) - - + + xen_restore_fl_direct_end (1 samples, 0.35%) - - + + dma_issue_pending_all (1 samples, 0.35%) - - + + __inet_lookup_established (3 samples, 1.05%) - - + + tcp_event_data_recv (1 samples, 0.35%) - - + + - sock_def_readable (19 samples, 6.67%) - - sock_def_.. + sock_def_readable (19 samples, 6.64%) + + sock_def_.. - __wake_up_sync_key (19 samples, 6.67%) - - __wake_up.. + __wake_up_sync_key (19 samples, 6.64%) + + __wake_up.. - check_events (19 samples, 6.67%) - - check_eve.. + check_events (19 samples, 6.64%) + + check_eve.. - hypercall_page (19 samples, 6.67%) - - hypercall.. + hypercall_page (19 samples, 6.64%) + + hypercall.. + + + __kfree_skb (1 samples, 0.35%) + + + + + skb_release_data (1 samples, 0.35%) + + + + + skb_release_data.part.45 (1 samples, 0.35%) + + bictcp_acked (1 samples, 0.35%) - - + + ktime_get_real (2 samples, 0.70%) - - + + getnstimeofday (2 samples, 0.70%) - - + + xen_clocksource_get_cycles (1 samples, 0.35%) - - + + xen_clocksource_read (1 samples, 0.35%) - - + + tcp_rtt_estimator (1 samples, 0.35%) - - + + - ip_local_deliver (34 samples, 11.93%) - - ip_local_deliver + ip_local_deliver (35 samples, 12.24%) + + ip_local_deliver - ip_local_deliver_finish (34 samples, 11.93%) - - ip_local_deliver_f.. + ip_local_deliver_finish (35 samples, 12.24%) + + ip_local_deliver_f.. - tcp_v4_rcv (33 samples, 11.58%) - - tcp_v4_rcv + tcp_v4_rcv (34 samples, 11.89%) + + tcp_v4_rcv - tcp_v4_do_rcv (29 samples, 10.18%) - - tcp_v4_do_rcv + tcp_v4_do_rcv (30 samples, 10.49%) + + tcp_v4_do_rcv - tcp_rcv_established (28 samples, 9.82%) - - tcp_rcv_establ.. + tcp_rcv_established (29 samples, 10.14%) + + tcp_rcv_establi.. - tcp_ack (9 samples, 3.16%) - - tcp.. + tcp_ack (10 samples, 3.50%) + + tcp.. - tcp_clean_rtx_queue (6 samples, 2.11%) - - t.. + tcp_clean_rtx_queue (7 samples, 2.45%) + + tc.. tcp_valid_rtt_meas (1 samples, 0.35%) - - + + tcp_rtt_estimator (1 samples, 0.35%) - - + + - __do_softirq (37 samples, 12.98%) - - __do_softirq + __do_softirq (38 samples, 13.29%) + + __do_softirq - net_rx_action (37 samples, 12.98%) - - net_rx_action + net_rx_action (38 samples, 13.29%) + + net_rx_action - process_backlog (36 samples, 12.63%) - - process_backlog + process_backlog (37 samples, 12.94%) + + process_backlog - __netif_receive_skb (36 samples, 12.63%) - - __netif_receive_skb + __netif_receive_skb (37 samples, 12.94%) + + __netif_receive_skb - ip_rcv (35 samples, 12.28%) - - ip_rcv + ip_rcv (36 samples, 12.59%) + + ip_rcv - ip_rcv_finish (35 samples, 12.28%) - - ip_rcv_finish + ip_rcv_finish (36 samples, 12.59%) + + ip_rcv_finish ip_local_deliver_finish (1 samples, 0.35%) - - + + - local_bh_enable (38 samples, 13.33%) - - local_bh_enable + local_bh_enable (39 samples, 13.64%) + + local_bh_enable - do_softirq (38 samples, 13.33%) - - do_softirq + do_softirq (39 samples, 13.64%) + + do_softirq - call_softirq (38 samples, 13.33%) - - call_softirq + call_softirq (39 samples, 13.64%) + + call_softirq rcu_bh_qs (1 samples, 0.35%) - - + + - ip_local_out (45 samples, 15.79%) - - ip_local_out + ip_local_out (46 samples, 16.08%) + + ip_local_out - ip_output (45 samples, 15.79%) - - ip_output + ip_output (46 samples, 16.08%) + + ip_output - ip_finish_output (45 samples, 15.79%) - - ip_finish_output + ip_finish_output (46 samples, 16.08%) + + ip_finish_output - dev_queue_xmit (43 samples, 15.09%) - - dev_queue_xmit + dev_queue_xmit (44 samples, 15.38%) + + dev_queue_xmit netif_skb_features (1 samples, 0.35%) - - + + - ip_queue_xmit (47 samples, 16.49%) - - ip_queue_xmit + ip_queue_xmit (48 samples, 16.78%) + + ip_queue_xmit ip_output (2 samples, 0.70%) - - + + pvclock_clocksource_read (1 samples, 0.35%) - - + + getnstimeofday (2 samples, 0.70%) - - + + xen_clocksource_get_cycles (2 samples, 0.70%) - - + + xen_clocksource_read (1 samples, 0.35%) - - + + pvclock_clocksource_read (1 samples, 0.35%) - - + + ktime_get_real (3 samples, 1.05%) - - + + xen_clocksource_get_cycles (1 samples, 0.35%) - - + + - __tcp_push_pending_frames (56 samples, 19.65%) - - __tcp_push_pending_frames + __tcp_push_pending_frames (57 samples, 19.93%) + + __tcp_push_pending_frames - tcp_write_xmit (56 samples, 19.65%) - - tcp_write_xmit + tcp_write_xmit (57 samples, 19.93%) + + tcp_write_xmit - tcp_transmit_skb (53 samples, 18.60%) - - tcp_transmit_skb + tcp_transmit_skb (54 samples, 18.88%) + + tcp_transmit_skb skb_dst_set_noref (1 samples, 0.35%) - - + + lock_sock_nested (1 samples, 0.35%) - - + + _raw_spin_lock_bh (1 samples, 0.35%) - - + + local_bh_disable (1 samples, 0.35%) - - + + __kmalloc_node_track_caller (2 samples, 0.70%) - - + + arch_local_irq_save (1 samples, 0.35%) - - + + __phys_addr (1 samples, 0.35%) - - + + get_slab (2 samples, 0.70%) - - + + - __alloc_skb (7 samples, 2.46%) - - __.. + __alloc_skb (7 samples, 2.45%) + + __.. kmem_cache_alloc_node (1 samples, 0.35%) - - + + - sk_stream_alloc_skb (8 samples, 2.81%) - - sk.. + sk_stream_alloc_skb (8 samples, 2.80%) + + sk.. ksize (1 samples, 0.35%) - - + + ipv4_mtu (1 samples, 0.35%) - - + + tcp_current_mss (2 samples, 0.70%) - - + + tcp_established_options (1 samples, 0.35%) - - + + tcp_send_mss (3 samples, 1.05%) - - + + tcp_xmit_size_goal (1 samples, 0.35%) - - + + - do_sync_write (72 samples, 25.26%) - - do_sync_write + do_sync_write (73 samples, 25.52%) + + do_sync_write - sock_aio_write (72 samples, 25.26%) - - sock_aio_write + sock_aio_write (73 samples, 25.52%) + + sock_aio_write - do_sock_write.isra.10 (72 samples, 25.26%) - - do_sock_write.isra.10 + do_sock_write.isra.10 (73 samples, 25.52%) + + do_sock_write.isra.10 - inet_sendmsg (72 samples, 25.26%) - - inet_sendmsg + inet_sendmsg (73 samples, 25.52%) + + inet_sendmsg - tcp_sendmsg (71 samples, 24.91%) - - tcp_sendmsg + tcp_sendmsg (72 samples, 25.17%) + + tcp_sendmsg tcp_xmit_size_goal (1 samples, 0.35%) - - + + fsnotify (2 samples, 0.70%) - - + + __srcu_read_lock (1 samples, 0.35%) - - + + apparmor_file_permission (1 samples, 0.35%) - - + + rw_verify_area (3 samples, 1.05%) - - + + security_file_permission (1 samples, 0.35%) - - + + apparmor_file_permission (1 samples, 0.35%) - - + + common_file_perm (1 samples, 0.35%) - - + + - sun/nio/ch/FileDispatcherImpl:.write0 (87 samples, 30.53%) - - sun/nio/ch/FileDispatcherImpl:.write0 + sun/nio/ch/FileDispatcherImpl:.write0 (88 samples, 30.77%) + + sun/nio/ch/FileDispatcherImpl:.write0 - write (82 samples, 28.77%) - - write + write (83 samples, 29.02%) + + write - system_call_fastpath (80 samples, 28.07%) - - system_call_fastpath + system_call_fastpath (81 samples, 28.32%) + + system_call_fastpath - sys_write (80 samples, 28.07%) - - sys_write + sys_write (81 samples, 28.32%) + + sys_write - vfs_write (79 samples, 27.72%) - - vfs_write + vfs_write (80 samples, 27.97%) + + vfs_write sock_aio_write (1 samples, 0.35%) - - + + - sun/nio/ch/SocketChannelImpl:.write (88 samples, 30.88%) - - sun/nio/ch/SocketChannelImpl:.write + sun/nio/ch/SocketChannelImpl:.write (89 samples, 31.12%) + + sun/nio/ch/SocketChannelImpl:.write sun/nio/ch/SocketChannelImpl:.writerCleanup (1 samples, 0.35%) - - + + - io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (91 samples, 31.93%) - - io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (92 samples, 32.17%) + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes sun/nio/ch/SocketChannelImpl:.writerCleanup (1 samples, 0.35%) - - + + - io/netty/channel/AbstractChannelHandlerContext:.flush (95 samples, 33.33%) - - io/netty/channel/AbstractChannelHandlerContext:.flush + io/netty/channel/AbstractChannelHandlerContext:.flush (96 samples, 33.57%) + + io/netty/channel/AbstractChannelHandlerContext:.flush - io/netty/channel/ChannelDuplexHandler:.flush (95 samples, 33.33%) - - io/netty/channel/ChannelDuplexHandler:.flush + io/netty/channel/ChannelDuplexHandler:.flush (96 samples, 33.57%) + + io/netty/channel/ChannelDuplexHandler:.flush - io/netty/channel/AbstractChannelHandlerContext:.flush (95 samples, 33.33%) - - io/netty/channel/AbstractChannelHandlerContext:.flush + io/netty/channel/AbstractChannelHandlerContext:.flush (96 samples, 33.57%) + + io/netty/channel/AbstractChannelHandlerContext:.flush - io/netty/channel/ChannelOutboundHandlerAdapter:.flush (95 samples, 33.33%) - - io/netty/channel/ChannelOutboundHandlerAdapter:.flush + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (96 samples, 33.57%) + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush - io/netty/channel/AbstractChannelHandlerContext:.flush (95 samples, 33.33%) - - io/netty/channel/AbstractChannelHandlerContext:.flush + io/netty/channel/AbstractChannelHandlerContext:.flush (96 samples, 33.57%) + + io/netty/channel/AbstractChannelHandlerContext:.flush - io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (95 samples, 33.33%) - - io/netty/channel/DefaultChannelPipeline$HeadContext:.f.. + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (96 samples, 33.57%) + + io/netty/channel/DefaultChannelPipeline$HeadContext:.f.. - io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (95 samples, 33.33%) - - io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (96 samples, 33.57%) + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 - io/netty/channel/nio/AbstractNioByteChannel:.doWrite (95 samples, 33.33%) - - io/netty/channel/nio/AbstractNioByteChannel:.doWrite + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (96 samples, 33.57%) + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite io/netty/util/Recycler:.recycle (1 samples, 0.35%) - - + + - io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (97 samples, 34.04%) - - io/netty/channel/AbstractChannelHandlerContext:.fireCha.. + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (98 samples, 34.27%) + + io/netty/channel/AbstractChannelHandlerContext:.fireChan.. - org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (97 samples, 34.04%) - - org/vertx/java/core/net/impl/VertxHandler:.channelReadC.. + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (98 samples, 34.27%) + + org/vertx/java/core/net/impl/VertxHandler:.channelReadCo.. io/netty/channel/ChannelDuplexHandler:.flush (2 samples, 0.70%) - - + + - io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (98 samples, 34.39%) - - io/netty/channel/AbstractChannelHandlerContext:.fireChan.. + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (99 samples, 34.62%) + + io/netty/channel/AbstractChannelHandlerContext:.fireChan.. - io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (98 samples, 34.39%) - - io/netty/handler/codec/ByteToMessageDecoder:.channelRead.. + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (99 samples, 34.62%) + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead.. org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/buffer/AbstractReferenceCountedByteBuf:.release (1 samples, 0.35%) - - + + java/util/concurrent/ConcurrentHashMap:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/Context:.getWrapFactory (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptableObject:.getParentScope (1 samples, 0.35%) - - + + org/mozilla/javascript/WrapFactory:.wrapAsJavaObject (2 samples, 0.70%) - - + + java/util/HashMap:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/WrapFactory:.wrap (1 samples, 0.35%) - - + + java/util/HashMap:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.getObjectProp (4 samples, 1.40%) - - + + vtable chunks (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.nameOrFunction (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject$Slot:.getValue (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.name (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.has (3 samples, 1.05%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (2 samples, 0.70%) - - + + org/mozilla/javascript/IdScriptableObject:.put (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.setAttributes (1 samples, 0.35%) - - + + org/mozilla/javascript/MemberBox:.invoke (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaMethod:.call (2 samples, 0.70%) - - + + org/mozilla/javascript/WrapFactory:.wrap (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaMethod:.findFunction (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaObject:.get (2 samples, 0.70%) - - + + org/mozilla/javascript/IdScriptableObject:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.put (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptableObject:.createSlot (2 samples, 0.70%) - - + + org/mozilla/javascript/IdScriptableObject:.setAttributes (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.createFunctionActivation (5 samples, 1.75%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.getObjectProp (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject$Slot:.getValue (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaObject:.get (1 samples, 0.35%) - - + + java/util/HashMap:.get (1 samples, 0.35%) - - + + jint_disjoint_arraycopy (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.get (2 samples, 0.70%) - - + + org/mozilla/javascript/IdScriptableObject:.has (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.put (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptableObject:.createSlot (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptRuntime:.createFunctionActivation (5 samples, 1.75%) - - + + org/mozilla/javascript/IdScriptableObject:.setAttributes (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptRuntime:.getObjectProp (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.nameOrFunction (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.put (4 samples, 1.40%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (3 samples, 1.05%) - - + + org/mozilla/javascript/ScriptableObject:.createSlot (3 samples, 1.05%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.35%) - - + + - org/mozilla/javascript/ScriptRuntime:.setObjectProp (7 samples, 2.46%) - - or.. + org/mozilla/javascript/ScriptRuntime:.setObjectProp (7 samples, 2.45%) + + or.. vtable chunks (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeFunction:.initScriptFunction (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.createFunctionActivation (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.createFunctionActivation (2 samples, 0.70%) - - + + org/mozilla/javascript/IdScriptableObject:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.has (1 samples, 0.35%) - - + + - org/mozilla/javascript/ScriptRuntime:.setObjectProp (8 samples, 2.81%) - - or.. + org/mozilla/javascript/ScriptRuntime:.setObjectProp (8 samples, 2.80%) + + or.. - org/mozilla/javascript/IdScriptableObject:.put (7 samples, 2.46%) - - or.. + org/mozilla/javascript/IdScriptableObject:.put (7 samples, 2.45%) + + or.. - org/mozilla/javascript/ScriptableObject:.getSlot (6 samples, 2.11%) - - o.. + org/mozilla/javascript/ScriptableObject:.getSlot (6 samples, 2.10%) + + o.. - org/mozilla/javascript/ScriptableObject:.createSlot (6 samples, 2.11%) - - o.. + org/mozilla/javascript/ScriptableObject:.createSlot (6 samples, 2.10%) + + o.. - org/mozilla/javascript/ScriptRuntime:.newObject (32 samples, 11.23%) - - org/mozilla/javas.. + org/mozilla/javascript/ScriptRuntime:.newObject (32 samples, 11.19%) + + org/mozilla/java.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (32 samples, 11.23%) - - org/mozilla/javas.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (32 samples, 11.19%) + + org/mozilla/java.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (32 samples, 11.23%) - - org/mozilla/javas.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (32 samples, 11.19%) + + org/mozilla/java.. - org/mozilla/javascript/optimizer/OptRuntime:.call2 (13 samples, 4.56%) - - org/m.. + org/mozilla/javascript/optimizer/OptRuntime:.call2 (13 samples, 4.55%) + + org/m.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (11 samples, 3.86%) - - org/.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (11 samples, 3.85%) + + org/.. org/mozilla/javascript/ScriptableObject:.getParentScope (1 samples, 0.35%) - - + + - org/mozilla/javascript/IdScriptableObject:.has (9 samples, 3.16%) - - org.. + org/mozilla/javascript/IdScriptableObject:.has (9 samples, 3.15%) + + org.. org/mozilla/javascript/ScriptableObject:.getSlot (5 samples, 1.75%) - - + + - org/mozilla/javascript/ScriptRuntime:.setObjectProp (17 samples, 5.96%) - - org/mozi.. + org/mozilla/javascript/ScriptRuntime:.setObjectProp (17 samples, 5.94%) + + org/mozi.. - org/mozilla/javascript/IdScriptableObject:.put (8 samples, 2.81%) - - or.. + org/mozilla/javascript/IdScriptableObject:.put (8 samples, 2.80%) + + or.. - org/mozilla/javascript/ScriptableObject:.getSlot (7 samples, 2.46%) - - or.. + org/mozilla/javascript/ScriptableObject:.getSlot (7 samples, 2.45%) + + or.. - org/mozilla/javascript/ScriptableObject:.createSlot (6 samples, 2.11%) - - o.. + org/mozilla/javascript/ScriptableObject:.createSlot (6 samples, 2.10%) + + o.. org/mozilla/javascript/ScriptableObject:.getPrototype (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject:.getParentScope (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (3 samples, 1.05%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (3 samples, 1.05%) - - + + org/mozilla/javascript/TopLevel:.getBuiltinPrototype (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptRuntime:.name (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.nameOrFunction (1 samples, 0.35%) - - + + vtable chunks (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.setObjectProp (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.has (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.setAttributes (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptRuntime:.createFunctionActivation (5 samples, 1.75%) - - + + org/mozilla/javascript/TopLevel:.getBuiltinPrototype (2 samples, 0.70%) - - + + - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (82 samples, 28.77%) - - org/mozilla/javascript/gen/file__home_bgregg_t.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (82 samples, 28.67%) + + org/mozilla/javascript/gen/file__home_bgregg_t.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (81 samples, 28.42%) - - org/mozilla/javascript/gen/file__home_bgregg_t.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (81 samples, 28.32%) + + org/mozilla/javascript/gen/file__home_bgregg_t.. - org/mozilla/javascript/optimizer/OptRuntime:.call2 (9 samples, 3.16%) - - org.. + org/mozilla/javascript/optimizer/OptRuntime:.call2 (9 samples, 3.15%) + + org.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (6 samples, 2.11%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (6 samples, 2.10%) + + o.. org/mozilla/javascript/ScriptRuntime:.setObjectProp (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.put (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject:.createSlot (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.indexFromString (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.setObjectElem (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptRuntime:.indexFromString (2 samples, 0.70%) - - + + io/netty/handler/codec/http/DefaultHttpHeaders:.set (1 samples, 0.35%) - - + + io/netty/buffer/AbstractByteBuf:.writeBytes (1 samples, 0.35%) - - + + io/netty/buffer/AbstractByteBuf:.writeBytes (1 samples, 0.35%) - - + + io/netty/buffer/AbstractByteBufAllocator:.directBuffer (3 samples, 1.05%) - - + + io/netty/util/concurrent/FastThreadLocal:.get (1 samples, 0.35%) - - + + io/netty/handler/codec/http/HttpObjectEncoder:.encode (5 samples, 1.75%) - - + + java/util/ArrayList:.add (1 samples, 0.35%) - - + + io/netty/util/internal/RecyclableArrayList:.newInstance (1 samples, 0.35%) - - + + io/netty/util/concurrent/FastThreadLocal:.get (1 samples, 0.35%) - - + + java/util/ArrayList:.ensureExplicitCapacity (1 samples, 0.35%) - - + + - io/netty/channel/AbstractChannelHandlerContext:.write (12 samples, 4.21%) - - io/ne.. + io/netty/channel/AbstractChannelHandlerContext:.write (12 samples, 4.20%) + + io/ne.. - org/vertx/java/core/http/impl/VertxHttpHandler:.write (11 samples, 3.86%) - - org/.. + org/vertx/java/core/http/impl/VertxHttpHandler:.write (11 samples, 3.85%) + + org/.. - io/netty/channel/AbstractChannelHandlerContext:.write (10 samples, 3.51%) - - io/.. + io/netty/channel/AbstractChannelHandlerContext:.write (10 samples, 3.50%) + + io/.. - io/netty/handler/codec/MessageToMessageEncoder:.write (10 samples, 3.51%) - - io/.. + io/netty/handler/codec/MessageToMessageEncoder:.write (10 samples, 3.50%) + + io/.. vtable chunks (1 samples, 0.35%) - - + + - io/netty/channel/AbstractChannelHandlerContext:.write (13 samples, 4.56%) - - io/ne.. + io/netty/channel/AbstractChannelHandlerContext:.write (13 samples, 4.55%) + + io/ne.. org/vertx/java/core/http/impl/VertxHttpHandler:.write (1 samples, 0.35%) - - + + io/netty/handler/codec/http/DefaultHttpHeaders:.add0 (1 samples, 0.35%) - - + + io/netty/handler/codec/http/DefaultHttpHeaders:.set (1 samples, 0.35%) - - + + - org/mozilla/javascript/NativeJavaMethod:.call (21 samples, 7.37%) - - org/mozill.. + org/mozilla/javascript/NativeJavaMethod:.call (21 samples, 7.34%) + + org/mozill.. - org/mozilla/javascript/MemberBox:.invoke (21 samples, 7.37%) - - org/mozill.. + org/mozilla/javascript/MemberBox:.invoke (21 samples, 7.34%) + + org/mozill.. - sun/reflect/DelegatingMethodAccessorImpl:.invoke (19 samples, 6.67%) - - sun/refle.. + sun/reflect/DelegatingMethodAccessorImpl:.invoke (19 samples, 6.64%) + + sun/refle.. sun/nio/cs/UTF_8$Encoder:.<init> (1 samples, 0.35%) - - + + jbyte_disjoint_arraycopy (1 samples, 0.35%) - - + + - io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (128 samples, 44.91%) - - io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (128 samples, 44.76%) + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead - org/vertx/java/core/net/impl/VertxHandler:.channelRead (128 samples, 44.91%) - - org/vertx/java/core/net/impl/VertxHandler:.channelRead + org/vertx/java/core/net/impl/VertxHandler:.channelRead (128 samples, 44.76%) + + org/vertx/java/core/net/impl/VertxHandler:.channelRead - org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (124 samples, 43.51%) - - org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessag.. + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (124 samples, 43.36%) + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessag.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (117 samples, 41.05%) - - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (117 samples, 40.91%) + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (116 samples, 40.70%) - - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (116 samples, 40.56%) + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call (27 samples, 9.47%) - - org/mozilla/ja.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call (27 samples, 9.44%) + + org/mozilla/ja.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (24 samples, 8.42%) - - org/mozilla/.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (24 samples, 8.39%) + + org/mozilla/.. org/mozilla/javascript/ScriptRuntime:.name (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.nameOrFunction (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue (1 samples, 0.35%) - - + + io/netty/buffer/AbstractByteBuf:.forEachByteAsc0 (1 samples, 0.35%) - - + + io/netty/util/internal/AppendableCharSequence:.append (1 samples, 0.35%) - - + + io/netty/handler/codec/http/HttpHeaders:.isTransferEncodingChunked (1 samples, 0.35%) - - + + io/netty/handler/codec/http/HttpObjectDecoder:.findWhitespace (1 samples, 0.35%) - - + + io/netty/buffer/AbstractByteBuf:.forEachByteAsc0 (2 samples, 0.70%) - - + + io/netty/handler/codec/http/HttpHeaders:.hash (1 samples, 0.35%) - - + + io/netty/handler/codec/http/HttpObjectDecoder:.splitHeader (5 samples, 1.75%) - - + + - io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (143 samples, 50.18%) - - io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (143 samples, 50.00%) + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead - io/netty/handler/codec/ByteToMessageDecoder:.channelRead (143 samples, 50.18%) - - io/netty/handler/codec/ByteToMessageDecoder:.channelRead + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (143 samples, 50.00%) + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead - io/netty/handler/codec/http/HttpObjectDecoder:.decode (13 samples, 4.56%) - - io/ne.. + io/netty/handler/codec/http/HttpObjectDecoder:.decode (13 samples, 4.55%) + + io/ne.. - io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders (10 samples, 3.51%) - - io/.. + io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders (10 samples, 3.50%) + + io/.. java/util/Arrays:.fill (1 samples, 0.35%) - - + + java/nio/channels/spi/AbstractInterruptibleChannel:.end (1 samples, 0.35%) - - + + sys_read (1 samples, 0.35%) - - + + do_sync_read (1 samples, 0.35%) - - + + __kfree_skb (1 samples, 0.35%) - - + + tcp_rcv_space_adjust (1 samples, 0.35%) - - + + skb_release_data (1 samples, 0.35%) - - + + __kfree_skb (2 samples, 0.70%) - - + + skb_release_head_state (1 samples, 0.35%) - - + + dst_release (1 samples, 0.35%) - - + + _raw_spin_lock_bh (1 samples, 0.35%) - - + + skb_copy_datagram_iovec (2 samples, 0.70%) - - + + copy_user_enhanced_fast_string (1 samples, 0.35%) - - + + - do_sync_read (9 samples, 3.16%) - - do_.. + do_sync_read (9 samples, 3.15%) + + do_.. - sock_aio_read (9 samples, 3.16%) - - soc.. + sock_aio_read (9 samples, 3.15%) + + soc.. - sock_aio_read.part.13 (9 samples, 3.16%) - - soc.. + sock_aio_read.part.13 (9 samples, 3.15%) + + soc.. - do_sock_read.isra.12 (9 samples, 3.16%) - - do_.. + do_sock_read.isra.12 (9 samples, 3.15%) + + do_.. - inet_recvmsg (9 samples, 3.16%) - - ine.. + inet_recvmsg (9 samples, 3.15%) + + ine.. - tcp_recvmsg (7 samples, 2.46%) - - tc.. + tcp_recvmsg (7 samples, 2.45%) + + tc.. tcp_cleanup_rbuf (2 samples, 0.70%) - - + + __tcp_select_window (1 samples, 0.35%) - - + + - io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes (16 samples, 5.61%) - - io/nett.. + io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes (16 samples, 5.59%) + + io/nett.. - sun/nio/ch/SocketChannelImpl:.read (16 samples, 5.61%) - - sun/nio.. + sun/nio/ch/SocketChannelImpl:.read (16 samples, 5.59%) + + sun/nio.. - sun/nio/ch/FileDispatcherImpl:.read0 (15 samples, 5.26%) - - sun/ni.. + sun/nio/ch/FileDispatcherImpl:.read0 (15 samples, 5.24%) + + sun/ni.. - read (15 samples, 5.26%) - - read + read (15 samples, 5.24%) + + read - system_call_fastpath (12 samples, 4.21%) - - syste.. + system_call_fastpath (12 samples, 4.20%) + + syste.. - sys_read (12 samples, 4.21%) - - sys_r.. + sys_read (12 samples, 4.20%) + + sys_r.. - vfs_read (10 samples, 3.51%) - - vfs.. + vfs_read (10 samples, 3.50%) + + vfs.. rw_verify_area (1 samples, 0.35%) - - + + - io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (260 samples, 91.23%) - - io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (261 samples, 91.26%) + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + - JavaThread::run (263 samples, 92.28%) - - JavaThread::run + JavaThread::run (264 samples, 92.31%) + + JavaThread::run - JavaThread::thread_main_inner (263 samples, 92.28%) - - JavaThread::thread_main_inner + JavaThread::thread_main_inner (264 samples, 92.31%) + + JavaThread::thread_main_inner - thread_entry (263 samples, 92.28%) - - thread_entry + thread_entry (264 samples, 92.31%) + + thread_entry - JavaCalls::call_virtual (263 samples, 92.28%) - - JavaCalls::call_virtual + JavaCalls::call_virtual (264 samples, 92.31%) + + JavaCalls::call_virtual - JavaCalls::call_virtual (263 samples, 92.28%) - - JavaCalls::call_virtual + JavaCalls::call_virtual (264 samples, 92.31%) + + JavaCalls::call_virtual - JavaCalls::call_helper (263 samples, 92.28%) - - JavaCalls::call_helper + JavaCalls::call_helper (264 samples, 92.31%) + + JavaCalls::call_helper - call_stub (263 samples, 92.28%) - - call_stub + call_stub (264 samples, 92.31%) + + call_stub - Interpreter (263 samples, 92.28%) - - Interpreter + Interpreter (264 samples, 92.31%) + + Interpreter - Interpreter (263 samples, 92.28%) - - Interpreter + Interpreter (264 samples, 92.31%) + + Interpreter - io/netty/channel/nio/NioEventLoop:.run (263 samples, 92.28%) - - io/netty/channel/nio/NioEventLoop:.run + io/netty/channel/nio/NioEventLoop:.run (264 samples, 92.31%) + + io/netty/channel/nio/NioEventLoop:.run - io/netty/channel/nio/NioEventLoop:.processSelectedKeys (262 samples, 91.93%) - - io/netty/channel/nio/NioEventLoop:.processSelectedKeys + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (263 samples, 91.96%) + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys - io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (262 samples, 91.93%) - - io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (263 samples, 91.96%) + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized - io/netty/channel/nio/NioEventLoop:.processSelectedKey (261 samples, 91.58%) - - io/netty/channel/nio/NioEventLoop:.processSelectedKey + io/netty/channel/nio/NioEventLoop:.processSelectedKey (262 samples, 91.61%) + + io/netty/channel/nio/NioEventLoop:.processSelectedKey io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes (1 samples, 0.35%) - - + + PSIsAliveClosure::do_object_b (1 samples, 0.35%) - - + + StringTable::unlink_or_oops_do (2 samples, 0.70%) - - + + - start_thread (281 samples, 98.60%) - - start_thread + start_thread (282 samples, 98.60%) + + start_thread - java_start (281 samples, 98.60%) - - java_start + java_start (282 samples, 98.60%) + + java_start VMThread::run (4 samples, 1.40%) - - + + VMThread::loop (4 samples, 1.40%) - - + + VMThread::evaluate_operation (4 samples, 1.40%) - - + + VM_Operation::evaluate (4 samples, 1.40%) - - + + VM_ParallelGCFailedAllocation::doit (4 samples, 1.40%) - - + + ParallelScavengeHeap::failed_mem_allocate (4 samples, 1.40%) - - + + PSScavenge::invoke (4 samples, 1.40%) - - + + PSScavenge::invoke_no_policy (4 samples, 1.40%) - - + + pthread_cond_signal@@GLIBC_2.3.2 (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + sys_futex (1 samples, 0.35%) - - + + do_futex (1 samples, 0.35%) - - + + futex_wake_op (1 samples, 0.35%) - - + + - all (285 samples, 100%) + all (286 samples, 100%) - java (285 samples, 100.00%) + java (286 samples, 100.00%) java write (3 samples, 1.05%) - - + + check_events (3 samples, 1.05%) - - + + hypercall_page (3 samples, 1.05%) - - + + \ No newline at end of file diff --git a/tests/data/flamegraph/multiple-inputs/perf-vertx-stacks-01-collapsed-all-unsorted-1.txt b/tests/data/flamegraph/multiple-inputs/perf-vertx-stacks-01-collapsed-all-unsorted-1.txt index 3e127117..f720205c 100644 --- a/tests/data/flamegraph/multiple-inputs/perf-vertx-stacks-01-collapsed-all-unsorted-1.txt +++ b/tests/data/flamegraph/multiple-inputs/perf-vertx-stacks-01-collapsed-all-unsorted-1.txt @@ -1,99 +1,100 @@ -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_rcv_space_adjust_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];vtable chunks_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.has_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];dev_hard_start_xmit_[k];dev_queue_xmit_nit_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/TopLevel:.getBuiltinPrototype_[j] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/ScriptRuntime:.name_[j];org/mozilla/javascript/ScriptRuntime:.nameOrFunction_[j];vtable chunks_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];fget_light_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.name_[j];org/mozilla/javascript/IdScriptableObject:.get_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];io/netty/handler/codec/http/HttpObjectEncoder:.encode_[j];io/netty/buffer/AbstractByteBufAllocator:.directBuffer_[j];io/netty/util/concurrent/FastThreadLocal:.get_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/TopLevel:.getBuiltinPrototype_[j] 2 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k];__kmalloc_node_track_caller_[k] 1 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_send_mss_[k];tcp_current_mss_[k];tcp_established_options_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/ScriptableObject:.getParentScope_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;sys_write_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_cleanup_rbuf_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];lock_sock_nested_[k];_raw_spin_lock_bh_[k];local_bh_disable_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];rw_verify_area_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/NativeFunction:.initScriptFunction_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/WrapFactory:.wrapAsJavaObject_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];__tcp_push_pending_frames_[k] 1 -java;start_thread;java_start;VMThread::run;VMThread::loop;VMThread::evaluate_operation;VM_Operation::evaluate;VM_ParallelGCFailedAllocation::doit;ParallelScavengeHeap::failed_mem_allocate;PSScavenge::invoke;PSScavenge::invoke_no_policy;PSIsAliveClosure::do_object_b 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];__kfree_skb_[k];skb_release_data_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.has_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 5 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_event_data_recv_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.setAttributes_[j] 2 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];dev_hard_start_xmit_[k];loopback_xmit_[k];netif_rx_[k];netif_rx.part.82_[k];xen_restore_fl_direct_end_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 2 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 6 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];io/netty/handler/codec/http/HttpObjectEncoder:.encode_[j];java/util/ArrayList:.add_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_xmit_size_goal_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];java/nio/channels/spi/AbstractInterruptibleChannel:.end_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/NativeThread:.current_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 6 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.findWhitespace_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];__srcu_read_lock_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];io/netty/buffer/PooledByteBuf:.internalNioBuffer_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];ksize_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/ScriptRuntime:.indexFromString_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_output_[k] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];Java_sun_nio_ch_FileDispatcherImpl_write0 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/WrapFactory:.wrap_[j];java/util/HashMap:.get_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.writerCleanup_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.setAttributes_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];dev_hard_start_xmit_[k];dev_queue_xmit_nit_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptableObject:.getParentScope_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_pick_tx_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo_[j] 1 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_clean_rtx_queue_[k];bictcp_acked_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];io/netty/handler/codec/http/HttpObjectEncoder:.encode_[j];io/netty/buffer/AbstractByteBuf:.writeBytes_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getObjectProp_[j];org/mozilla/javascript/ScriptableObject$Slot:.getValue_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k];get_slab_[k] 2 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/buffer/AbstractByteBufAllocator:.directBuffer_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/NativeFunction:.initScriptFunction_[j] 1 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 3 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders_[j];java/util/Arrays:.fill_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getObjectProp_[j];vtable chunks_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders_[j];io/netty/handler/codec/http/HttpObjectDecoder:.splitHeader_[j] 5 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];__kfree_skb_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_xmit_size_goal_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k];__kmalloc_node_track_caller_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/WrapFactory:.wrap_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/NativeThread:.current_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaObject:.get_[j] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/WrapFactory:.wrapAsJavaObject_[j];java/util/HashMap:.get_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.findFunction_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];vtable chunks_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k] 2 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];__srcu_read_lock_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.nameOrFunction_[j];org/mozilla/javascript/IdScriptableObject:.get_[j];org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders_[j];io/netty/buffer/AbstractByteBuf:.forEachByteAsc0_[j] 2 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];sun/nio/cs/UTF_8$Encoder:._[j];jbyte_disjoint_arraycopy_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.get_[j] 2 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j]; 3 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/ScriptRuntime:.setObjectElem_[j];org/mozilla/javascript/ScriptRuntime:.indexFromString_[j] 2 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];_raw_spin_lock_bh_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;sys_write_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j] 2 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ktime_get_real_[k];xen_clocksource_get_cycles_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];sock_def_readable_[k];__wake_up_sync_key_[k];check_events_[k];hypercall_page_[k] 19 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.has_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];java/util/ArrayList:.ensureExplicitCapacity_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];io/netty/buffer/PooledByteBuf:.internalNioBuffer_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];__inet_lookup_established_[k] 3 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/WrapFactory:.wrapAsJavaObject_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/ScriptableObject:.getParentScope_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];rw_verify_area_[k];apparmor_file_permission_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];do_sync_read_[k] 1 +java;start_thread;java_start;VMThread::run;VMThread::loop;VMThread::evaluate_operation;VM_Operation::evaluate;VM_ParallelGCFailedAllocation::doit;ParallelScavengeHeap::failed_mem_allocate;PSScavenge::invoke;PSScavenge::invoke_no_policy;pthread_cond_signal@@GLIBC_2.3.2;system_call_fastpath_[k];sys_futex_[k];do_futex_[k];futex_wake_op_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];rw_verify_area_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];lock_sock_nested_[k];_raw_spin_lock_bh_[k];local_bh_disable_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];fsnotify_[k];__srcu_read_lock_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/buffer/AbstractByteBuf:.forEachByteAsc0_[j];io/netty/util/internal/AppendableCharSequence:.append_[j] 1 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 6 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.get_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];jint_disjoint_arraycopy_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis_[j];org/mozilla/javascript/NativeJavaObject:.get_[j];java/util/HashMap:.get_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/mozilla/javascript/Context:.getWrapFactory_[j] 2 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/util/Recycler:.recycle_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/SocketChannelImpl:.writerCleanup_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];skb_dst_set_noref_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.name_[j];org/mozilla/javascript/ScriptRuntime:.nameOrFunction_[j];org/mozilla/javascript/IdScriptableObject:.get_[j];org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k] 1 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k] 3 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 6 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];Java_sun_nio_ch_FileDispatcherImpl_write0 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];__kfree_skb_[k];skb_release_data_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/handler/codec/http/DefaultHttpHeaders:.set_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptableObject:.getPrototype_[j] 1 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_clean_rtx_queue_[k];ktime_get_real_[k];getnstimeofday_[k];xen_clocksource_get_cycles_[k];xen_clocksource_read_[k] 1 -java;start_thread;java_start;GCTaskThread::run;ScavengeRootsTask::do_it;ClassLoaderDataGraph::oops_do;ClassLoaderData::oops_do;PSScavengeKlassClosure::do_klass 1 +java;start_thread;java_start;VMThread::run;VMThread::loop;VMThread::evaluate_operation;VM_Operation::evaluate;VM_ParallelGCFailedAllocation::doit;ParallelScavengeHeap::failed_mem_allocate;PSScavenge::invoke;PSScavenge::invoke_no_policy;PSIsAliveClosure::do_object_b 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];ktime_get_real_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_clean_rtx_queue_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ktime_get_real_[k];getnstimeofday_[k];xen_clocksource_get_cycles_[k];pvclock_clocksource_read_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getObjectProp_[j];vtable chunks_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.get_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/WrapFactory:.wrapAsJavaObject_[j];java/util/HashMap:.get_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_rcv_space_adjust_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_cleanup_rbuf_[k];__tcp_select_window_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];dma_issue_pending_all_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getObjectProp_[j];org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue_[j] 1 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_clean_rtx_queue_[k];ktime_get_real_[k];getnstimeofday_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ktime_get_real_[k];getnstimeofday_[k];xen_clocksource_get_cycles_[k];xen_clocksource_read_[k];pvclock_clocksource_read_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];java/util/ArrayList:.ensureExplicitCapacity_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/handler/codec/http/DefaultHttpHeaders:.add0_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j] 3 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];rcu_bh_qs_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/buffer/AbstractReferenceCountedByteBuf:.release_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];io/netty/buffer/AbstractByteBuf:.writeBytes_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];dev_hard_start_xmit_[k];loopback_xmit_[k];netif_rx_[k];netif_rx.part.82_[k];xen_restore_fl_direct_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];_raw_spin_lock_bh_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.setAttributes_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.has_[j] 1 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_set_skb_tso_segs_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/SocketChannelImpl:.writerCleanup_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptableObject:.getParentScope_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_hard_start_xmit_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getObjectProp_[j];org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/util/Recycler:.recycle_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k];__phys_addr_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];dev_hard_start_xmit_[k];loopback_xmit_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];vtable chunks_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];ktime_get_real_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptableObject:.getPrototype_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];sun/nio/cs/UTF_8$Encoder:._[j];jbyte_disjoint_arraycopy_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];netif_skb_features_[k] 1 -java;start_thread;java_start;VMThread::run;VMThread::loop;VMThread::evaluate_operation;VM_Operation::evaluate;VM_ParallelGCFailedAllocation::doit;ParallelScavengeHeap::failed_mem_allocate;PSScavenge::invoke;PSScavenge::invoke_no_policy;pthread_cond_signal@@GLIBC_2.3.2;system_call_fastpath_[k];sys_futex_[k];do_futex_[k];futex_wake_op_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.has_[j] 4 -java;start_thread;java_start;GCTaskThread::run;StealTask::do_it;PSPromotionManager::drain_stacks_depth;oopDesc* PSPromotionManager::copy_to_survivor_space;InstanceKlass::oop_push_contents 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.has_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptableObject:.getParentScope_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];skb_clone_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];java/util/concurrent/ConcurrentHashMap:.get_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis_[j];org/mozilla/javascript/NativeJavaObject:.get_[j];java/util/HashMap:.get_[j] 1 diff --git a/tests/data/flamegraph/multiple-inputs/perf-vertx-stacks-01-collapsed-all-unsorted-2.txt b/tests/data/flamegraph/multiple-inputs/perf-vertx-stacks-01-collapsed-all-unsorted-2.txt index a496a0fa..08a17c04 100644 --- a/tests/data/flamegraph/multiple-inputs/perf-vertx-stacks-01-collapsed-all-unsorted-2.txt +++ b/tests/data/flamegraph/multiple-inputs/perf-vertx-stacks-01-collapsed-all-unsorted-2.txt @@ -1,100 +1,100 @@ -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];java/util/concurrent/ConcurrentHashMap:.get_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];sock_def_readable_[k];__wake_up_sync_key_[k];check_events_[k];hypercall_page_[k] 19 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_send_mss_[k];tcp_xmit_size_goal_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.setAttributes_[j] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];io/netty/handler/codec/http/HttpObjectEncoder:.encode_[j];java/util/ArrayList:.add_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/TopLevel:.getBuiltinPrototype_[j] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k];__kmalloc_node_track_caller_[k];arch_local_irq_save_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];io/netty/handler/codec/http/DefaultHttpHeaders:.set_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpHeaders:.isTransferEncodingChunked_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k];get_slab_[k] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j] 2 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];io/netty/handler/codec/http/HttpObjectEncoder:.encode_[j];io/netty/buffer/AbstractByteBufAllocator:.directBuffer_[j] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/ScriptRuntime:.setObjectElem_[j];org/mozilla/javascript/ScriptRuntime:.indexFromString_[j] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];java/nio/channels/spi/AbstractInterruptibleChannel:.end_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_event_data_recv_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/MemberBox:.invoke_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ktime_get_real_[k];getnstimeofday_[k];xen_clocksource_get_cycles_[k];pvclock_clocksource_read_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_pick_tx_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.has_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];dev_hard_start_xmit_[k];loopback_xmit_[k];netif_rx_[k];netif_rx.part.82_[k];xen_restore_fl_direct_end_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.nameOrFunction_[j];org/mozilla/javascript/ScriptableObject$Slot:.getValue_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.get_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];skb_copy_datagram_iovec_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];rw_verify_area_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.findFunction_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders_[j];io/netty/handler/codec/http/HttpHeaders:.hash_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k];kmem_cache_alloc_node_[k] 1 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];rw_verify_area_[k];security_file_permission_[k];apparmor_file_permission_[k];common_file_perm_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1 -java;start_thread;java_start;GCTaskThread::run;StealTask::do_it;ParallelTaskTerminator::offer_termination 5 -java;start_thread;java_start;VMThread::run;VMThread::loop;VMThread::evaluate_operation;VM_Operation::evaluate;VM_ParallelGCFailedAllocation::doit;ParallelScavengeHeap::failed_mem_allocate;PSScavenge::invoke;PSScavenge::invoke_no_policy;StringTable::unlink_or_oops_do 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ktime_get_real_[k];xen_clocksource_get_cycles_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j]; 3 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.nameOrFunction_[j];org/mozilla/javascript/IdScriptableObject:.get_[j];org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];sock_aio_write_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_cleanup_rbuf_[k];__tcp_select_window_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_clean_rtx_queue_[k];tcp_valid_rtt_meas_[k];tcp_rtt_estimator_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/buffer/AbstractByteBufAllocator:.directBuffer_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];dma_issue_pending_all_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.has_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j] 1 -java;write;check_events_[k];hypercall_page_[k] 3 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];do_sync_read_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/AbstractReferenceCountedByteBuf:.release_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k];__phys_addr_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];ksize_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_cleanup_rbuf_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/WrapFactory:.wrap_[j];java/util/HashMap:.get_[j] 1 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.setAttributes_[j] 2 -java;start_thread;java_start;GCTaskThread::run;StealTask::do_it;SpinPause 7 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];vtable chunks_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.has_[j] 4 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_clean_rtx_queue_[k];bictcp_acked_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];fget_light_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];__tcp_push_pending_frames_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k];__kmalloc_node_track_caller_[k];arch_local_irq_save_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];__kfree_skb_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getObjectProp_[j] 2 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.nameOrFunction_[j];org/mozilla/javascript/ScriptableObject$Slot:.getValue_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/AbstractReferenceCountedByteBuf:.release_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];skb_copy_datagram_iovec_[k];copy_user_enhanced_fast_string_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 2 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_clean_rtx_queue_[k];__kfree_skb_[k];skb_release_data_[k];skb_release_data.part.45_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j] 1 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j] 3 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/mozilla/javascript/Context:.getWrapFactory_[j] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_send_mss_[k];tcp_current_mss_[k];ipv4_mtu_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.setAttributes_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.get_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];io/netty/util/internal/RecyclableArrayList:.newInstance_[j];io/netty/util/concurrent/FastThreadLocal:.get_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.has_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];io/netty/handler/codec/http/DefaultHttpHeaders:.set_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j] 1 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_clean_rtx_queue_[k];tcp_rtt_estimator_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];rcu_bh_qs_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.writerCleanup_[j] 1 java;read;check_events_[k];hypercall_page_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.get_[j] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];fsnotify_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];rw_verify_area_[k];apparmor_file_permission_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];fsnotify_[k];__srcu_read_lock_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/handler/codec/http/DefaultHttpHeaders:.set_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_finish_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];skb_dst_set_noref_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.name_[j];org/mozilla/javascript/ScriptRuntime:.nameOrFunction_[j];org/mozilla/javascript/IdScriptableObject:.get_[j];org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];skb_clone_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_hard_start_xmit_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/ScriptRuntime:.indexFromString_[j] 1 +java;write;check_events_[k];hypercall_page_[k] 3 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];io/netty/buffer/AbstractByteBuf:.writeBytes_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];rw_verify_area_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.has_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 2 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/TopLevel:.getBuiltinPrototype_[j] 2 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.name_[j];org/mozilla/javascript/IdScriptableObject:.get_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_send_mss_[k];tcp_xmit_size_goal_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j] 1 +java;start_thread;java_start;GCTaskThread::run;StealTask::do_it;PSPromotionManager::drain_stacks_depth;oopDesc* PSPromotionManager::copy_to_survivor_space;InstanceKlass::oop_push_contents 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders_[j];java/util/Arrays:.fill_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/handler/codec/http/DefaultHttpHeaders:.add0_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/MemberBox:.invoke_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.has_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 5 +java;start_thread;java_start;GCTaskThread::run;StealTask::do_it;SpinPause 7 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];jint_disjoint_arraycopy_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j] 3 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_output_[k] 2 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];io/netty/handler/codec/http/HttpObjectEncoder:.encode_[j];io/netty/buffer/AbstractByteBuf:.writeBytes_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/WrapFactory:.wrap_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_clean_rtx_queue_[k];tcp_valid_rtt_meas_[k];tcp_rtt_estimator_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k];kmem_cache_alloc_node_[k] 1 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptableObject:.getParentScope_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];__kfree_skb_[k];skb_release_head_state_[k];dst_release_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_clean_rtx_queue_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/buffer/AbstractByteBuf:.forEachByteAsc0_[j];io/netty/util/internal/AppendableCharSequence:.append_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j] 1 +java;start_thread;java_start;VMThread::run;VMThread::loop;VMThread::evaluate_operation;VM_Operation::evaluate;VM_ParallelGCFailedAllocation::doit;ParallelScavengeHeap::failed_mem_allocate;PSScavenge::invoke;PSScavenge::invoke_no_policy;StringTable::unlink_or_oops_do 2 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders_[j];io/netty/handler/codec/http/HttpHeaders:.hash_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders_[j];io/netty/handler/codec/http/HttpObjectDecoder:.splitHeader_[j] 5 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];netif_skb_features_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/buffer/AbstractReferenceCountedByteBuf:.release_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];fsnotify_[k] 1 +java;start_thread;java_start;GCTaskThread::run;ScavengeRootsTask::do_it;ClassLoaderDataGraph::oops_do;ClassLoaderData::oops_do;PSScavengeKlassClosure::do_klass 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.get_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ktime_get_real_[k];getnstimeofday_[k];xen_clocksource_get_cycles_[k];xen_clocksource_read_[k];pvclock_clocksource_read_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_finish_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j] 3 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.get_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.setAttributes_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpHeaders:.isTransferEncodingChunked_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];skb_copy_datagram_iovec_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.has_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;sys_read_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];io/netty/util/internal/RecyclableArrayList:.newInstance_[j];io/netty/util/concurrent/FastThreadLocal:.get_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];io/netty/handler/codec/http/HttpObjectEncoder:.encode_[j];io/netty/buffer/AbstractByteBufAllocator:.directBuffer_[j];io/netty/util/concurrent/FastThreadLocal:.get_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];dev_hard_start_xmit_[k];loopback_xmit_[k];netif_rx_[k];netif_rx.part.82_[k];xen_restore_fl_direct_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];dev_hard_start_xmit_[k];loopback_xmit_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaObject:.get_[j] 2 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_send_mss_[k];tcp_current_mss_[k];ipv4_mtu_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j] 1 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];skb_copy_datagram_iovec_[k];copy_user_enhanced_fast_string_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.has_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];__inet_lookup_established_[k] 3 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getObjectProp_[j] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders_[j];io/netty/buffer/AbstractByteBuf:.forEachByteAsc0_[j] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];sock_aio_write_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/ScriptRuntime:.name_[j];org/mozilla/javascript/ScriptRuntime:.nameOrFunction_[j];vtable chunks_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j] 2 +java;start_thread;java_start;GCTaskThread::run;StealTask::do_it;ParallelTaskTerminator::offer_termination 5 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];__kfree_skb_[k];skb_release_head_state_[k];dst_release_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getObjectProp_[j];org/mozilla/javascript/ScriptableObject$Slot:.getValue_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j] 1 diff --git a/tests/data/flamegraph/options/colordiffusion.svg b/tests/data/flamegraph/options/colordiffusion.svg index 420f32a8..d46ee30f 100644 --- a/tests/data/flamegraph/options/colordiffusion.svg +++ b/tests/data/flamegraph/options/colordiffusion.svg @@ -37,1808 +37,1823 @@ var truncate_text_right = false;]]> read (1 samples, 0.35%) - + check_events (1 samples, 0.35%) - + hypercall_page (1 samples, 0.35%) - + ScavengeRootsTask::do_it (1 samples, 0.35%) - - + + ClassLoaderDataGraph::oops_do (1 samples, 0.35%) - - + + ClassLoaderData::oops_do (1 samples, 0.35%) - - + + PSScavengeKlassClosure::do_klass (1 samples, 0.35%) - - + + PSPromotionManager::drain_stacks_depth (1 samples, 0.35%) - - + + oopDesc* PSPromotionManager::copy_to_survivor_space<false> (1 samples, 0.35%) - - + + InstanceKlass::oop_push_contents (1 samples, 0.35%) - - + + ParallelTaskTerminator::offer_termination (5 samples, 1.75%) - - + + - GCTaskThread::run (14 samples, 4.91%) - - GCTask.. + GCTaskThread::run (14 samples, 4.90%) + + GCTask.. - StealTask::do_it (13 samples, 4.56%) - - Steal.. + StealTask::do_it (13 samples, 4.55%) + + Steal.. - SpinPause (7 samples, 2.46%) - - Sp.. + SpinPause (7 samples, 2.45%) + + Sp.. io/netty/buffer/AbstractByteBufAllocator:.directBuffer (1 samples, 0.35%) - - + + io/netty/buffer/AbstractReferenceCountedByteBuf:.release (1 samples, 0.35%) - - + + io/netty/buffer/PooledByteBuf:.internalNioBuffer (1 samples, 0.35%) - - + + sun/nio/ch/NativeThread:.current (1 samples, 0.35%) - - + + (3 samples, 1.05%) - - + + Java_sun_nio_ch_FileDispatcherImpl_write0 (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + fget_light (1 samples, 0.35%) - - + + __srcu_read_lock (1 samples, 0.35%) - - + + __tcp_push_pending_frames (1 samples, 0.35%) - - + + ktime_get_real (1 samples, 0.35%) - - + + skb_clone (1 samples, 0.35%) - - + + tcp_set_skb_tso_segs (1 samples, 0.35%) - - + + dev_hard_start_xmit (1 samples, 0.35%) - - + + dev_pick_tx (1 samples, 0.35%) - - + + dev_queue_xmit_nit (1 samples, 0.35%) - - + + xen_restore_fl_direct (1 samples, 0.35%) - - + + dev_hard_start_xmit (4 samples, 1.40%) - - + + loopback_xmit (3 samples, 1.05%) - - + + netif_rx (2 samples, 0.70%) - - + + netif_rx.part.82 (2 samples, 0.70%) - - + + xen_restore_fl_direct_end (1 samples, 0.35%) - - + + dma_issue_pending_all (1 samples, 0.35%) - - + + __inet_lookup_established (3 samples, 1.05%) - - + + tcp_event_data_recv (1 samples, 0.35%) - - + + - sock_def_readable (19 samples, 6.67%) - - sock_def_.. + sock_def_readable (19 samples, 6.64%) + + sock_def_.. - __wake_up_sync_key (19 samples, 6.67%) - - __wake_up.. + __wake_up_sync_key (19 samples, 6.64%) + + __wake_up.. - check_events (19 samples, 6.67%) - - check_eve.. + check_events (19 samples, 6.64%) + + check_eve.. - hypercall_page (19 samples, 6.67%) - - hypercall.. + hypercall_page (19 samples, 6.64%) + + hypercall.. + + + __kfree_skb (1 samples, 0.35%) + + + + + skb_release_data (1 samples, 0.35%) + + + + + skb_release_data.part.45 (1 samples, 0.35%) + + bictcp_acked (1 samples, 0.35%) - - + + ktime_get_real (2 samples, 0.70%) - - + + getnstimeofday (2 samples, 0.70%) - - + + xen_clocksource_get_cycles (1 samples, 0.35%) - - + + xen_clocksource_read (1 samples, 0.35%) - - + + tcp_rtt_estimator (1 samples, 0.35%) - - + + - ip_local_deliver (34 samples, 11.93%) - - ip_local_deliver + ip_local_deliver (35 samples, 12.24%) + + ip_local_deliver - ip_local_deliver_finish (34 samples, 11.93%) - - ip_local_deliver_f.. + ip_local_deliver_finish (35 samples, 12.24%) + + ip_local_deliver_f.. - tcp_v4_rcv (33 samples, 11.58%) - - tcp_v4_rcv + tcp_v4_rcv (34 samples, 11.89%) + + tcp_v4_rcv - tcp_v4_do_rcv (29 samples, 10.18%) - - tcp_v4_do_rcv + tcp_v4_do_rcv (30 samples, 10.49%) + + tcp_v4_do_rcv - tcp_rcv_established (28 samples, 9.82%) - - tcp_rcv_establ.. + tcp_rcv_established (29 samples, 10.14%) + + tcp_rcv_establi.. - tcp_ack (9 samples, 3.16%) - - tcp.. + tcp_ack (10 samples, 3.50%) + + tcp.. - tcp_clean_rtx_queue (6 samples, 2.11%) - - t.. + tcp_clean_rtx_queue (7 samples, 2.45%) + + tc.. tcp_valid_rtt_meas (1 samples, 0.35%) - - + + tcp_rtt_estimator (1 samples, 0.35%) - - + + - __do_softirq (37 samples, 12.98%) - - __do_softirq + __do_softirq (38 samples, 13.29%) + + __do_softirq - net_rx_action (37 samples, 12.98%) - - net_rx_action + net_rx_action (38 samples, 13.29%) + + net_rx_action - process_backlog (36 samples, 12.63%) - - process_backlog + process_backlog (37 samples, 12.94%) + + process_backlog - __netif_receive_skb (36 samples, 12.63%) - - __netif_receive_skb + __netif_receive_skb (37 samples, 12.94%) + + __netif_receive_skb - ip_rcv (35 samples, 12.28%) - - ip_rcv + ip_rcv (36 samples, 12.59%) + + ip_rcv - ip_rcv_finish (35 samples, 12.28%) - - ip_rcv_finish + ip_rcv_finish (36 samples, 12.59%) + + ip_rcv_finish ip_local_deliver_finish (1 samples, 0.35%) - - + + - local_bh_enable (38 samples, 13.33%) - - local_bh_enable + local_bh_enable (39 samples, 13.64%) + + local_bh_enable - do_softirq (38 samples, 13.33%) - - do_softirq + do_softirq (39 samples, 13.64%) + + do_softirq - call_softirq (38 samples, 13.33%) - - call_softirq + call_softirq (39 samples, 13.64%) + + call_softirq rcu_bh_qs (1 samples, 0.35%) - - + + - ip_local_out (45 samples, 15.79%) - - ip_local_out + ip_local_out (46 samples, 16.08%) + + ip_local_out - ip_output (45 samples, 15.79%) - - ip_output + ip_output (46 samples, 16.08%) + + ip_output - ip_finish_output (45 samples, 15.79%) - - ip_finish_output + ip_finish_output (46 samples, 16.08%) + + ip_finish_output - dev_queue_xmit (43 samples, 15.09%) - - dev_queue_xmit + dev_queue_xmit (44 samples, 15.38%) + + dev_queue_xmit netif_skb_features (1 samples, 0.35%) - - + + - ip_queue_xmit (47 samples, 16.49%) - - ip_queue_xmit + ip_queue_xmit (48 samples, 16.78%) + + ip_queue_xmit ip_output (2 samples, 0.70%) - - + + pvclock_clocksource_read (1 samples, 0.35%) - - + + getnstimeofday (2 samples, 0.70%) - - + + xen_clocksource_get_cycles (2 samples, 0.70%) - - + + xen_clocksource_read (1 samples, 0.35%) - - + + pvclock_clocksource_read (1 samples, 0.35%) - - + + ktime_get_real (3 samples, 1.05%) - - + + xen_clocksource_get_cycles (1 samples, 0.35%) - - + + - __tcp_push_pending_frames (56 samples, 19.65%) - - __tcp_push_pending_frames + __tcp_push_pending_frames (57 samples, 19.93%) + + __tcp_push_pending_frames - tcp_write_xmit (56 samples, 19.65%) - - tcp_write_xmit + tcp_write_xmit (57 samples, 19.93%) + + tcp_write_xmit - tcp_transmit_skb (53 samples, 18.60%) - - tcp_transmit_skb + tcp_transmit_skb (54 samples, 18.88%) + + tcp_transmit_skb skb_dst_set_noref (1 samples, 0.35%) - - + + lock_sock_nested (1 samples, 0.35%) - - + + _raw_spin_lock_bh (1 samples, 0.35%) - - + + local_bh_disable (1 samples, 0.35%) - - + + __kmalloc_node_track_caller (2 samples, 0.70%) - - + + arch_local_irq_save (1 samples, 0.35%) - - + + __phys_addr (1 samples, 0.35%) - - + + get_slab (2 samples, 0.70%) - - + + - __alloc_skb (7 samples, 2.46%) - - __.. + __alloc_skb (7 samples, 2.45%) + + __.. kmem_cache_alloc_node (1 samples, 0.35%) - - + + - sk_stream_alloc_skb (8 samples, 2.81%) - - sk.. + sk_stream_alloc_skb (8 samples, 2.80%) + + sk.. ksize (1 samples, 0.35%) - - + + ipv4_mtu (1 samples, 0.35%) - - + + tcp_current_mss (2 samples, 0.70%) - - + + tcp_established_options (1 samples, 0.35%) - - + + tcp_send_mss (3 samples, 1.05%) - - + + tcp_xmit_size_goal (1 samples, 0.35%) - - + + - do_sync_write (72 samples, 25.26%) - - do_sync_write + do_sync_write (73 samples, 25.52%) + + do_sync_write - sock_aio_write (72 samples, 25.26%) - - sock_aio_write + sock_aio_write (73 samples, 25.52%) + + sock_aio_write - do_sock_write.isra.10 (72 samples, 25.26%) - - do_sock_write.isra.10 + do_sock_write.isra.10 (73 samples, 25.52%) + + do_sock_write.isra.10 - inet_sendmsg (72 samples, 25.26%) - - inet_sendmsg + inet_sendmsg (73 samples, 25.52%) + + inet_sendmsg - tcp_sendmsg (71 samples, 24.91%) - - tcp_sendmsg + tcp_sendmsg (72 samples, 25.17%) + + tcp_sendmsg tcp_xmit_size_goal (1 samples, 0.35%) - - + + fsnotify (2 samples, 0.70%) - - + + __srcu_read_lock (1 samples, 0.35%) - - + + apparmor_file_permission (1 samples, 0.35%) - - + + rw_verify_area (3 samples, 1.05%) - - + + security_file_permission (1 samples, 0.35%) - - + + apparmor_file_permission (1 samples, 0.35%) - - + + common_file_perm (1 samples, 0.35%) - - + + - sun/nio/ch/FileDispatcherImpl:.write0 (87 samples, 30.53%) - - sun/nio/ch/FileDispatcherImpl:.write0 + sun/nio/ch/FileDispatcherImpl:.write0 (88 samples, 30.77%) + + sun/nio/ch/FileDispatcherImpl:.write0 - write (82 samples, 28.77%) - - write + write (83 samples, 29.02%) + + write - system_call_fastpath (80 samples, 28.07%) - - system_call_fastpath + system_call_fastpath (81 samples, 28.32%) + + system_call_fastpath - sys_write (80 samples, 28.07%) - - sys_write + sys_write (81 samples, 28.32%) + + sys_write - vfs_write (79 samples, 27.72%) - - vfs_write + vfs_write (80 samples, 27.97%) + + vfs_write sock_aio_write (1 samples, 0.35%) - - + + - sun/nio/ch/SocketChannelImpl:.write (88 samples, 30.88%) - - sun/nio/ch/SocketChannelImpl:.write + sun/nio/ch/SocketChannelImpl:.write (89 samples, 31.12%) + + sun/nio/ch/SocketChannelImpl:.write sun/nio/ch/SocketChannelImpl:.writerCleanup (1 samples, 0.35%) - - + + - io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (91 samples, 31.93%) - - io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (92 samples, 32.17%) + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes sun/nio/ch/SocketChannelImpl:.writerCleanup (1 samples, 0.35%) - - + + - io/netty/channel/AbstractChannelHandlerContext:.flush (95 samples, 33.33%) - - io/netty/channel/AbstractChannelHandlerContext:.flush + io/netty/channel/AbstractChannelHandlerContext:.flush (96 samples, 33.57%) + + io/netty/channel/AbstractChannelHandlerContext:.flush - io/netty/channel/ChannelDuplexHandler:.flush (95 samples, 33.33%) - - io/netty/channel/ChannelDuplexHandler:.flush + io/netty/channel/ChannelDuplexHandler:.flush (96 samples, 33.57%) + + io/netty/channel/ChannelDuplexHandler:.flush - io/netty/channel/AbstractChannelHandlerContext:.flush (95 samples, 33.33%) - - io/netty/channel/AbstractChannelHandlerContext:.flush + io/netty/channel/AbstractChannelHandlerContext:.flush (96 samples, 33.57%) + + io/netty/channel/AbstractChannelHandlerContext:.flush - io/netty/channel/ChannelOutboundHandlerAdapter:.flush (95 samples, 33.33%) - - io/netty/channel/ChannelOutboundHandlerAdapter:.flush + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (96 samples, 33.57%) + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush - io/netty/channel/AbstractChannelHandlerContext:.flush (95 samples, 33.33%) - - io/netty/channel/AbstractChannelHandlerContext:.flush + io/netty/channel/AbstractChannelHandlerContext:.flush (96 samples, 33.57%) + + io/netty/channel/AbstractChannelHandlerContext:.flush - io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (95 samples, 33.33%) - - io/netty/channel/DefaultChannelPipeline$HeadContext:.f.. + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (96 samples, 33.57%) + + io/netty/channel/DefaultChannelPipeline$HeadContext:.f.. - io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (95 samples, 33.33%) - - io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (96 samples, 33.57%) + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 - io/netty/channel/nio/AbstractNioByteChannel:.doWrite (95 samples, 33.33%) - - io/netty/channel/nio/AbstractNioByteChannel:.doWrite + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (96 samples, 33.57%) + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite io/netty/util/Recycler:.recycle (1 samples, 0.35%) - - + + - io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (97 samples, 34.04%) - - io/netty/channel/AbstractChannelHandlerContext:.fireCha.. + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (98 samples, 34.27%) + + io/netty/channel/AbstractChannelHandlerContext:.fireChan.. - org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (97 samples, 34.04%) - - org/vertx/java/core/net/impl/VertxHandler:.channelReadC.. + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (98 samples, 34.27%) + + org/vertx/java/core/net/impl/VertxHandler:.channelReadCo.. io/netty/channel/ChannelDuplexHandler:.flush (2 samples, 0.70%) - - + + - io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (98 samples, 34.39%) - - io/netty/channel/AbstractChannelHandlerContext:.fireChan.. + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (99 samples, 34.62%) + + io/netty/channel/AbstractChannelHandlerContext:.fireChan.. - io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (98 samples, 34.39%) - - io/netty/handler/codec/ByteToMessageDecoder:.channelRead.. + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (99 samples, 34.62%) + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead.. org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/buffer/AbstractReferenceCountedByteBuf:.release (1 samples, 0.35%) - - + + java/util/concurrent/ConcurrentHashMap:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/Context:.getWrapFactory (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptableObject:.getParentScope (1 samples, 0.35%) - - + + org/mozilla/javascript/WrapFactory:.wrapAsJavaObject (2 samples, 0.70%) - - + + java/util/HashMap:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/WrapFactory:.wrap (1 samples, 0.35%) - - + + java/util/HashMap:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.getObjectProp (4 samples, 1.40%) - - + + vtable chunks (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.nameOrFunction (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject$Slot:.getValue (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.name (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.has (3 samples, 1.05%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (2 samples, 0.70%) - - + + org/mozilla/javascript/IdScriptableObject:.put (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.setAttributes (1 samples, 0.35%) - - + + org/mozilla/javascript/MemberBox:.invoke (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaMethod:.call (2 samples, 0.70%) - - + + org/mozilla/javascript/WrapFactory:.wrap (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaMethod:.findFunction (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaObject:.get (2 samples, 0.70%) - - + + org/mozilla/javascript/IdScriptableObject:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.put (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptableObject:.createSlot (2 samples, 0.70%) - - + + org/mozilla/javascript/IdScriptableObject:.setAttributes (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.createFunctionActivation (5 samples, 1.75%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.getObjectProp (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject$Slot:.getValue (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaObject:.get (1 samples, 0.35%) - - + + java/util/HashMap:.get (1 samples, 0.35%) - - + + jint_disjoint_arraycopy (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.get (2 samples, 0.70%) - - + + org/mozilla/javascript/IdScriptableObject:.has (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.put (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptableObject:.createSlot (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptRuntime:.createFunctionActivation (5 samples, 1.75%) - - + + org/mozilla/javascript/IdScriptableObject:.setAttributes (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptRuntime:.getObjectProp (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.nameOrFunction (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.put (4 samples, 1.40%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (3 samples, 1.05%) - - + + org/mozilla/javascript/ScriptableObject:.createSlot (3 samples, 1.05%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.35%) - - + + - org/mozilla/javascript/ScriptRuntime:.setObjectProp (7 samples, 2.46%) - - or.. + org/mozilla/javascript/ScriptRuntime:.setObjectProp (7 samples, 2.45%) + + or.. vtable chunks (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeFunction:.initScriptFunction (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.createFunctionActivation (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.createFunctionActivation (2 samples, 0.70%) - - + + org/mozilla/javascript/IdScriptableObject:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.has (1 samples, 0.35%) - - + + - org/mozilla/javascript/ScriptRuntime:.setObjectProp (8 samples, 2.81%) - - or.. + org/mozilla/javascript/ScriptRuntime:.setObjectProp (8 samples, 2.80%) + + or.. - org/mozilla/javascript/IdScriptableObject:.put (7 samples, 2.46%) - - or.. + org/mozilla/javascript/IdScriptableObject:.put (7 samples, 2.45%) + + or.. - org/mozilla/javascript/ScriptableObject:.getSlot (6 samples, 2.11%) - - o.. + org/mozilla/javascript/ScriptableObject:.getSlot (6 samples, 2.10%) + + o.. - org/mozilla/javascript/ScriptableObject:.createSlot (6 samples, 2.11%) - - o.. + org/mozilla/javascript/ScriptableObject:.createSlot (6 samples, 2.10%) + + o.. - org/mozilla/javascript/ScriptRuntime:.newObject (32 samples, 11.23%) - - org/mozilla/javas.. + org/mozilla/javascript/ScriptRuntime:.newObject (32 samples, 11.19%) + + org/mozilla/java.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (32 samples, 11.23%) - - org/mozilla/javas.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (32 samples, 11.19%) + + org/mozilla/java.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (32 samples, 11.23%) - - org/mozilla/javas.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (32 samples, 11.19%) + + org/mozilla/java.. - org/mozilla/javascript/optimizer/OptRuntime:.call2 (13 samples, 4.56%) - - org/m.. + org/mozilla/javascript/optimizer/OptRuntime:.call2 (13 samples, 4.55%) + + org/m.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (11 samples, 3.86%) - - org/.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (11 samples, 3.85%) + + org/.. org/mozilla/javascript/ScriptableObject:.getParentScope (1 samples, 0.35%) - - + + - org/mozilla/javascript/IdScriptableObject:.has (9 samples, 3.16%) - - org.. + org/mozilla/javascript/IdScriptableObject:.has (9 samples, 3.15%) + + org.. org/mozilla/javascript/ScriptableObject:.getSlot (5 samples, 1.75%) - - + + - org/mozilla/javascript/ScriptRuntime:.setObjectProp (17 samples, 5.96%) - - org/mozi.. + org/mozilla/javascript/ScriptRuntime:.setObjectProp (17 samples, 5.94%) + + org/mozi.. - org/mozilla/javascript/IdScriptableObject:.put (8 samples, 2.81%) - - or.. + org/mozilla/javascript/IdScriptableObject:.put (8 samples, 2.80%) + + or.. - org/mozilla/javascript/ScriptableObject:.getSlot (7 samples, 2.46%) - - or.. + org/mozilla/javascript/ScriptableObject:.getSlot (7 samples, 2.45%) + + or.. - org/mozilla/javascript/ScriptableObject:.createSlot (6 samples, 2.11%) - - o.. + org/mozilla/javascript/ScriptableObject:.createSlot (6 samples, 2.10%) + + o.. org/mozilla/javascript/ScriptableObject:.getPrototype (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject:.getParentScope (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (3 samples, 1.05%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (3 samples, 1.05%) - - + + org/mozilla/javascript/TopLevel:.getBuiltinPrototype (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptRuntime:.name (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.nameOrFunction (1 samples, 0.35%) - - + + vtable chunks (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.setObjectProp (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.has (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.setAttributes (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptRuntime:.createFunctionActivation (5 samples, 1.75%) - - + + org/mozilla/javascript/TopLevel:.getBuiltinPrototype (2 samples, 0.70%) - - + + - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (82 samples, 28.77%) - - org/mozilla/javascript/gen/file__home_bgregg_t.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (82 samples, 28.67%) + + org/mozilla/javascript/gen/file__home_bgregg_t.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (81 samples, 28.42%) - - org/mozilla/javascript/gen/file__home_bgregg_t.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (81 samples, 28.32%) + + org/mozilla/javascript/gen/file__home_bgregg_t.. - org/mozilla/javascript/optimizer/OptRuntime:.call2 (9 samples, 3.16%) - - org.. + org/mozilla/javascript/optimizer/OptRuntime:.call2 (9 samples, 3.15%) + + org.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (6 samples, 2.11%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (6 samples, 2.10%) + + o.. org/mozilla/javascript/ScriptRuntime:.setObjectProp (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.put (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject:.createSlot (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.indexFromString (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.setObjectElem (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptRuntime:.indexFromString (2 samples, 0.70%) - - + + io/netty/handler/codec/http/DefaultHttpHeaders:.set (1 samples, 0.35%) - - + + io/netty/buffer/AbstractByteBuf:.writeBytes (1 samples, 0.35%) - - + + io/netty/buffer/AbstractByteBuf:.writeBytes (1 samples, 0.35%) - - + + io/netty/buffer/AbstractByteBufAllocator:.directBuffer (3 samples, 1.05%) - - + + io/netty/util/concurrent/FastThreadLocal:.get (1 samples, 0.35%) - - + + io/netty/handler/codec/http/HttpObjectEncoder:.encode (5 samples, 1.75%) - - + + java/util/ArrayList:.add (1 samples, 0.35%) - - + + io/netty/util/internal/RecyclableArrayList:.newInstance (1 samples, 0.35%) - - + + io/netty/util/concurrent/FastThreadLocal:.get (1 samples, 0.35%) - - + + java/util/ArrayList:.ensureExplicitCapacity (1 samples, 0.35%) - - + + - io/netty/channel/AbstractChannelHandlerContext:.write (12 samples, 4.21%) - - io/ne.. + io/netty/channel/AbstractChannelHandlerContext:.write (12 samples, 4.20%) + + io/ne.. - org/vertx/java/core/http/impl/VertxHttpHandler:.write (11 samples, 3.86%) - - org/.. + org/vertx/java/core/http/impl/VertxHttpHandler:.write (11 samples, 3.85%) + + org/.. - io/netty/channel/AbstractChannelHandlerContext:.write (10 samples, 3.51%) - - io/.. + io/netty/channel/AbstractChannelHandlerContext:.write (10 samples, 3.50%) + + io/.. - io/netty/handler/codec/MessageToMessageEncoder:.write (10 samples, 3.51%) - - io/.. + io/netty/handler/codec/MessageToMessageEncoder:.write (10 samples, 3.50%) + + io/.. vtable chunks (1 samples, 0.35%) - - + + - io/netty/channel/AbstractChannelHandlerContext:.write (13 samples, 4.56%) - - io/ne.. + io/netty/channel/AbstractChannelHandlerContext:.write (13 samples, 4.55%) + + io/ne.. org/vertx/java/core/http/impl/VertxHttpHandler:.write (1 samples, 0.35%) - - + + io/netty/handler/codec/http/DefaultHttpHeaders:.add0 (1 samples, 0.35%) - - + + io/netty/handler/codec/http/DefaultHttpHeaders:.set (1 samples, 0.35%) - - + + - org/mozilla/javascript/NativeJavaMethod:.call (21 samples, 7.37%) - - org/mozill.. + org/mozilla/javascript/NativeJavaMethod:.call (21 samples, 7.34%) + + org/mozill.. - org/mozilla/javascript/MemberBox:.invoke (21 samples, 7.37%) - - org/mozill.. + org/mozilla/javascript/MemberBox:.invoke (21 samples, 7.34%) + + org/mozill.. - sun/reflect/DelegatingMethodAccessorImpl:.invoke (19 samples, 6.67%) - - sun/refle.. + sun/reflect/DelegatingMethodAccessorImpl:.invoke (19 samples, 6.64%) + + sun/refle.. sun/nio/cs/UTF_8$Encoder:.<init> (1 samples, 0.35%) - - + + jbyte_disjoint_arraycopy (1 samples, 0.35%) - - + + - io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (128 samples, 44.91%) - - io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (128 samples, 44.76%) + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead - org/vertx/java/core/net/impl/VertxHandler:.channelRead (128 samples, 44.91%) - - org/vertx/java/core/net/impl/VertxHandler:.channelRead + org/vertx/java/core/net/impl/VertxHandler:.channelRead (128 samples, 44.76%) + + org/vertx/java/core/net/impl/VertxHandler:.channelRead - org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (124 samples, 43.51%) - - org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessag.. + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (124 samples, 43.36%) + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessag.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (117 samples, 41.05%) - - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (117 samples, 40.91%) + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (116 samples, 40.70%) - - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (116 samples, 40.56%) + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call (27 samples, 9.47%) - - org/mozilla/ja.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call (27 samples, 9.44%) + + org/mozilla/ja.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (24 samples, 8.42%) - - org/mozilla/.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (24 samples, 8.39%) + + org/mozilla/.. org/mozilla/javascript/ScriptRuntime:.name (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.nameOrFunction (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue (1 samples, 0.35%) - - + + io/netty/buffer/AbstractByteBuf:.forEachByteAsc0 (1 samples, 0.35%) - - + + io/netty/util/internal/AppendableCharSequence:.append (1 samples, 0.35%) - - + + io/netty/handler/codec/http/HttpHeaders:.isTransferEncodingChunked (1 samples, 0.35%) - - + + io/netty/handler/codec/http/HttpObjectDecoder:.findWhitespace (1 samples, 0.35%) - - + + io/netty/buffer/AbstractByteBuf:.forEachByteAsc0 (2 samples, 0.70%) - - + + io/netty/handler/codec/http/HttpHeaders:.hash (1 samples, 0.35%) - - + + io/netty/handler/codec/http/HttpObjectDecoder:.splitHeader (5 samples, 1.75%) - - + + - io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (143 samples, 50.18%) - - io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (143 samples, 50.00%) + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead - io/netty/handler/codec/ByteToMessageDecoder:.channelRead (143 samples, 50.18%) - - io/netty/handler/codec/ByteToMessageDecoder:.channelRead + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (143 samples, 50.00%) + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead - io/netty/handler/codec/http/HttpObjectDecoder:.decode (13 samples, 4.56%) - - io/ne.. + io/netty/handler/codec/http/HttpObjectDecoder:.decode (13 samples, 4.55%) + + io/ne.. - io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders (10 samples, 3.51%) - - io/.. + io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders (10 samples, 3.50%) + + io/.. java/util/Arrays:.fill (1 samples, 0.35%) - - + + java/nio/channels/spi/AbstractInterruptibleChannel:.end (1 samples, 0.35%) - - + + sys_read (1 samples, 0.35%) - - + + do_sync_read (1 samples, 0.35%) - - + + __kfree_skb (1 samples, 0.35%) - - + + tcp_rcv_space_adjust (1 samples, 0.35%) - - + + skb_release_data (1 samples, 0.35%) - - + + __kfree_skb (2 samples, 0.70%) - - + + skb_release_head_state (1 samples, 0.35%) - - + + dst_release (1 samples, 0.35%) - - + + _raw_spin_lock_bh (1 samples, 0.35%) - - + + skb_copy_datagram_iovec (2 samples, 0.70%) - - + + copy_user_enhanced_fast_string (1 samples, 0.35%) - - + + - do_sync_read (9 samples, 3.16%) - - do_.. + do_sync_read (9 samples, 3.15%) + + do_.. - sock_aio_read (9 samples, 3.16%) - - soc.. + sock_aio_read (9 samples, 3.15%) + + soc.. - sock_aio_read.part.13 (9 samples, 3.16%) - - soc.. + sock_aio_read.part.13 (9 samples, 3.15%) + + soc.. - do_sock_read.isra.12 (9 samples, 3.16%) - - do_.. + do_sock_read.isra.12 (9 samples, 3.15%) + + do_.. - inet_recvmsg (9 samples, 3.16%) - - ine.. + inet_recvmsg (9 samples, 3.15%) + + ine.. - tcp_recvmsg (7 samples, 2.46%) - - tc.. + tcp_recvmsg (7 samples, 2.45%) + + tc.. tcp_cleanup_rbuf (2 samples, 0.70%) - - + + __tcp_select_window (1 samples, 0.35%) - - + + - io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes (16 samples, 5.61%) - - io/nett.. + io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes (16 samples, 5.59%) + + io/nett.. - sun/nio/ch/SocketChannelImpl:.read (16 samples, 5.61%) - - sun/nio.. + sun/nio/ch/SocketChannelImpl:.read (16 samples, 5.59%) + + sun/nio.. - sun/nio/ch/FileDispatcherImpl:.read0 (15 samples, 5.26%) - - sun/ni.. + sun/nio/ch/FileDispatcherImpl:.read0 (15 samples, 5.24%) + + sun/ni.. - read (15 samples, 5.26%) - - read + read (15 samples, 5.24%) + + read - system_call_fastpath (12 samples, 4.21%) - - syste.. + system_call_fastpath (12 samples, 4.20%) + + syste.. - sys_read (12 samples, 4.21%) - - sys_r.. + sys_read (12 samples, 4.20%) + + sys_r.. - vfs_read (10 samples, 3.51%) - - vfs.. + vfs_read (10 samples, 3.50%) + + vfs.. rw_verify_area (1 samples, 0.35%) - - + + - io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (260 samples, 91.23%) - - io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (261 samples, 91.26%) + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + - JavaThread::run (263 samples, 92.28%) - - JavaThread::run + JavaThread::run (264 samples, 92.31%) + + JavaThread::run - JavaThread::thread_main_inner (263 samples, 92.28%) - - JavaThread::thread_main_inner + JavaThread::thread_main_inner (264 samples, 92.31%) + + JavaThread::thread_main_inner - thread_entry (263 samples, 92.28%) - - thread_entry + thread_entry (264 samples, 92.31%) + + thread_entry - JavaCalls::call_virtual (263 samples, 92.28%) - - JavaCalls::call_virtual + JavaCalls::call_virtual (264 samples, 92.31%) + + JavaCalls::call_virtual - JavaCalls::call_virtual (263 samples, 92.28%) - - JavaCalls::call_virtual + JavaCalls::call_virtual (264 samples, 92.31%) + + JavaCalls::call_virtual - JavaCalls::call_helper (263 samples, 92.28%) - - JavaCalls::call_helper + JavaCalls::call_helper (264 samples, 92.31%) + + JavaCalls::call_helper - call_stub (263 samples, 92.28%) - - call_stub + call_stub (264 samples, 92.31%) + + call_stub - Interpreter (263 samples, 92.28%) - - Interpreter + Interpreter (264 samples, 92.31%) + + Interpreter - Interpreter (263 samples, 92.28%) - - Interpreter + Interpreter (264 samples, 92.31%) + + Interpreter - io/netty/channel/nio/NioEventLoop:.run (263 samples, 92.28%) - - io/netty/channel/nio/NioEventLoop:.run + io/netty/channel/nio/NioEventLoop:.run (264 samples, 92.31%) + + io/netty/channel/nio/NioEventLoop:.run - io/netty/channel/nio/NioEventLoop:.processSelectedKeys (262 samples, 91.93%) - - io/netty/channel/nio/NioEventLoop:.processSelectedKeys + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (263 samples, 91.96%) + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys - io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (262 samples, 91.93%) - - io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (263 samples, 91.96%) + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized - io/netty/channel/nio/NioEventLoop:.processSelectedKey (261 samples, 91.58%) - - io/netty/channel/nio/NioEventLoop:.processSelectedKey + io/netty/channel/nio/NioEventLoop:.processSelectedKey (262 samples, 91.61%) + + io/netty/channel/nio/NioEventLoop:.processSelectedKey io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes (1 samples, 0.35%) - - + + PSIsAliveClosure::do_object_b (1 samples, 0.35%) - - + + StringTable::unlink_or_oops_do (2 samples, 0.70%) - - + + - start_thread (281 samples, 98.60%) - - start_thread + start_thread (282 samples, 98.60%) + + start_thread - java_start (281 samples, 98.60%) - - java_start + java_start (282 samples, 98.60%) + + java_start VMThread::run (4 samples, 1.40%) - - + + VMThread::loop (4 samples, 1.40%) - - + + VMThread::evaluate_operation (4 samples, 1.40%) - - + + VM_Operation::evaluate (4 samples, 1.40%) - - + + VM_ParallelGCFailedAllocation::doit (4 samples, 1.40%) - - + + ParallelScavengeHeap::failed_mem_allocate (4 samples, 1.40%) - - + + PSScavenge::invoke (4 samples, 1.40%) - - + + PSScavenge::invoke_no_policy (4 samples, 1.40%) - - + + pthread_cond_signal@@GLIBC_2.3.2 (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + sys_futex (1 samples, 0.35%) - - + + do_futex (1 samples, 0.35%) - - + + futex_wake_op (1 samples, 0.35%) - - + + - all (285 samples, 100%) + all (286 samples, 100%) - java (285 samples, 100.00%) + java (286 samples, 100.00%) java write (3 samples, 1.05%) - - + + check_events (3 samples, 1.05%) - - + + hypercall_page (3 samples, 1.05%) - - + + \ No newline at end of file diff --git a/tests/data/flamegraph/options/truncate-right.svg b/tests/data/flamegraph/options/truncate-right.svg index 1ae70499..d814cbd2 100644 --- a/tests/data/flamegraph/options/truncate-right.svg +++ b/tests/data/flamegraph/options/truncate-right.svg @@ -36,1374 +36,1419 @@ var truncate_text_right = true;]]> - call_function_single_interrupt (4 samples, 8.89%) - - call_function.. + [[vdso]] (1 samples, 2.17%) + + [.. - smp_call_function_single_interrupt (4 samples, 8.89%) - - smp_call_func.. + __epoll_wait_nocancel (1 samples, 2.17%) + + _.. - generic_smp_call_function_single_interrupt (4 samples, 8.89%) - - generic_smp_c.. + system_call_fastpath (1 samples, 2.17%) + + s.. - remote_function (4 samples, 8.89%) - - remote_functi.. + sys_epoll_wait (1 samples, 2.17%) + + s.. - __perf_event_enable (4 samples, 8.89%) - - __perf_event_.. + ep_poll (1 samples, 2.17%) + + e.. - group_sched_in (4 samples, 8.89%) - - group_sched_in + schedule_hrtimeout_range (1 samples, 2.17%) + + s.. - x86_pmu_commit_txn (4 samples, 8.89%) - - x86_pmu_commi.. + schedule_hrtimeout_range_clock (1 samples, 2.17%) + + s.. - perf_pmu_enable (4 samples, 8.89%) - - perf_pmu_enab.. + schedule (1 samples, 2.17%) + + s.. - x86_pmu_enable (4 samples, 8.89%) - - x86_pmu_enable + __schedule (1 samples, 2.17%) + + _.. - intel_pmu_enable_all (4 samples, 8.89%) - - intel_pmu_ena.. + call_function_single_interrupt (4 samples, 8.70%) + + call_functio.. - native_write_msr_safe (4 samples, 8.89%) - - native_write_.. + smp_call_function_single_interrupt (4 samples, 8.70%) + + smp_call_fun.. - __tcp_push_pending_frames (1 samples, 2.22%) - - _.. + generic_smp_call_function_single_interrupt (4 samples, 8.70%) + + generic_smp_.. - tcp_write_xmit (1 samples, 2.22%) - - t.. + remote_function (4 samples, 8.70%) + + remote_funct.. - tcp_transmit_skb (1 samples, 2.22%) - - t.. + __perf_event_enable (4 samples, 8.70%) + + __perf_event.. - ip_queue_xmit (1 samples, 2.22%) - - i.. + group_sched_in (4 samples, 8.70%) + + group_sched_.. - ip_local_out (1 samples, 2.22%) - - i.. + x86_pmu_commit_txn (4 samples, 8.70%) + + x86_pmu_comm.. - ip_output (1 samples, 2.22%) - - i.. + perf_pmu_enable (4 samples, 8.70%) + + perf_pmu_ena.. - ip_finish_output (1 samples, 2.22%) - - i.. + x86_pmu_enable (4 samples, 8.70%) + + x86_pmu_enab.. - local_bh_enable (1 samples, 2.22%) - - l.. + intel_pmu_enable_all (4 samples, 8.70%) + + intel_pmu_en.. - do_softirq (1 samples, 2.22%) - - d.. + native_write_msr_safe (4 samples, 8.70%) + + native_write.. - do_softirq_own_stack (1 samples, 2.22%) - - d.. + __tcp_push_pending_frames (1 samples, 2.17%) + + _.. - __do_softirq (1 samples, 2.22%) - - _.. + tcp_write_xmit (1 samples, 2.17%) + + t.. - net_rx_action (1 samples, 2.22%) - - n.. + tcp_transmit_skb (1 samples, 2.17%) + + t.. - process_backlog (1 samples, 2.22%) - - p.. + ip_queue_xmit (1 samples, 2.17%) + + i.. - __netif_receive_skb (1 samples, 2.22%) - - _.. + ip_local_out (1 samples, 2.17%) + + i.. - __netif_receive_skb_core (1 samples, 2.22%) - - _.. + ip_output (1 samples, 2.17%) + + i.. - ip_rcv (1 samples, 2.22%) - - i.. + ip_finish_output (1 samples, 2.17%) + + i.. - ip_rcv_finish (1 samples, 2.22%) - - i.. + local_bh_enable (1 samples, 2.17%) + + l.. - ip_local_deliver (1 samples, 2.22%) - - i.. + do_softirq (1 samples, 2.17%) + + d.. - ip_local_deliver_finish (1 samples, 2.22%) - - i.. + do_softirq_own_stack (1 samples, 2.17%) + + d.. - tcp_v4_rcv (1 samples, 2.22%) - - t.. + __do_softirq (1 samples, 2.17%) + + _.. - tcp_v4_do_rcv (1 samples, 2.22%) - - t.. + net_rx_action (1 samples, 2.17%) + + n.. - tcp_rcv_established (1 samples, 2.22%) - - t.. + process_backlog (1 samples, 2.17%) + + p.. - tcp_ack (1 samples, 2.22%) - - t.. + __netif_receive_skb (1 samples, 2.17%) + + _.. - tcp_clean_rtx_queue (1 samples, 2.22%) - - t.. + __netif_receive_skb_core (1 samples, 2.17%) + + _.. - __kfree_skb (1 samples, 2.22%) - - _.. + ip_rcv (1 samples, 2.17%) + + i.. - sk_stream_alloc_skb (1 samples, 2.22%) - - s.. + ip_rcv_finish (1 samples, 2.17%) + + i.. - __alloc_skb (1 samples, 2.22%) - - _.. + ip_local_deliver (1 samples, 2.17%) + + i.. - __kmalloc_reserve.isra.26 (1 samples, 2.22%) - - _.. + ip_local_deliver_finish (1 samples, 2.17%) + + i.. - ab (7 samples, 15.56%) - + tcp_v4_rcv (1 samples, 2.17%) + + t.. + + + tcp_v4_do_rcv (1 samples, 2.17%) + + t.. + + + tcp_rcv_established (1 samples, 2.17%) + + t.. + + + tcp_ack (1 samples, 2.17%) + + t.. + + + tcp_clean_rtx_queue (1 samples, 2.17%) + + t.. + + + __kfree_skb (1 samples, 2.17%) + + _.. + + + sk_stream_alloc_skb (1 samples, 2.17%) + + s.. + + + __alloc_skb (1 samples, 2.17%) + + _.. + + + __kmalloc_reserve.isra.26 (1 samples, 2.17%) + + _.. + + + ab (8 samples, 17.39%) + ab - [unknown] (7 samples, 15.56%) - + [unknown] (8 samples, 17.39%) + [unknown] - __write_nocancel (7 samples, 15.56%) - - __write_nocancel + __write_nocancel (7 samples, 15.22%) + + __write_nocancel - system_call_fastpath (7 samples, 15.56%) - - system_call_fastpath + system_call_fastpath (7 samples, 15.22%) + + system_call_fastpath - sys_write (7 samples, 15.56%) - - sys_write + sys_write (7 samples, 15.22%) + + sys_write - vfs_write (7 samples, 15.56%) - - vfs_write + vfs_write (7 samples, 15.22%) + + vfs_write - do_sync_write (7 samples, 15.56%) - - do_sync_write + do_sync_write (7 samples, 15.22%) + + do_sync_write - sock_aio_write (7 samples, 15.56%) - - sock_aio_write + sock_aio_write (7 samples, 15.22%) + + sock_aio_write - inet_sendmsg (7 samples, 15.56%) - - inet_sendmsg + inet_sendmsg (7 samples, 15.22%) + + inet_sendmsg - tcp_sendmsg (3 samples, 6.67%) - - tcp_sendm.. + tcp_sendmsg (3 samples, 6.52%) + + tcp_sendm.. - tcp_send_mss (1 samples, 2.22%) - - t.. + tcp_send_mss (1 samples, 2.17%) + + t.. - tcp_current_mss (1 samples, 2.22%) - - t.. + tcp_current_mss (1 samples, 2.17%) + + t.. - tcp_v4_md5_lookup (1 samples, 2.22%) - - t.. + tcp_v4_md5_lookup (1 samples, 2.17%) + + t.. - io/netty/buffer/AbstractByteBuf:.writeBytes (2 samples, 4.44%) - - io/ne.. + io/netty/buffer/AbstractByteBuf:.writeBytes (2 samples, 4.35%) + + io/ne.. - sun/nio/ch/SocketChannelImpl:.read (2 samples, 4.44%) - - sun/n.. + sun/nio/ch/SocketChannelImpl:.read (2 samples, 4.35%) + + sun/n.. - java/lang/Thread:.blockedOn (1 samples, 2.22%) - - j.. + java/lang/Thread:.blockedOn (1 samples, 2.17%) + + j.. - pthread_self (1 samples, 2.22%) - - p.. + pthread_self (1 samples, 2.17%) + + p.. - ip_queue_xmit (1 samples, 2.22%) - - i.. + ip_queue_xmit (1 samples, 2.17%) + + i.. - ip_local_out (1 samples, 2.22%) - - i.. + ip_local_out (1 samples, 2.17%) + + i.. - ip_output (1 samples, 2.22%) - - i.. + ip_output (1 samples, 2.17%) + + i.. - ip_finish_output (1 samples, 2.22%) - - i.. + ip_finish_output (1 samples, 2.17%) + + i.. - local_bh_enable (1 samples, 2.22%) - - l.. + local_bh_enable (1 samples, 2.17%) + + l.. - do_softirq (1 samples, 2.22%) - - d.. + do_softirq (1 samples, 2.17%) + + d.. - do_softirq_own_stack (1 samples, 2.22%) - - d.. + do_softirq_own_stack (1 samples, 2.17%) + + d.. - __do_softirq (1 samples, 2.22%) - - _.. + __do_softirq (1 samples, 2.17%) + + _.. - net_rx_action (1 samples, 2.22%) - - n.. + net_rx_action (1 samples, 2.17%) + + n.. - process_backlog (1 samples, 2.22%) - - p.. + process_backlog (1 samples, 2.17%) + + p.. - __netif_receive_skb (1 samples, 2.22%) - - _.. + __netif_receive_skb (1 samples, 2.17%) + + _.. - __netif_receive_skb_core (1 samples, 2.22%) - - _.. + __netif_receive_skb_core (1 samples, 2.17%) + + _.. - ip_rcv (1 samples, 2.22%) - - i.. + ip_rcv (1 samples, 2.17%) + + i.. - ip_rcv_finish (1 samples, 2.22%) - - i.. + ip_rcv_finish (1 samples, 2.17%) + + i.. - ip_local_deliver (1 samples, 2.22%) - - i.. + ip_local_deliver (1 samples, 2.17%) + + i.. - ip_local_deliver_finish (1 samples, 2.22%) - - i.. + ip_local_deliver_finish (1 samples, 2.17%) + + i.. - tcp_v4_rcv (1 samples, 2.22%) - - t.. + tcp_v4_rcv (1 samples, 2.17%) + + t.. - tcp_v4_do_rcv (1 samples, 2.22%) - - t.. + tcp_v4_do_rcv (1 samples, 2.17%) + + t.. - tcp_rcv_established (1 samples, 2.22%) - - t.. + tcp_rcv_established (1 samples, 2.17%) + + t.. - tcp_data_queue (1 samples, 2.22%) - - t.. + tcp_data_queue (1 samples, 2.17%) + + t.. - sock_def_readable (1 samples, 2.22%) - - s.. + sock_def_readable (1 samples, 2.17%) + + s.. - __wake_up_sync_key (1 samples, 2.22%) - - _.. + __wake_up_sync_key (1 samples, 2.17%) + + _.. - __wake_up_common (1 samples, 2.22%) - - _.. + __wake_up_common (1 samples, 2.17%) + + _.. - ep_poll_callback (1 samples, 2.22%) - - e.. + ep_poll_callback (1 samples, 2.17%) + + e.. - __wake_up_locked (1 samples, 2.22%) - - _.. + __wake_up_locked (1 samples, 2.17%) + + _.. - __wake_up_common (1 samples, 2.22%) - - _.. + __wake_up_common (1 samples, 2.17%) + + _.. - default_wake_function (1 samples, 2.22%) - - d.. + default_wake_function (1 samples, 2.17%) + + d.. - try_to_wake_up (1 samples, 2.22%) - - t.. + try_to_wake_up (1 samples, 2.17%) + + t.. - _raw_spin_unlock_irqrestore (1 samples, 2.22%) - - _.. + _raw_spin_unlock_irqrestore (1 samples, 2.17%) + + _.. - io/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete (3 samples, 6.67%) - - io/netty/.. + io/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete (3 samples, 6.52%) + + io/netty/.. - io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (3 samples, 6.67%) - - io/netty/.. + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (3 samples, 6.52%) + + io/netty/.. - io/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete (3 samples, 6.67%) - - io/netty/.. + io/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete (3 samples, 6.52%) + + io/netty/.. - org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (3 samples, 6.67%) - - org/vertx.. + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (3 samples, 6.52%) + + org/vertx.. - io/netty/channel/DefaultChannelHandlerContext:.flush (3 samples, 6.67%) - - io/netty/.. + io/netty/channel/DefaultChannelHandlerContext:.flush (3 samples, 6.52%) + + io/netty/.. - io/netty/channel/ChannelDuplexHandler:.flush (3 samples, 6.67%) - - io/netty/.. + io/netty/channel/ChannelDuplexHandler:.flush (3 samples, 6.52%) + + io/netty/.. - io/netty/channel/DefaultChannelHandlerContext:.flush (3 samples, 6.67%) - - io/netty/.. + io/netty/channel/DefaultChannelHandlerContext:.flush (3 samples, 6.52%) + + io/netty/.. - io/netty/channel/ChannelOutboundHandlerAdapter:.flush (3 samples, 6.67%) - - io/netty/.. + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (3 samples, 6.52%) + + io/netty/.. - io/netty/channel/DefaultChannelHandlerContext:.flush (3 samples, 6.67%) - - io/netty/.. + io/netty/channel/DefaultChannelHandlerContext:.flush (3 samples, 6.52%) + + io/netty/.. - io/netty/channel/DefaultChannelPipeline$HeadHandler:.flush (3 samples, 6.67%) - - io/netty/.. + io/netty/channel/DefaultChannelPipeline$HeadHandler:.flush (3 samples, 6.52%) + + io/netty/.. - io/netty/channel/nio/AbstractNioByteChannel:.doWrite (3 samples, 6.67%) - - io/netty/.. + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (3 samples, 6.52%) + + io/netty/.. - io/netty/buffer/PooledUnsafeDirectByteBuf:.getBytes (3 samples, 6.67%) - - io/netty/.. + io/netty/buffer/PooledUnsafeDirectByteBuf:.getBytes (3 samples, 6.52%) + + io/netty/.. - sun/nio/ch/SocketChannelImpl:.write (3 samples, 6.67%) - - sun/nio/c.. + sun/nio/ch/SocketChannelImpl:.write (3 samples, 6.52%) + + sun/nio/c.. - sun/nio/ch/FileDispatcherImpl:.write0 (2 samples, 4.44%) - - sun/n.. + sun/nio/ch/FileDispatcherImpl:.write0 (2 samples, 4.35%) + + sun/n.. - [libpthread-2.19.so] (2 samples, 4.44%) - - [libp.. + [libpthread-2.19.so] (2 samples, 4.35%) + + [libp.. - system_call_fastpath (2 samples, 4.44%) - - syste.. + system_call_fastpath (2 samples, 4.35%) + + syste.. - sys_write (2 samples, 4.44%) - - sys_w.. + sys_write (2 samples, 4.35%) + + sys_w.. - vfs_write (2 samples, 4.44%) - - vfs_w.. + vfs_write (2 samples, 4.35%) + + vfs_w.. - do_sync_write (2 samples, 4.44%) - - do_sy.. + do_sync_write (2 samples, 4.35%) + + do_sy.. - sock_aio_write (2 samples, 4.44%) - - sock_.. + sock_aio_write (2 samples, 4.35%) + + sock_.. - inet_sendmsg (2 samples, 4.44%) - - inet_.. + inet_sendmsg (2 samples, 4.35%) + + inet_.. - tcp_sendmsg (2 samples, 4.44%) - - tcp_s.. + tcp_sendmsg (2 samples, 4.35%) + + tcp_s.. - __tcp_push_pending_frames (2 samples, 4.44%) - - __tcp.. + __tcp_push_pending_frames (2 samples, 4.35%) + + __tcp.. - tcp_write_xmit (2 samples, 4.44%) - - tcp_w.. + tcp_write_xmit (2 samples, 4.35%) + + tcp_w.. - tcp_transmit_skb (2 samples, 4.44%) - - tcp_t.. + tcp_transmit_skb (2 samples, 4.35%) + + tcp_t.. - tcp_v4_send_check (1 samples, 2.22%) - - t.. + tcp_v4_send_check (1 samples, 2.17%) + + t.. - __tcp_v4_send_check (1 samples, 2.22%) - - _.. + __tcp_v4_send_check (1 samples, 2.17%) + + _.. - org/mozilla/javascript/WrapFactory:.wrap (4 samples, 8.89%) - - org/mozilla/j.. + org/mozilla/javascript/WrapFactory:.wrap (4 samples, 8.70%) + + org/mozilla/.. - call_function_single_interrupt (4 samples, 8.89%) - - call_function.. + call_function_single_interrupt (4 samples, 8.70%) + + call_functio.. - smp_call_function_single_interrupt (4 samples, 8.89%) - - smp_call_func.. + smp_call_function_single_interrupt (4 samples, 8.70%) + + smp_call_fun.. - generic_smp_call_function_single_interrupt (4 samples, 8.89%) - - generic_smp_c.. + generic_smp_call_function_single_interrupt (4 samples, 8.70%) + + generic_smp_.. - remote_function (4 samples, 8.89%) - - remote_functi.. + remote_function (4 samples, 8.70%) + + remote_funct.. - __perf_event_enable (4 samples, 8.89%) - - __perf_event_.. + __perf_event_enable (4 samples, 8.70%) + + __perf_event.. - group_sched_in (4 samples, 8.89%) - - group_sched_in + group_sched_in (4 samples, 8.70%) + + group_sched_.. - x86_pmu_commit_txn (4 samples, 8.89%) - - x86_pmu_commi.. + x86_pmu_commit_txn (4 samples, 8.70%) + + x86_pmu_comm.. - perf_pmu_enable (4 samples, 8.89%) - - perf_pmu_enab.. + perf_pmu_enable (4 samples, 8.70%) + + perf_pmu_ena.. - x86_pmu_enable (4 samples, 8.89%) - - x86_pmu_enable + x86_pmu_enable (4 samples, 8.70%) + + x86_pmu_enab.. - intel_pmu_enable_all (4 samples, 8.89%) - - intel_pmu_ena.. + intel_pmu_enable_all (4 samples, 8.70%) + + intel_pmu_en.. - native_write_msr_safe (4 samples, 8.89%) - - native_write_.. + native_write_msr_safe (4 samples, 8.70%) + + native_write.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call (1 samples, 2.17%) + + o.. - org/mozilla/javascript/BaseFunction:.construct (1 samples, 2.22%) - - o.. + org/mozilla/javascript/BaseFunction:.construct (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:._c_anonymous_3 (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:._c_anonymous_3 (1 samples, 2.17%) + + o.. - org/mozilla/javascript/BaseFunction:.construct (1 samples, 2.22%) - - o.. + org/mozilla/javascript/BaseFunction:.construct (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:._c_anonymous_21 (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:._c_anonymous_21 (1 samples, 2.17%) + + o.. - org/mozilla/javascript/optimizer/OptRuntime:.call2 (1 samples, 2.22%) - - o.. + org/mozilla/javascript/optimizer/OptRuntime:.call2 (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_31:.call (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_31:.call (1 samples, 2.17%) + + o.. - org/mozilla/javascript/ScriptRuntime:.setObjectProp (1 samples, 2.22%) - - o.. + org/mozilla/javascript/ScriptRuntime:.setObjectProp (1 samples, 2.17%) + + o.. - org/mozilla/javascript/IdScriptableObject:.has (1 samples, 2.22%) - - o.. + org/mozilla/javascript/IdScriptableObject:.has (1 samples, 2.17%) + + o.. - org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis (1 samples, 2.22%) - - o.. + org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis (1 samples, 2.17%) + + o.. - org/mozilla/javascript/ScriptRuntime:.nameOrFunction (1 samples, 2.22%) - - o.. + org/mozilla/javascript/ScriptRuntime:.nameOrFunction (1 samples, 2.17%) + + o.. - org/mozilla/javascript/IdScriptableObject:.get (1 samples, 2.22%) - - o.. + org/mozilla/javascript/IdScriptableObject:.get (1 samples, 2.17%) + + o.. - org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 2.22%) - - o.. + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 2.17%) + + o.. - org/mozilla/javascript/BaseFunction:.construct (3 samples, 6.67%) - - org/mozil.. + org/mozilla/javascript/BaseFunction:.construct (3 samples, 6.52%) + + org/mozil.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call (3 samples, 6.67%) - - org/mozil.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call (3 samples, 6.52%) + + org/mozil.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:._c_anonymous_3 (3 samples, 6.67%) - - org/mozil.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:._c_anonymous_3 (3 samples, 6.52%) + + org/mozil.. - org/mozilla/javascript/ScriptRuntime:.setObjectProp (1 samples, 2.22%) - - o.. + org/mozilla/javascript/ScriptRuntime:.setObjectProp (1 samples, 2.17%) + + o.. - org/mozilla/javascript/IdScriptableObject:.put (1 samples, 2.22%) - - o.. + org/mozilla/javascript/IdScriptableObject:.put (1 samples, 2.17%) + + o.. - org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 2.22%) - - o.. + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 2.17%) + + o.. - org/mozilla/javascript/ScriptableObject:.createSlot (1 samples, 2.22%) - - o.. + org/mozilla/javascript/ScriptableObject:.createSlot (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call (4 samples, 8.89%) - - org/mozilla/j.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call (4 samples, 8.70%) + + org/mozilla/.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call (4 samples, 8.89%) - - org/mozilla/j.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call (4 samples, 8.70%) + + org/mozilla/.. - org/mozilla/javascript/gen/file__home_bgregg_bench_Server_js_js_4:.call (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_bench_Server_js_js_4:.call (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_bench_Server_js_js_4:._c_anonymous_1 (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_bench_Server_js_js_4:._c_anonymous_1 (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call (1 samples, 2.17%) + + o.. - org/mozilla/javascript/NativeJavaMethod:.call (1 samples, 2.22%) - - o.. + org/mozilla/javascript/NativeJavaMethod:.call (1 samples, 2.17%) + + o.. - org/mozilla/javascript/MemberBox:.invoke (1 samples, 2.22%) - - o.. + org/mozilla/javascript/MemberBox:.invoke (1 samples, 2.17%) + + o.. - java/lang/reflect/Method:.invoke (1 samples, 2.22%) - - j.. + java/lang/reflect/Method:.invoke (1 samples, 2.17%) + + j.. - org/mozilla/javascript/BaseFunction:.construct (1 samples, 2.22%) - - o.. + org/mozilla/javascript/BaseFunction:.construct (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:._c_anonymous_21 (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:._c_anonymous_21 (1 samples, 2.17%) + + o.. - org/mozilla/javascript/optimizer/OptRuntime:.call2 (1 samples, 2.22%) - - o.. + org/mozilla/javascript/optimizer/OptRuntime:.call2 (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_49:.call (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_49:.call (1 samples, 2.17%) + + o.. - org/mozilla/javascript/optimizer/OptRuntime:.call2 (1 samples, 2.22%) - - o.. + org/mozilla/javascript/optimizer/OptRuntime:.call2 (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_49:.call (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_49:.call (1 samples, 2.17%) + + o.. - org/mozilla/javascript/ScriptRuntime:.setObjectProp (1 samples, 2.22%) - - o.. + org/mozilla/javascript/ScriptRuntime:.setObjectProp (1 samples, 2.17%) + + o.. - org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 2.22%) - - o.. + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 2.17%) + + o.. - org/mozilla/javascript/IdScriptableObject:.has (1 samples, 2.22%) - - o.. + org/mozilla/javascript/IdScriptableObject:.has (1 samples, 2.17%) + + o.. - org/mozilla/javascript/BaseFunction:.construct (3 samples, 6.67%) - - org/mozil.. + org/mozilla/javascript/BaseFunction:.construct (3 samples, 6.52%) + + org/mozil.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call (3 samples, 6.67%) - - org/mozil.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call (3 samples, 6.52%) + + org/mozil.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:._c_anonymous_3 (3 samples, 6.67%) - - org/mozil.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:._c_anonymous_3 (3 samples, 6.52%) + + org/mozil.. - org/mozilla/javascript/ScriptRuntime:.setObjectProp (2 samples, 4.44%) - - org/m.. + org/mozilla/javascript/ScriptRuntime:.setObjectProp (2 samples, 4.35%) + + org/m.. - org/mozilla/javascript/IdScriptableObject:.put (1 samples, 2.22%) - - o.. + org/mozilla/javascript/IdScriptableObject:.put (1 samples, 2.17%) + + o.. - org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 2.22%) - - o.. + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 2.17%) + + o.. - org/mozilla/javascript/ScriptableObject:.createSlot (1 samples, 2.22%) - - o.. + org/mozilla/javascript/ScriptableObject:.createSlot (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call (4 samples, 8.89%) - - org/mozilla/j.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call (4 samples, 8.70%) + + org/mozilla/.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call (4 samples, 8.89%) - - org/mozilla/j.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call (4 samples, 8.70%) + + org/mozilla/.. - org/mozilla/javascript/gen/file__home_bgregg_bench_Server_js_js_2:.call (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_bench_Server_js_js_2:.call (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call (1 samples, 2.17%) + + o.. - org/mozilla/javascript/NativeJavaMethod:.call (1 samples, 2.22%) - - o.. + org/mozilla/javascript/NativeJavaMethod:.call (1 samples, 2.17%) + + o.. - org/mozilla/javascript/MemberBox:.invoke (1 samples, 2.22%) - - o.. + org/mozilla/javascript/MemberBox:.invoke (1 samples, 2.17%) + + o.. - java/lang/reflect/Method:.invoke (1 samples, 2.22%) - - j.. + java/lang/reflect/Method:.invoke (1 samples, 2.17%) + + j.. - io/netty/handler/codec/http/DefaultHttpHeaders:.add0 (1 samples, 2.22%) - - i.. + io/netty/handler/codec/http/DefaultHttpHeaders:.add0 (1 samples, 2.17%) + + i.. - org/mozilla/javascript/BaseFunction:.construct (1 samples, 2.22%) - - o.. + org/mozilla/javascript/BaseFunction:.construct (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_21 (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_21 (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.getParamAndVarCount (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.getParamAndVarCount (1 samples, 2.17%) + + o.. - org/mozilla/javascript/ScriptRuntime:.setObjectProp (1 samples, 2.22%) - - o.. + org/mozilla/javascript/ScriptRuntime:.setObjectProp (1 samples, 2.17%) + + o.. - org/mozilla/javascript/IdScriptableObject:.has (1 samples, 2.22%) - - o.. + org/mozilla/javascript/IdScriptableObject:.has (1 samples, 2.17%) + + o.. - org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 2.22%) - - o.. + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.<init> (4 samples, 8.89%) - - org/mozilla/j.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.<init> (4 samples, 8.70%) + + org/mozilla/.. - org/mozilla/javascript/NativeFunction:.initScriptFunction (4 samples, 8.89%) - - org/mozilla/j.. + org/mozilla/javascript/NativeFunction:.initScriptFunction (4 samples, 8.70%) + + org/mozilla/.. - org/mozilla/javascript/TopLevel:.getBuiltinPrototype (4 samples, 8.89%) - - org/mozilla/j.. + org/mozilla/javascript/TopLevel:.getBuiltinPrototype (4 samples, 8.70%) + + org/mozilla/.. - call_function_single_interrupt (4 samples, 8.89%) - - call_function.. + call_function_single_interrupt (4 samples, 8.70%) + + call_functio.. - smp_call_function_single_interrupt (4 samples, 8.89%) - - smp_call_func.. + smp_call_function_single_interrupt (4 samples, 8.70%) + + smp_call_fun.. - generic_smp_call_function_single_interrupt (4 samples, 8.89%) - - generic_smp_c.. + generic_smp_call_function_single_interrupt (4 samples, 8.70%) + + generic_smp_.. - remote_function (4 samples, 8.89%) - - remote_functi.. + remote_function (4 samples, 8.70%) + + remote_funct.. - __perf_event_enable (4 samples, 8.89%) - - __perf_event_.. + __perf_event_enable (4 samples, 8.70%) + + __perf_event.. - group_sched_in (4 samples, 8.89%) - - group_sched_in + group_sched_in (4 samples, 8.70%) + + group_sched_.. - x86_pmu_commit_txn (4 samples, 8.89%) - - x86_pmu_commi.. + x86_pmu_commit_txn (4 samples, 8.70%) + + x86_pmu_comm.. - perf_pmu_enable (4 samples, 8.89%) - - perf_pmu_enab.. + perf_pmu_enable (4 samples, 8.70%) + + perf_pmu_ena.. - x86_pmu_enable (4 samples, 8.89%) - - x86_pmu_enable + x86_pmu_enable (4 samples, 8.70%) + + x86_pmu_enab.. - intel_pmu_enable_all (4 samples, 8.89%) - - intel_pmu_ena.. + intel_pmu_enable_all (4 samples, 8.70%) + + intel_pmu_en.. - native_write_msr_safe (4 samples, 8.89%) - - native_write_.. + native_write_msr_safe (4 samples, 8.70%) + + native_write.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.getParamCount (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.getParamCount (1 samples, 2.17%) + + o.. - io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead (24 samples, 53.33%) - - io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead + io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead (24 samples, 52.17%) + + io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead - org/vertx/java/core/net/impl/VertxHandler:.channelRead (23 samples, 51.11%) - - org/vertx/java/core/net/impl/VertxHandler:.channelRead + org/vertx/java/core/net/impl/VertxHandler:.channelRead (23 samples, 50.00%) + + org/vertx/java/core/net/impl/VertxHandler:.channelRead - org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead (23 samples, 51.11%) - - org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead + org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead (23 samples, 50.00%) + + org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead - org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (23 samples, 51.11%) - - org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (23 samples, 50.00%) + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived - org/vertx/java/core/http/impl/ServerConnection:.handleMessage (23 samples, 51.11%) - - org/vertx/java/core/http/impl/ServerConnection:.handleMessage + org/vertx/java/core/http/impl/ServerConnection:.handleMessage (23 samples, 50.00%) + + org/vertx/java/core/http/impl/ServerConnection:.handleMessage - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call (9 samples, 20.00%) - - org/mozilla/javascript/gen/file.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call (9 samples, 19.57%) + + org/mozilla/javascript/gen/file.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call (9 samples, 20.00%) - - org/mozilla/javascript/gen/file.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call (9 samples, 19.57%) + + org/mozilla/javascript/gen/file.. - org/mozilla/javascript/BaseFunction:.construct (8 samples, 17.78%) - - org/mozilla/javascript/BaseF.. + org/mozilla/javascript/BaseFunction:.construct (8 samples, 17.39%) + + org/mozilla/javascript/Base.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call (8 samples, 17.78%) - - org/mozilla/javascript/gen/f.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call (8 samples, 17.39%) + + org/mozilla/javascript/gen/.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_3 (8 samples, 17.78%) - - org/mozilla/javascript/gen/f.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_3 (8 samples, 17.39%) + + org/mozilla/javascript/gen/.. - org/mozilla/javascript/optimizer/OptRuntime:.call2 (1 samples, 2.22%) - - o.. + org/mozilla/javascript/optimizer/OptRuntime:.call2 (1 samples, 2.17%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_47:.call (1 samples, 2.22%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_47:.call (1 samples, 2.17%) + + o.. - org/mozilla/javascript/ScriptRuntime:.setObjectProp (1 samples, 2.22%) - - o.. + org/mozilla/javascript/ScriptRuntime:.setObjectProp (1 samples, 2.17%) + + o.. - org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 2.22%) - - o.. + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 2.17%) + + o.. - io/netty/handler/codec/http/HttpMethod:.valueOf (1 samples, 2.22%) - - i.. + io/netty/handler/codec/http/HttpMethod:.valueOf (1 samples, 2.17%) + + i.. - io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (31 samples, 68.89%) - - io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (31 samples, 67.39%) + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized - io/netty/channel/nio/NioEventLoop:.processSelectedKey (31 samples, 68.89%) - - io/netty/channel/nio/NioEventLoop:.processSelectedKey + io/netty/channel/nio/NioEventLoop:.processSelectedKey (31 samples, 67.39%) + + io/netty/channel/nio/NioEventLoop:.processSelectedKey - io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (31 samples, 68.89%) - - io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (31 samples, 67.39%) + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read - io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead (26 samples, 57.78%) - - io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead + io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead (26 samples, 56.52%) + + io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead - io/netty/handler/codec/ByteToMessageDecoder:.channelRead (26 samples, 57.78%) - - io/netty/handler/codec/ByteToMessageDecoder:.channelRead + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (26 samples, 56.52%) + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead - io/netty/handler/codec/http/HttpObjectDecoder:.decode (2 samples, 4.44%) - - io/ne.. + io/netty/handler/codec/http/HttpObjectDecoder:.decode (2 samples, 4.35%) + + io/ne.. - io/netty/handler/codec/http/HttpObjectDecoder:.findWhitespace (1 samples, 2.22%) - - i.. + io/netty/handler/codec/http/HttpObjectDecoder:.findWhitespace (1 samples, 2.17%) + + i.. - java (32 samples, 71.11%) - - java + java (32 samples, 69.57%) + + java - start_thread (32 samples, 71.11%) - - start_thread + start_thread (32 samples, 69.57%) + + start_thread - java_start (32 samples, 71.11%) - - java_start + java_start (32 samples, 69.57%) + + java_start - JavaThread::run (32 samples, 71.11%) - - JavaThread::run + JavaThread::run (32 samples, 69.57%) + + JavaThread::run - JavaThread::thread_main_inner (32 samples, 71.11%) - - JavaThread::thread_main_inner + JavaThread::thread_main_inner (32 samples, 69.57%) + + JavaThread::thread_main_inner - thread_entry (32 samples, 71.11%) - - thread_entry + thread_entry (32 samples, 69.57%) + + thread_entry - JavaCalls::call_virtual (32 samples, 71.11%) - - JavaCalls::call_virtual + JavaCalls::call_virtual (32 samples, 69.57%) + + JavaCalls::call_virtual - JavaCalls::call_virtual (32 samples, 71.11%) - - JavaCalls::call_virtual + JavaCalls::call_virtual (32 samples, 69.57%) + + JavaCalls::call_virtual - JavaCalls::call_helper (32 samples, 71.11%) - - JavaCalls::call_helper + JavaCalls::call_helper (32 samples, 69.57%) + + JavaCalls::call_helper - call_stub (32 samples, 71.11%) - - call_stub + call_stub (32 samples, 69.57%) + + call_stub - Interpreter (32 samples, 71.11%) - - Interpreter + Interpreter (32 samples, 69.57%) + + Interpreter - Interpreter (32 samples, 71.11%) - - Interpreter + Interpreter (32 samples, 69.57%) + + Interpreter - io/netty/channel/nio/NioEventLoop:.run (32 samples, 71.11%) - - io/netty/channel/nio/NioEventLoop:.run + io/netty/channel/nio/NioEventLoop:.run (32 samples, 69.57%) + + io/netty/channel/nio/NioEventLoop:.run - io/netty/channel/nio/NioEventLoop:.select (1 samples, 2.22%) - - i.. + io/netty/channel/nio/NioEventLoop:.select (1 samples, 2.17%) + + i.. - sun/nio/ch/SelectorImpl:.lockAndDoSelect (1 samples, 2.22%) - - s.. + sun/nio/ch/SelectorImpl:.lockAndDoSelect (1 samples, 2.17%) + + s.. - sun/nio/ch/EPollSelectorImpl:.doSelect (1 samples, 2.22%) - - s.. + sun/nio/ch/EPollSelectorImpl:.doSelect (1 samples, 2.17%) + + s.. - sun/nio/ch/EPollArrayWrapper:.poll (1 samples, 2.22%) - - s.. + sun/nio/ch/EPollArrayWrapper:.poll (1 samples, 2.17%) + + s.. - sun/nio/ch/EPollArrayWrapper:.epollWait (1 samples, 2.22%) - - s.. + sun/nio/ch/EPollArrayWrapper:.epollWait (1 samples, 2.17%) + + s.. - __libc_enable_asynccancel (1 samples, 2.22%) - - _.. + __libc_enable_asynccancel (1 samples, 2.17%) + + _.. - __GI___ioctl (4 samples, 8.89%) - - __GI___ioctl + __GI___ioctl (4 samples, 8.70%) + + __GI___ioctl - system_call_fastpath (4 samples, 8.89%) - - system_call_f.. + system_call_fastpath (4 samples, 8.70%) + + system_call_.. - sys_ioctl (4 samples, 8.89%) - - sys_ioctl + sys_ioctl (4 samples, 8.70%) + + sys_ioctl - do_vfs_ioctl (4 samples, 8.89%) - - do_vfs_ioctl + do_vfs_ioctl (4 samples, 8.70%) + + do_vfs_ioctl - perf_ioctl (4 samples, 8.89%) - - perf_ioctl + perf_ioctl (4 samples, 8.70%) + + perf_ioctl - perf_event_for_each_child (4 samples, 8.89%) - - perf_event_fo.. + perf_event_for_each_child (4 samples, 8.70%) + + perf_event_f.. - perf_event_enable (4 samples, 8.89%) - - perf_event_en.. + perf_event_enable (4 samples, 8.70%) + + perf_event_e.. - cpu_function_call (4 samples, 8.89%) - - cpu_function_.. + cpu_function_call (4 samples, 8.70%) + + cpu_function.. - smp_call_function_single (4 samples, 8.89%) - - smp_call_func.. + smp_call_function_single (4 samples, 8.70%) + + smp_call_fun.. - remote_function (4 samples, 8.89%) - - remote_functi.. + remote_function (4 samples, 8.70%) + + remote_funct.. - __perf_event_enable (4 samples, 8.89%) - - __perf_event_.. + __perf_event_enable (4 samples, 8.70%) + + __perf_event.. - group_sched_in (4 samples, 8.89%) - - group_sched_in + group_sched_in (4 samples, 8.70%) + + group_sched_.. - x86_pmu_commit_txn (4 samples, 8.89%) - - x86_pmu_commi.. + x86_pmu_commit_txn (4 samples, 8.70%) + + x86_pmu_comm.. - perf_pmu_enable (4 samples, 8.89%) - - perf_pmu_enab.. + perf_pmu_enable (4 samples, 8.70%) + + perf_pmu_ena.. - x86_pmu_enable (4 samples, 8.89%) - - x86_pmu_enable + x86_pmu_enable (4 samples, 8.70%) + + x86_pmu_enab.. - intel_pmu_enable_all (4 samples, 8.89%) - - intel_pmu_ena.. + intel_pmu_enable_all (4 samples, 8.70%) + + intel_pmu_en.. - native_write_msr_safe (4 samples, 8.89%) - - native_write_.. + native_write_msr_safe (4 samples, 8.70%) + + native_write.. - perf (5 samples, 11.11%) - - perf + perf (5 samples, 10.87%) + + perf - __libc_start_main (5 samples, 11.11%) - - __libc_start_main + __libc_start_main (5 samples, 10.87%) + + __libc_start_main - [perf] (5 samples, 11.11%) - - [perf] + [perf] (5 samples, 10.87%) + + [perf] - [perf] (5 samples, 11.11%) - - [perf] + [perf] (5 samples, 10.87%) + + [perf] - [perf] (5 samples, 11.11%) - - [perf] + [perf] (5 samples, 10.87%) + + [perf] - page_fault (1 samples, 2.22%) - - p.. + page_fault (1 samples, 2.17%) + + p.. - all (45 samples, 100%) + all (46 samples, 100%) - swapper (1 samples, 2.22%) - - s.. + swapper (1 samples, 2.17%) + + s.. - x86_64_start_kernel (1 samples, 2.22%) - - x.. + x86_64_start_kernel (1 samples, 2.17%) + + x.. - x86_64_start_reservations (1 samples, 2.22%) - - x.. + x86_64_start_reservations (1 samples, 2.17%) + + x.. - start_kernel (1 samples, 2.22%) - - s.. + start_kernel (1 samples, 2.17%) + + s.. - rest_init (1 samples, 2.22%) - - r.. + rest_init (1 samples, 2.17%) + + r.. - cpu_startup_entry (1 samples, 2.22%) - - c.. + cpu_startup_entry (1 samples, 2.17%) + + c.. - rcu_idle_enter (1 samples, 2.22%) - - r.. + rcu_idle_enter (1 samples, 2.17%) + + r.. \ No newline at end of file diff --git a/tests/data/flamegraph/palette-map/consistent-palette.svg b/tests/data/flamegraph/palette-map/consistent-palette.svg index a4d76d14..4eec3d58 100644 --- a/tests/data/flamegraph/palette-map/consistent-palette.svg +++ b/tests/data/flamegraph/palette-map/consistent-palette.svg @@ -37,1808 +37,1823 @@ var truncate_text_right = false;]]> read (1 samples, 0.35%) - + check_events (1 samples, 0.35%) - + hypercall_page (1 samples, 0.35%) - + ScavengeRootsTask::do_it (1 samples, 0.35%) - - + + ClassLoaderDataGraph::oops_do (1 samples, 0.35%) - - + + ClassLoaderData::oops_do (1 samples, 0.35%) - - + + PSScavengeKlassClosure::do_klass (1 samples, 0.35%) - - + + PSPromotionManager::drain_stacks_depth (1 samples, 0.35%) - - + + oopDesc* PSPromotionManager::copy_to_survivor_space<false> (1 samples, 0.35%) - - + + InstanceKlass::oop_push_contents (1 samples, 0.35%) - - + + ParallelTaskTerminator::offer_termination (5 samples, 1.75%) - - + + - GCTaskThread::run (14 samples, 4.91%) - - GCTask.. + GCTaskThread::run (14 samples, 4.90%) + + GCTask.. - StealTask::do_it (13 samples, 4.56%) - - Steal.. + StealTask::do_it (13 samples, 4.55%) + + Steal.. - SpinPause (7 samples, 2.46%) - - Sp.. + SpinPause (7 samples, 2.45%) + + Sp.. io/netty/buffer/AbstractByteBufAllocator:.directBuffer (1 samples, 0.35%) - - + + io/netty/buffer/AbstractReferenceCountedByteBuf:.release (1 samples, 0.35%) - - + + io/netty/buffer/PooledByteBuf:.internalNioBuffer (1 samples, 0.35%) - - + + sun/nio/ch/NativeThread:.current (1 samples, 0.35%) - - + + (3 samples, 1.05%) - - + + Java_sun_nio_ch_FileDispatcherImpl_write0 (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + fget_light (1 samples, 0.35%) - - + + __srcu_read_lock (1 samples, 0.35%) - - + + __tcp_push_pending_frames (1 samples, 0.35%) - - + + ktime_get_real (1 samples, 0.35%) - - + + skb_clone (1 samples, 0.35%) - - + + tcp_set_skb_tso_segs (1 samples, 0.35%) - - + + dev_hard_start_xmit (1 samples, 0.35%) - - + + dev_pick_tx (1 samples, 0.35%) - - + + dev_queue_xmit_nit (1 samples, 0.35%) - - + + xen_restore_fl_direct (1 samples, 0.35%) - - + + dev_hard_start_xmit (4 samples, 1.40%) - - + + loopback_xmit (3 samples, 1.05%) - - + + netif_rx (2 samples, 0.70%) - - + + netif_rx.part.82 (2 samples, 0.70%) - - + + xen_restore_fl_direct_end (1 samples, 0.35%) - - + + dma_issue_pending_all (1 samples, 0.35%) - - + + __inet_lookup_established (3 samples, 1.05%) - - + + tcp_event_data_recv (1 samples, 0.35%) - - + + - sock_def_readable (19 samples, 6.67%) - - sock_def_.. + sock_def_readable (19 samples, 6.64%) + + sock_def_.. - __wake_up_sync_key (19 samples, 6.67%) - - __wake_up.. + __wake_up_sync_key (19 samples, 6.64%) + + __wake_up.. - check_events (19 samples, 6.67%) - - check_eve.. + check_events (19 samples, 6.64%) + + check_eve.. - hypercall_page (19 samples, 6.67%) - - hypercall.. + hypercall_page (19 samples, 6.64%) + + hypercall.. + + + __kfree_skb (1 samples, 0.35%) + + + + + skb_release_data (1 samples, 0.35%) + + + + + skb_release_data.part.45 (1 samples, 0.35%) + + bictcp_acked (1 samples, 0.35%) - - + + ktime_get_real (2 samples, 0.70%) - - + + getnstimeofday (2 samples, 0.70%) - - + + xen_clocksource_get_cycles (1 samples, 0.35%) - - + + xen_clocksource_read (1 samples, 0.35%) - - + + tcp_rtt_estimator (1 samples, 0.35%) - - + + - ip_local_deliver (34 samples, 11.93%) - - ip_local_deliver + ip_local_deliver (35 samples, 12.24%) + + ip_local_deliver - ip_local_deliver_finish (34 samples, 11.93%) - - ip_local_deliver_f.. + ip_local_deliver_finish (35 samples, 12.24%) + + ip_local_deliver_f.. - tcp_v4_rcv (33 samples, 11.58%) - - tcp_v4_rcv + tcp_v4_rcv (34 samples, 11.89%) + + tcp_v4_rcv - tcp_v4_do_rcv (29 samples, 10.18%) - - tcp_v4_do_rcv + tcp_v4_do_rcv (30 samples, 10.49%) + + tcp_v4_do_rcv - tcp_rcv_established (28 samples, 9.82%) - - tcp_rcv_establ.. + tcp_rcv_established (29 samples, 10.14%) + + tcp_rcv_establi.. - tcp_ack (9 samples, 3.16%) - - tcp.. + tcp_ack (10 samples, 3.50%) + + tcp.. - tcp_clean_rtx_queue (6 samples, 2.11%) - - t.. + tcp_clean_rtx_queue (7 samples, 2.45%) + + tc.. tcp_valid_rtt_meas (1 samples, 0.35%) - - + + tcp_rtt_estimator (1 samples, 0.35%) - - + + - __do_softirq (37 samples, 12.98%) - - __do_softirq + __do_softirq (38 samples, 13.29%) + + __do_softirq - net_rx_action (37 samples, 12.98%) - - net_rx_action + net_rx_action (38 samples, 13.29%) + + net_rx_action - process_backlog (36 samples, 12.63%) - - process_backlog + process_backlog (37 samples, 12.94%) + + process_backlog - __netif_receive_skb (36 samples, 12.63%) - - __netif_receive_skb + __netif_receive_skb (37 samples, 12.94%) + + __netif_receive_skb - ip_rcv (35 samples, 12.28%) - - ip_rcv + ip_rcv (36 samples, 12.59%) + + ip_rcv - ip_rcv_finish (35 samples, 12.28%) - - ip_rcv_finish + ip_rcv_finish (36 samples, 12.59%) + + ip_rcv_finish ip_local_deliver_finish (1 samples, 0.35%) - - + + - local_bh_enable (38 samples, 13.33%) - - local_bh_enable + local_bh_enable (39 samples, 13.64%) + + local_bh_enable - do_softirq (38 samples, 13.33%) - - do_softirq + do_softirq (39 samples, 13.64%) + + do_softirq - call_softirq (38 samples, 13.33%) - - call_softirq + call_softirq (39 samples, 13.64%) + + call_softirq rcu_bh_qs (1 samples, 0.35%) - - + + - ip_local_out (45 samples, 15.79%) - - ip_local_out + ip_local_out (46 samples, 16.08%) + + ip_local_out - ip_output (45 samples, 15.79%) - - ip_output + ip_output (46 samples, 16.08%) + + ip_output - ip_finish_output (45 samples, 15.79%) - - ip_finish_output + ip_finish_output (46 samples, 16.08%) + + ip_finish_output - dev_queue_xmit (43 samples, 15.09%) - - dev_queue_xmit + dev_queue_xmit (44 samples, 15.38%) + + dev_queue_xmit netif_skb_features (1 samples, 0.35%) - - + + - ip_queue_xmit (47 samples, 16.49%) - - ip_queue_xmit + ip_queue_xmit (48 samples, 16.78%) + + ip_queue_xmit ip_output (2 samples, 0.70%) - - + + pvclock_clocksource_read (1 samples, 0.35%) - - + + getnstimeofday (2 samples, 0.70%) - - + + xen_clocksource_get_cycles (2 samples, 0.70%) - - + + xen_clocksource_read (1 samples, 0.35%) - - + + pvclock_clocksource_read (1 samples, 0.35%) - - + + ktime_get_real (3 samples, 1.05%) - - + + xen_clocksource_get_cycles (1 samples, 0.35%) - - + + - __tcp_push_pending_frames (56 samples, 19.65%) - - __tcp_push_pending_frames + __tcp_push_pending_frames (57 samples, 19.93%) + + __tcp_push_pending_frames - tcp_write_xmit (56 samples, 19.65%) - - tcp_write_xmit + tcp_write_xmit (57 samples, 19.93%) + + tcp_write_xmit - tcp_transmit_skb (53 samples, 18.60%) - - tcp_transmit_skb + tcp_transmit_skb (54 samples, 18.88%) + + tcp_transmit_skb skb_dst_set_noref (1 samples, 0.35%) - - + + lock_sock_nested (1 samples, 0.35%) - - + + _raw_spin_lock_bh (1 samples, 0.35%) - - + + local_bh_disable (1 samples, 0.35%) - - + + __kmalloc_node_track_caller (2 samples, 0.70%) - - + + arch_local_irq_save (1 samples, 0.35%) - - + + __phys_addr (1 samples, 0.35%) - - + + get_slab (2 samples, 0.70%) - - + + - __alloc_skb (7 samples, 2.46%) - - __.. + __alloc_skb (7 samples, 2.45%) + + __.. kmem_cache_alloc_node (1 samples, 0.35%) - - + + - sk_stream_alloc_skb (8 samples, 2.81%) - - sk.. + sk_stream_alloc_skb (8 samples, 2.80%) + + sk.. ksize (1 samples, 0.35%) - - + + ipv4_mtu (1 samples, 0.35%) - - + + tcp_current_mss (2 samples, 0.70%) - - + + tcp_established_options (1 samples, 0.35%) - - + + tcp_send_mss (3 samples, 1.05%) - - + + tcp_xmit_size_goal (1 samples, 0.35%) - - + + - do_sync_write (72 samples, 25.26%) - - do_sync_write + do_sync_write (73 samples, 25.52%) + + do_sync_write - sock_aio_write (72 samples, 25.26%) - - sock_aio_write + sock_aio_write (73 samples, 25.52%) + + sock_aio_write - do_sock_write.isra.10 (72 samples, 25.26%) - - do_sock_write.isra.10 + do_sock_write.isra.10 (73 samples, 25.52%) + + do_sock_write.isra.10 - inet_sendmsg (72 samples, 25.26%) - - inet_sendmsg + inet_sendmsg (73 samples, 25.52%) + + inet_sendmsg - tcp_sendmsg (71 samples, 24.91%) - - tcp_sendmsg + tcp_sendmsg (72 samples, 25.17%) + + tcp_sendmsg tcp_xmit_size_goal (1 samples, 0.35%) - - + + fsnotify (2 samples, 0.70%) - - + + __srcu_read_lock (1 samples, 0.35%) - - + + apparmor_file_permission (1 samples, 0.35%) - - + + rw_verify_area (3 samples, 1.05%) - - + + security_file_permission (1 samples, 0.35%) - - + + apparmor_file_permission (1 samples, 0.35%) - - + + common_file_perm (1 samples, 0.35%) - - + + - sun/nio/ch/FileDispatcherImpl:.write0 (87 samples, 30.53%) - - sun/nio/ch/FileDispatcherImpl:.write0 + sun/nio/ch/FileDispatcherImpl:.write0 (88 samples, 30.77%) + + sun/nio/ch/FileDispatcherImpl:.write0 - write (82 samples, 28.77%) - - write + write (83 samples, 29.02%) + + write - system_call_fastpath (80 samples, 28.07%) - - system_call_fastpath + system_call_fastpath (81 samples, 28.32%) + + system_call_fastpath - sys_write (80 samples, 28.07%) - - sys_write + sys_write (81 samples, 28.32%) + + sys_write - vfs_write (79 samples, 27.72%) - - vfs_write + vfs_write (80 samples, 27.97%) + + vfs_write sock_aio_write (1 samples, 0.35%) - - + + - sun/nio/ch/SocketChannelImpl:.write (88 samples, 30.88%) - - sun/nio/ch/SocketChannelImpl:.write + sun/nio/ch/SocketChannelImpl:.write (89 samples, 31.12%) + + sun/nio/ch/SocketChannelImpl:.write sun/nio/ch/SocketChannelImpl:.writerCleanup (1 samples, 0.35%) - - + + - io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (91 samples, 31.93%) - - io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (92 samples, 32.17%) + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes sun/nio/ch/SocketChannelImpl:.writerCleanup (1 samples, 0.35%) - - + + - io/netty/channel/AbstractChannelHandlerContext:.flush (95 samples, 33.33%) - - io/netty/channel/AbstractChannelHandlerContext:.flush + io/netty/channel/AbstractChannelHandlerContext:.flush (96 samples, 33.57%) + + io/netty/channel/AbstractChannelHandlerContext:.flush - io/netty/channel/ChannelDuplexHandler:.flush (95 samples, 33.33%) - - io/netty/channel/ChannelDuplexHandler:.flush + io/netty/channel/ChannelDuplexHandler:.flush (96 samples, 33.57%) + + io/netty/channel/ChannelDuplexHandler:.flush - io/netty/channel/AbstractChannelHandlerContext:.flush (95 samples, 33.33%) - - io/netty/channel/AbstractChannelHandlerContext:.flush + io/netty/channel/AbstractChannelHandlerContext:.flush (96 samples, 33.57%) + + io/netty/channel/AbstractChannelHandlerContext:.flush - io/netty/channel/ChannelOutboundHandlerAdapter:.flush (95 samples, 33.33%) - - io/netty/channel/ChannelOutboundHandlerAdapter:.flush + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (96 samples, 33.57%) + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush - io/netty/channel/AbstractChannelHandlerContext:.flush (95 samples, 33.33%) - - io/netty/channel/AbstractChannelHandlerContext:.flush + io/netty/channel/AbstractChannelHandlerContext:.flush (96 samples, 33.57%) + + io/netty/channel/AbstractChannelHandlerContext:.flush - io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (95 samples, 33.33%) - - io/netty/channel/DefaultChannelPipeline$HeadContext:.f.. + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (96 samples, 33.57%) + + io/netty/channel/DefaultChannelPipeline$HeadContext:.f.. - io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (95 samples, 33.33%) - - io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (96 samples, 33.57%) + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 - io/netty/channel/nio/AbstractNioByteChannel:.doWrite (95 samples, 33.33%) - - io/netty/channel/nio/AbstractNioByteChannel:.doWrite + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (96 samples, 33.57%) + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite io/netty/util/Recycler:.recycle (1 samples, 0.35%) - - + + - io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (97 samples, 34.04%) - - io/netty/channel/AbstractChannelHandlerContext:.fireCha.. + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (98 samples, 34.27%) + + io/netty/channel/AbstractChannelHandlerContext:.fireChan.. - org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (97 samples, 34.04%) - - org/vertx/java/core/net/impl/VertxHandler:.channelReadC.. + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (98 samples, 34.27%) + + org/vertx/java/core/net/impl/VertxHandler:.channelReadCo.. io/netty/channel/ChannelDuplexHandler:.flush (2 samples, 0.70%) - - + + - io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (98 samples, 34.39%) - - io/netty/channel/AbstractChannelHandlerContext:.fireChan.. + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (99 samples, 34.62%) + + io/netty/channel/AbstractChannelHandlerContext:.fireChan.. - io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (98 samples, 34.39%) - - io/netty/handler/codec/ByteToMessageDecoder:.channelRead.. + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (99 samples, 34.62%) + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead.. org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/buffer/AbstractReferenceCountedByteBuf:.release (1 samples, 0.35%) - - + + java/util/concurrent/ConcurrentHashMap:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/Context:.getWrapFactory (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptableObject:.getParentScope (1 samples, 0.35%) - - + + org/mozilla/javascript/WrapFactory:.wrapAsJavaObject (2 samples, 0.70%) - - + + java/util/HashMap:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/WrapFactory:.wrap (1 samples, 0.35%) - - + + java/util/HashMap:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.getObjectProp (4 samples, 1.40%) - - + + vtable chunks (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.nameOrFunction (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject$Slot:.getValue (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.name (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.has (3 samples, 1.05%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (2 samples, 0.70%) - - + + org/mozilla/javascript/IdScriptableObject:.put (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.setAttributes (1 samples, 0.35%) - - + + org/mozilla/javascript/MemberBox:.invoke (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaMethod:.call (2 samples, 0.70%) - - + + org/mozilla/javascript/WrapFactory:.wrap (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaMethod:.findFunction (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaObject:.get (2 samples, 0.70%) - - + + org/mozilla/javascript/IdScriptableObject:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.put (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptableObject:.createSlot (2 samples, 0.70%) - - + + org/mozilla/javascript/IdScriptableObject:.setAttributes (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.createFunctionActivation (5 samples, 1.75%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.getObjectProp (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject$Slot:.getValue (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaObject:.get (1 samples, 0.35%) - - + + java/util/HashMap:.get (1 samples, 0.35%) - - + + jint_disjoint_arraycopy (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.get (2 samples, 0.70%) - - + + org/mozilla/javascript/IdScriptableObject:.has (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.put (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptableObject:.createSlot (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptRuntime:.createFunctionActivation (5 samples, 1.75%) - - + + org/mozilla/javascript/IdScriptableObject:.setAttributes (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptRuntime:.getObjectProp (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.nameOrFunction (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.put (4 samples, 1.40%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (3 samples, 1.05%) - - + + org/mozilla/javascript/ScriptableObject:.createSlot (3 samples, 1.05%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.35%) - - + + - org/mozilla/javascript/ScriptRuntime:.setObjectProp (7 samples, 2.46%) - - or.. + org/mozilla/javascript/ScriptRuntime:.setObjectProp (7 samples, 2.45%) + + or.. vtable chunks (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeFunction:.initScriptFunction (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.createFunctionActivation (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.createFunctionActivation (2 samples, 0.70%) - - + + org/mozilla/javascript/IdScriptableObject:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.has (1 samples, 0.35%) - - + + - org/mozilla/javascript/ScriptRuntime:.setObjectProp (8 samples, 2.81%) - - or.. + org/mozilla/javascript/ScriptRuntime:.setObjectProp (8 samples, 2.80%) + + or.. - org/mozilla/javascript/IdScriptableObject:.put (7 samples, 2.46%) - - or.. + org/mozilla/javascript/IdScriptableObject:.put (7 samples, 2.45%) + + or.. - org/mozilla/javascript/ScriptableObject:.getSlot (6 samples, 2.11%) - - o.. + org/mozilla/javascript/ScriptableObject:.getSlot (6 samples, 2.10%) + + o.. - org/mozilla/javascript/ScriptableObject:.createSlot (6 samples, 2.11%) - - o.. + org/mozilla/javascript/ScriptableObject:.createSlot (6 samples, 2.10%) + + o.. - org/mozilla/javascript/ScriptRuntime:.newObject (32 samples, 11.23%) - - org/mozilla/javas.. + org/mozilla/javascript/ScriptRuntime:.newObject (32 samples, 11.19%) + + org/mozilla/java.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (32 samples, 11.23%) - - org/mozilla/javas.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (32 samples, 11.19%) + + org/mozilla/java.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (32 samples, 11.23%) - - org/mozilla/javas.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (32 samples, 11.19%) + + org/mozilla/java.. - org/mozilla/javascript/optimizer/OptRuntime:.call2 (13 samples, 4.56%) - - org/m.. + org/mozilla/javascript/optimizer/OptRuntime:.call2 (13 samples, 4.55%) + + org/m.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (11 samples, 3.86%) - - org/.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (11 samples, 3.85%) + + org/.. org/mozilla/javascript/ScriptableObject:.getParentScope (1 samples, 0.35%) - - + + - org/mozilla/javascript/IdScriptableObject:.has (9 samples, 3.16%) - - org.. + org/mozilla/javascript/IdScriptableObject:.has (9 samples, 3.15%) + + org.. org/mozilla/javascript/ScriptableObject:.getSlot (5 samples, 1.75%) - - + + - org/mozilla/javascript/ScriptRuntime:.setObjectProp (17 samples, 5.96%) - - org/mozi.. + org/mozilla/javascript/ScriptRuntime:.setObjectProp (17 samples, 5.94%) + + org/mozi.. - org/mozilla/javascript/IdScriptableObject:.put (8 samples, 2.81%) - - or.. + org/mozilla/javascript/IdScriptableObject:.put (8 samples, 2.80%) + + or.. - org/mozilla/javascript/ScriptableObject:.getSlot (7 samples, 2.46%) - - or.. + org/mozilla/javascript/ScriptableObject:.getSlot (7 samples, 2.45%) + + or.. - org/mozilla/javascript/ScriptableObject:.createSlot (6 samples, 2.11%) - - o.. + org/mozilla/javascript/ScriptableObject:.createSlot (6 samples, 2.10%) + + o.. org/mozilla/javascript/ScriptableObject:.getPrototype (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject:.getParentScope (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (3 samples, 1.05%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (3 samples, 1.05%) - - + + org/mozilla/javascript/TopLevel:.getBuiltinPrototype (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptRuntime:.name (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.nameOrFunction (1 samples, 0.35%) - - + + vtable chunks (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.setObjectProp (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.has (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.setAttributes (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptRuntime:.createFunctionActivation (5 samples, 1.75%) - - + + org/mozilla/javascript/TopLevel:.getBuiltinPrototype (2 samples, 0.70%) - - + + - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (82 samples, 28.77%) - - org/mozilla/javascript/gen/file__home_bgregg_t.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (82 samples, 28.67%) + + org/mozilla/javascript/gen/file__home_bgregg_t.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (81 samples, 28.42%) - - org/mozilla/javascript/gen/file__home_bgregg_t.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (81 samples, 28.32%) + + org/mozilla/javascript/gen/file__home_bgregg_t.. - org/mozilla/javascript/optimizer/OptRuntime:.call2 (9 samples, 3.16%) - - org.. + org/mozilla/javascript/optimizer/OptRuntime:.call2 (9 samples, 3.15%) + + org.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (6 samples, 2.11%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (6 samples, 2.10%) + + o.. org/mozilla/javascript/ScriptRuntime:.setObjectProp (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.put (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject:.createSlot (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.indexFromString (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.setObjectElem (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptRuntime:.indexFromString (2 samples, 0.70%) - - + + io/netty/handler/codec/http/DefaultHttpHeaders:.set (1 samples, 0.35%) - - + + io/netty/buffer/AbstractByteBuf:.writeBytes (1 samples, 0.35%) - - + + io/netty/buffer/AbstractByteBuf:.writeBytes (1 samples, 0.35%) - - + + io/netty/buffer/AbstractByteBufAllocator:.directBuffer (3 samples, 1.05%) - - + + io/netty/util/concurrent/FastThreadLocal:.get (1 samples, 0.35%) - - + + io/netty/handler/codec/http/HttpObjectEncoder:.encode (5 samples, 1.75%) - - + + java/util/ArrayList:.add (1 samples, 0.35%) - - + + io/netty/util/internal/RecyclableArrayList:.newInstance (1 samples, 0.35%) - - + + io/netty/util/concurrent/FastThreadLocal:.get (1 samples, 0.35%) - - + + java/util/ArrayList:.ensureExplicitCapacity (1 samples, 0.35%) - - + + - io/netty/channel/AbstractChannelHandlerContext:.write (12 samples, 4.21%) - - io/ne.. + io/netty/channel/AbstractChannelHandlerContext:.write (12 samples, 4.20%) + + io/ne.. - org/vertx/java/core/http/impl/VertxHttpHandler:.write (11 samples, 3.86%) - - org/.. + org/vertx/java/core/http/impl/VertxHttpHandler:.write (11 samples, 3.85%) + + org/.. - io/netty/channel/AbstractChannelHandlerContext:.write (10 samples, 3.51%) - - io/.. + io/netty/channel/AbstractChannelHandlerContext:.write (10 samples, 3.50%) + + io/.. - io/netty/handler/codec/MessageToMessageEncoder:.write (10 samples, 3.51%) - - io/.. + io/netty/handler/codec/MessageToMessageEncoder:.write (10 samples, 3.50%) + + io/.. vtable chunks (1 samples, 0.35%) - - + + - io/netty/channel/AbstractChannelHandlerContext:.write (13 samples, 4.56%) - - io/ne.. + io/netty/channel/AbstractChannelHandlerContext:.write (13 samples, 4.55%) + + io/ne.. org/vertx/java/core/http/impl/VertxHttpHandler:.write (1 samples, 0.35%) - - + + io/netty/handler/codec/http/DefaultHttpHeaders:.add0 (1 samples, 0.35%) - - + + io/netty/handler/codec/http/DefaultHttpHeaders:.set (1 samples, 0.35%) - - + + - org/mozilla/javascript/NativeJavaMethod:.call (21 samples, 7.37%) - - org/mozill.. + org/mozilla/javascript/NativeJavaMethod:.call (21 samples, 7.34%) + + org/mozill.. - org/mozilla/javascript/MemberBox:.invoke (21 samples, 7.37%) - - org/mozill.. + org/mozilla/javascript/MemberBox:.invoke (21 samples, 7.34%) + + org/mozill.. - sun/reflect/DelegatingMethodAccessorImpl:.invoke (19 samples, 6.67%) - - sun/refle.. + sun/reflect/DelegatingMethodAccessorImpl:.invoke (19 samples, 6.64%) + + sun/refle.. sun/nio/cs/UTF_8$Encoder:.<init> (1 samples, 0.35%) - - + + jbyte_disjoint_arraycopy (1 samples, 0.35%) - - + + - io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (128 samples, 44.91%) - - io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (128 samples, 44.76%) + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead - org/vertx/java/core/net/impl/VertxHandler:.channelRead (128 samples, 44.91%) - - org/vertx/java/core/net/impl/VertxHandler:.channelRead + org/vertx/java/core/net/impl/VertxHandler:.channelRead (128 samples, 44.76%) + + org/vertx/java/core/net/impl/VertxHandler:.channelRead - org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (124 samples, 43.51%) - - org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessag.. + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (124 samples, 43.36%) + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessag.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (117 samples, 41.05%) - - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (117 samples, 40.91%) + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (116 samples, 40.70%) - - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (116 samples, 40.56%) + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call (27 samples, 9.47%) - - org/mozilla/ja.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call (27 samples, 9.44%) + + org/mozilla/ja.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (24 samples, 8.42%) - - org/mozilla/.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (24 samples, 8.39%) + + org/mozilla/.. org/mozilla/javascript/ScriptRuntime:.name (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.nameOrFunction (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue (1 samples, 0.35%) - - + + io/netty/buffer/AbstractByteBuf:.forEachByteAsc0 (1 samples, 0.35%) - - + + io/netty/util/internal/AppendableCharSequence:.append (1 samples, 0.35%) - - + + io/netty/handler/codec/http/HttpHeaders:.isTransferEncodingChunked (1 samples, 0.35%) - - + + io/netty/handler/codec/http/HttpObjectDecoder:.findWhitespace (1 samples, 0.35%) - - + + io/netty/buffer/AbstractByteBuf:.forEachByteAsc0 (2 samples, 0.70%) - - + + io/netty/handler/codec/http/HttpHeaders:.hash (1 samples, 0.35%) - - + + io/netty/handler/codec/http/HttpObjectDecoder:.splitHeader (5 samples, 1.75%) - - + + - io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (143 samples, 50.18%) - - io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (143 samples, 50.00%) + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead - io/netty/handler/codec/ByteToMessageDecoder:.channelRead (143 samples, 50.18%) - - io/netty/handler/codec/ByteToMessageDecoder:.channelRead + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (143 samples, 50.00%) + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead - io/netty/handler/codec/http/HttpObjectDecoder:.decode (13 samples, 4.56%) - - io/ne.. + io/netty/handler/codec/http/HttpObjectDecoder:.decode (13 samples, 4.55%) + + io/ne.. - io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders (10 samples, 3.51%) - - io/.. + io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders (10 samples, 3.50%) + + io/.. java/util/Arrays:.fill (1 samples, 0.35%) - - + + java/nio/channels/spi/AbstractInterruptibleChannel:.end (1 samples, 0.35%) - - + + sys_read (1 samples, 0.35%) - - + + do_sync_read (1 samples, 0.35%) - - + + __kfree_skb (1 samples, 0.35%) - - + + tcp_rcv_space_adjust (1 samples, 0.35%) - - + + skb_release_data (1 samples, 0.35%) - - + + __kfree_skb (2 samples, 0.70%) - - + + skb_release_head_state (1 samples, 0.35%) - - + + dst_release (1 samples, 0.35%) - - + + _raw_spin_lock_bh (1 samples, 0.35%) - - + + skb_copy_datagram_iovec (2 samples, 0.70%) - - + + copy_user_enhanced_fast_string (1 samples, 0.35%) - - + + - do_sync_read (9 samples, 3.16%) - - do_.. + do_sync_read (9 samples, 3.15%) + + do_.. - sock_aio_read (9 samples, 3.16%) - - soc.. + sock_aio_read (9 samples, 3.15%) + + soc.. - sock_aio_read.part.13 (9 samples, 3.16%) - - soc.. + sock_aio_read.part.13 (9 samples, 3.15%) + + soc.. - do_sock_read.isra.12 (9 samples, 3.16%) - - do_.. + do_sock_read.isra.12 (9 samples, 3.15%) + + do_.. - inet_recvmsg (9 samples, 3.16%) - - ine.. + inet_recvmsg (9 samples, 3.15%) + + ine.. - tcp_recvmsg (7 samples, 2.46%) - - tc.. + tcp_recvmsg (7 samples, 2.45%) + + tc.. tcp_cleanup_rbuf (2 samples, 0.70%) - - + + __tcp_select_window (1 samples, 0.35%) - - + + - io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes (16 samples, 5.61%) - - io/nett.. + io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes (16 samples, 5.59%) + + io/nett.. - sun/nio/ch/SocketChannelImpl:.read (16 samples, 5.61%) - - sun/nio.. + sun/nio/ch/SocketChannelImpl:.read (16 samples, 5.59%) + + sun/nio.. - sun/nio/ch/FileDispatcherImpl:.read0 (15 samples, 5.26%) - - sun/ni.. + sun/nio/ch/FileDispatcherImpl:.read0 (15 samples, 5.24%) + + sun/ni.. - read (15 samples, 5.26%) - - read + read (15 samples, 5.24%) + + read - system_call_fastpath (12 samples, 4.21%) - - syste.. + system_call_fastpath (12 samples, 4.20%) + + syste.. - sys_read (12 samples, 4.21%) - - sys_r.. + sys_read (12 samples, 4.20%) + + sys_r.. - vfs_read (10 samples, 3.51%) - - vfs.. + vfs_read (10 samples, 3.50%) + + vfs.. rw_verify_area (1 samples, 0.35%) - - + + - io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (260 samples, 91.23%) - - io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (261 samples, 91.26%) + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + - JavaThread::run (263 samples, 92.28%) - - JavaThread::run + JavaThread::run (264 samples, 92.31%) + + JavaThread::run - JavaThread::thread_main_inner (263 samples, 92.28%) - - JavaThread::thread_main_inner + JavaThread::thread_main_inner (264 samples, 92.31%) + + JavaThread::thread_main_inner - thread_entry (263 samples, 92.28%) - - thread_entry + thread_entry (264 samples, 92.31%) + + thread_entry - JavaCalls::call_virtual (263 samples, 92.28%) - - JavaCalls::call_virtual + JavaCalls::call_virtual (264 samples, 92.31%) + + JavaCalls::call_virtual - JavaCalls::call_virtual (263 samples, 92.28%) - - JavaCalls::call_virtual + JavaCalls::call_virtual (264 samples, 92.31%) + + JavaCalls::call_virtual - JavaCalls::call_helper (263 samples, 92.28%) - - JavaCalls::call_helper + JavaCalls::call_helper (264 samples, 92.31%) + + JavaCalls::call_helper - call_stub (263 samples, 92.28%) - - call_stub + call_stub (264 samples, 92.31%) + + call_stub - Interpreter (263 samples, 92.28%) - - Interpreter + Interpreter (264 samples, 92.31%) + + Interpreter - Interpreter (263 samples, 92.28%) - - Interpreter + Interpreter (264 samples, 92.31%) + + Interpreter - io/netty/channel/nio/NioEventLoop:.run (263 samples, 92.28%) - - io/netty/channel/nio/NioEventLoop:.run + io/netty/channel/nio/NioEventLoop:.run (264 samples, 92.31%) + + io/netty/channel/nio/NioEventLoop:.run - io/netty/channel/nio/NioEventLoop:.processSelectedKeys (262 samples, 91.93%) - - io/netty/channel/nio/NioEventLoop:.processSelectedKeys + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (263 samples, 91.96%) + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys - io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (262 samples, 91.93%) - - io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (263 samples, 91.96%) + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized - io/netty/channel/nio/NioEventLoop:.processSelectedKey (261 samples, 91.58%) - - io/netty/channel/nio/NioEventLoop:.processSelectedKey + io/netty/channel/nio/NioEventLoop:.processSelectedKey (262 samples, 91.61%) + + io/netty/channel/nio/NioEventLoop:.processSelectedKey io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes (1 samples, 0.35%) - - + + PSIsAliveClosure::do_object_b (1 samples, 0.35%) - - + + StringTable::unlink_or_oops_do (2 samples, 0.70%) - - + + - start_thread (281 samples, 98.60%) - - start_thread + start_thread (282 samples, 98.60%) + + start_thread - java_start (281 samples, 98.60%) - - java_start + java_start (282 samples, 98.60%) + + java_start VMThread::run (4 samples, 1.40%) - - + + VMThread::loop (4 samples, 1.40%) - - + + VMThread::evaluate_operation (4 samples, 1.40%) - - + + VM_Operation::evaluate (4 samples, 1.40%) - - + + VM_ParallelGCFailedAllocation::doit (4 samples, 1.40%) - - + + ParallelScavengeHeap::failed_mem_allocate (4 samples, 1.40%) - - + + PSScavenge::invoke (4 samples, 1.40%) - - + + PSScavenge::invoke_no_policy (4 samples, 1.40%) - - + + pthread_cond_signal@@GLIBC_2.3.2 (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + sys_futex (1 samples, 0.35%) - - + + do_futex (1 samples, 0.35%) - - + + futex_wake_op (1 samples, 0.35%) - - + + - all (285 samples, 100%) + all (286 samples, 100%) - java (285 samples, 100.00%) + java (286 samples, 100.00%) java write (3 samples, 1.05%) - - + + check_events (3 samples, 1.05%) - - + + hypercall_page (3 samples, 1.05%) - - + + \ No newline at end of file diff --git a/tests/data/flamegraph/perf-vertx-stacks/perf-vertx-stacks-01-collapsed-all-reversed-stacks.svg b/tests/data/flamegraph/perf-vertx-stacks/perf-vertx-stacks-01-collapsed-all-reversed-stacks.svg index 977234bd..287b955c 100644 --- a/tests/data/flamegraph/perf-vertx-stacks/perf-vertx-stacks-01-collapsed-all-reversed-stacks.svg +++ b/tests/data/flamegraph/perf-vertx-stacks/perf-vertx-stacks-01-collapsed-all-reversed-stacks.svg @@ -37,32228 +37,32568 @@ var truncate_text_right = false;]]> (3 samples, 1.05%) - + sun/nio/ch/FileDispatcherImpl:.write0 (3 samples, 1.05%) - + sun/nio/ch/SocketChannelImpl:.write (3 samples, 1.05%) - + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (3 samples, 1.05%) - + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (3 samples, 1.05%) - + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (3 samples, 1.05%) - + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (3 samples, 1.05%) - + io/netty/channel/AbstractChannelHandlerContext:.flush (3 samples, 1.05%) - + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (3 samples, 1.05%) - + io/netty/channel/AbstractChannelHandlerContext:.flush (3 samples, 1.05%) - + io/netty/channel/ChannelDuplexHandler:.flush (3 samples, 1.05%) - + io/netty/channel/AbstractChannelHandlerContext:.flush (3 samples, 1.05%) - + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (3 samples, 1.05%) - + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (3 samples, 1.05%) - + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (3 samples, 1.05%) - + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (3 samples, 1.05%) - + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (3 samples, 1.05%) - + io/netty/channel/nio/NioEventLoop:.processSelectedKey (3 samples, 1.05%) - + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (3 samples, 1.05%) - + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (3 samples, 1.05%) - + io/netty/channel/nio/NioEventLoop:.run (3 samples, 1.05%) - + Interpreter (3 samples, 1.05%) - + Interpreter (3 samples, 1.05%) - + call_stub (3 samples, 1.05%) - + JavaCalls::call_helper (3 samples, 1.05%) - + JavaCalls::call_virtual (3 samples, 1.05%) - + JavaCalls::call_virtual (3 samples, 1.05%) - + thread_entry (3 samples, 1.05%) - + JavaThread::thread_main_inner (3 samples, 1.05%) - + JavaThread::run (3 samples, 1.05%) - + java_start (3 samples, 1.05%) - + start_thread (3 samples, 1.05%) - + java (3 samples, 1.05%) - + InstanceKlass::oop_push_contents (1 samples, 0.35%) - - + + oopDesc* PSPromotionManager::copy_to_survivor_space<false> (1 samples, 0.35%) - - + + PSPromotionManager::drain_stacks_depth (1 samples, 0.35%) - - + + StealTask::do_it (1 samples, 0.35%) - - + + GCTaskThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + Java_sun_nio_ch_FileDispatcherImpl_write0 (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + PSIsAliveClosure::do_object_b (1 samples, 0.35%) - - + + PSScavenge::invoke_no_policy (1 samples, 0.35%) - - + + PSScavenge::invoke (1 samples, 0.35%) - - + + ParallelScavengeHeap::failed_mem_allocate (1 samples, 0.35%) - - + + VM_ParallelGCFailedAllocation::doit (1 samples, 0.35%) - - + + VM_Operation::evaluate (1 samples, 0.35%) - - + + VMThread::evaluate_operation (1 samples, 0.35%) - - + + VMThread::loop (1 samples, 0.35%) - - + + VMThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + PSScavengeKlassClosure::do_klass (1 samples, 0.35%) - - + + ClassLoaderData::oops_do (1 samples, 0.35%) - - + + ClassLoaderDataGraph::oops_do (1 samples, 0.35%) - - + + ScavengeRootsTask::do_it (1 samples, 0.35%) - - + + GCTaskThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + ParallelTaskTerminator::offer_termination (5 samples, 1.75%) - - + + StealTask::do_it (5 samples, 1.75%) - - + + GCTaskThread::run (5 samples, 1.75%) - - + + java_start (5 samples, 1.75%) - - + + start_thread (5 samples, 1.75%) - - + + java (5 samples, 1.75%) - - + + - SpinPause (7 samples, 2.46%) - - Sp.. + SpinPause (7 samples, 2.45%) + + Sp.. - StealTask::do_it (7 samples, 2.46%) - - St.. + StealTask::do_it (7 samples, 2.45%) + + St.. - GCTaskThread::run (7 samples, 2.46%) - - GC.. + GCTaskThread::run (7 samples, 2.45%) + + GC.. - java_start (7 samples, 2.46%) - - ja.. + java_start (7 samples, 2.45%) + + ja.. - start_thread (7 samples, 2.46%) - - st.. + start_thread (7 samples, 2.45%) + + st.. - java (7 samples, 2.46%) - - ja.. + java (7 samples, 2.45%) + + ja.. StringTable::unlink_or_oops_do (2 samples, 0.70%) - - + + PSScavenge::invoke_no_policy (2 samples, 0.70%) - - + + PSScavenge::invoke (2 samples, 0.70%) - - + + ParallelScavengeHeap::failed_mem_allocate (2 samples, 0.70%) - - + + VM_ParallelGCFailedAllocation::doit (2 samples, 0.70%) - - + + VM_Operation::evaluate (2 samples, 0.70%) - - + + VMThread::evaluate_operation (2 samples, 0.70%) - - + + VMThread::loop (2 samples, 0.70%) - - + + VMThread::run (2 samples, 0.70%) - - + + java_start (2 samples, 0.70%) - - + + start_thread (2 samples, 0.70%) - - + + java (2 samples, 0.70%) - - + + __alloc_skb (1 samples, 0.35%) - - + + sk_stream_alloc_skb (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + __inet_lookup_established (3 samples, 1.05%) - - + + tcp_v4_rcv (3 samples, 1.05%) - - + + ip_local_deliver_finish (3 samples, 1.05%) - - + + ip_local_deliver (3 samples, 1.05%) - - + + ip_rcv_finish (3 samples, 1.05%) - - + + ip_rcv (3 samples, 1.05%) - - + + __netif_receive_skb (3 samples, 1.05%) - - + + process_backlog (3 samples, 1.05%) - - + + net_rx_action (3 samples, 1.05%) - - + + __do_softirq (3 samples, 1.05%) - - + + call_softirq (3 samples, 1.05%) - - + + do_softirq (3 samples, 1.05%) - - + + local_bh_enable (3 samples, 1.05%) - - + + dev_queue_xmit (3 samples, 1.05%) - - + + ip_finish_output (3 samples, 1.05%) - - + + ip_output (3 samples, 1.05%) - - + + ip_local_out (3 samples, 1.05%) - - + + ip_queue_xmit (3 samples, 1.05%) - - + + tcp_transmit_skb (3 samples, 1.05%) - - + + tcp_write_xmit (3 samples, 1.05%) - - + + __tcp_push_pending_frames (3 samples, 1.05%) - - + + tcp_sendmsg (3 samples, 1.05%) - - + + inet_sendmsg (3 samples, 1.05%) - - + + do_sock_write.isra.10 (3 samples, 1.05%) - - + + sock_aio_write (3 samples, 1.05%) - - + + do_sync_write (3 samples, 1.05%) - - + + vfs_write (3 samples, 1.05%) - - + + sys_write (3 samples, 1.05%) - - + + system_call_fastpath (3 samples, 1.05%) - - + + write (3 samples, 1.05%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (3 samples, 1.05%) - - + + sun/nio/ch/SocketChannelImpl:.write (3 samples, 1.05%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (3 samples, 1.05%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (3 samples, 1.05%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (3 samples, 1.05%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (3 samples, 1.05%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (3 samples, 1.05%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (3 samples, 1.05%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (3 samples, 1.05%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (3 samples, 1.05%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (3 samples, 1.05%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (3 samples, 1.05%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (3 samples, 1.05%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (3 samples, 1.05%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (3 samples, 1.05%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (3 samples, 1.05%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (3 samples, 1.05%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (3 samples, 1.05%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (3 samples, 1.05%) - - + + io/netty/channel/nio/NioEventLoop:.run (3 samples, 1.05%) - - + + Interpreter (3 samples, 1.05%) - - + + Interpreter (3 samples, 1.05%) - - + + call_stub (3 samples, 1.05%) - - + + JavaCalls::call_helper (3 samples, 1.05%) - - + + JavaCalls::call_virtual (3 samples, 1.05%) - - + + JavaCalls::call_virtual (3 samples, 1.05%) - - + + thread_entry (3 samples, 1.05%) - - + + JavaThread::thread_main_inner (3 samples, 1.05%) - - + + JavaThread::run (3 samples, 1.05%) - - + + java_start (3 samples, 1.05%) - - + + start_thread (3 samples, 1.05%) - - + + java (3 samples, 1.05%) - - + + __kfree_skb (1 samples, 0.35%) - - + + inet_recvmsg (1 samples, 0.35%) - - + + do_sock_read.isra.12 (1 samples, 0.35%) - - + + sock_aio_read.part.13 (1 samples, 0.35%) - - + + sock_aio_read (1 samples, 0.35%) - - + + do_sync_read (1 samples, 0.35%) - - + + vfs_read (1 samples, 0.35%) - - + + sys_read (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + read (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.read0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.read (1 samples, 0.35%) - - + + io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + __kmalloc_node_track_caller (1 samples, 0.35%) - - + + __alloc_skb (1 samples, 0.35%) - - + + sk_stream_alloc_skb (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + __netif_receive_skb (1 samples, 0.35%) - - + + process_backlog (1 samples, 0.35%) - - + + net_rx_action (1 samples, 0.35%) - - + + __do_softirq (1 samples, 0.35%) - - + + call_softirq (1 samples, 0.35%) - - + + do_softirq (1 samples, 0.35%) - - + + local_bh_enable (1 samples, 0.35%) - - + + dev_queue_xmit (1 samples, 0.35%) - - + + ip_finish_output (1 samples, 0.35%) - - + + ip_output (1 samples, 0.35%) - - + + ip_local_out (1 samples, 0.35%) - - + + ip_queue_xmit (1 samples, 0.35%) - - + + tcp_transmit_skb (1 samples, 0.35%) - - + + tcp_write_xmit (1 samples, 0.35%) - - + + __tcp_push_pending_frames (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + __phys_addr (1 samples, 0.35%) - - + + __alloc_skb (1 samples, 0.35%) - - + + sk_stream_alloc_skb (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + fsnotify (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + __srcu_read_lock (2 samples, 0.70%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + __tcp_push_pending_frames (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + __tcp_select_window (1 samples, 0.35%) - - + + tcp_cleanup_rbuf (1 samples, 0.35%) - - + + tcp_recvmsg (1 samples, 0.35%) - - + + inet_recvmsg (1 samples, 0.35%) - - + + do_sock_read.isra.12 (1 samples, 0.35%) - - + + sock_aio_read.part.13 (1 samples, 0.35%) - - + + sock_aio_read (1 samples, 0.35%) - - + + do_sync_read (1 samples, 0.35%) - - + + vfs_read (1 samples, 0.35%) - - + + sys_read (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + read (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.read0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.read (1 samples, 0.35%) - - + + io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + _raw_spin_lock_bh (1 samples, 0.35%) - - + + tcp_recvmsg (1 samples, 0.35%) - - + + inet_recvmsg (1 samples, 0.35%) - - + + do_sock_read.isra.12 (1 samples, 0.35%) - - + + sock_aio_read.part.13 (1 samples, 0.35%) - - + + sock_aio_read (1 samples, 0.35%) - - + + do_sync_read (1 samples, 0.35%) - - + + vfs_read (1 samples, 0.35%) - - + + sys_read (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + read (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.read0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.read (1 samples, 0.35%) - - + + io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + apparmor_file_permission (1 samples, 0.35%) - - + + rw_verify_area (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + arch_local_irq_save (1 samples, 0.35%) - - + + __kmalloc_node_track_caller (1 samples, 0.35%) - - + + __alloc_skb (1 samples, 0.35%) - - + + sk_stream_alloc_skb (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + bictcp_acked (1 samples, 0.35%) - - + + tcp_clean_rtx_queue (1 samples, 0.35%) - - + + tcp_ack (1 samples, 0.35%) - - + + tcp_rcv_established (1 samples, 0.35%) - - + + tcp_v4_do_rcv (1 samples, 0.35%) - - + + tcp_v4_rcv (1 samples, 0.35%) - - + + ip_local_deliver_finish (1 samples, 0.35%) - - + + ip_local_deliver (1 samples, 0.35%) - - + + ip_rcv_finish (1 samples, 0.35%) - - + + ip_rcv (1 samples, 0.35%) - - + + __netif_receive_skb (1 samples, 0.35%) - - + + process_backlog (1 samples, 0.35%) - - + + net_rx_action (1 samples, 0.35%) - - + + __do_softirq (1 samples, 0.35%) - - + + call_softirq (1 samples, 0.35%) - - + + do_softirq (1 samples, 0.35%) - - + + local_bh_enable (1 samples, 0.35%) - - + + dev_queue_xmit (1 samples, 0.35%) - - + + ip_finish_output (1 samples, 0.35%) - - + + ip_output (1 samples, 0.35%) - - + + ip_local_out (1 samples, 0.35%) - - + + ip_queue_xmit (1 samples, 0.35%) - - + + tcp_transmit_skb (1 samples, 0.35%) - - + + tcp_write_xmit (1 samples, 0.35%) - - + + __tcp_push_pending_frames (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + common_file_perm (1 samples, 0.35%) - - + + apparmor_file_permission (1 samples, 0.35%) - - + + security_file_permission (1 samples, 0.35%) - - + + rw_verify_area (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + copy_user_enhanced_fast_string (1 samples, 0.35%) - - + + skb_copy_datagram_iovec (1 samples, 0.35%) - - + + tcp_recvmsg (1 samples, 0.35%) - - + + inet_recvmsg (1 samples, 0.35%) - - + + do_sock_read.isra.12 (1 samples, 0.35%) - - + + sock_aio_read.part.13 (1 samples, 0.35%) - - + + sock_aio_read (1 samples, 0.35%) - - + + do_sync_read (1 samples, 0.35%) - - + + vfs_read (1 samples, 0.35%) - - + + sys_read (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + read (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.read0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.read (1 samples, 0.35%) - - + + io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + dev_hard_start_xmit (1 samples, 0.35%) - - + + ip_finish_output (1 samples, 0.35%) - - + + ip_output (1 samples, 0.35%) - - + + ip_local_out (1 samples, 0.35%) - - + + ip_queue_xmit (1 samples, 0.35%) - - + + tcp_transmit_skb (1 samples, 0.35%) - - + + tcp_write_xmit (1 samples, 0.35%) - - + + __tcp_push_pending_frames (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + dev_pick_tx (1 samples, 0.35%) - - + + ip_finish_output (1 samples, 0.35%) - - + + ip_output (1 samples, 0.35%) - - + + ip_local_out (1 samples, 0.35%) - - + + ip_queue_xmit (1 samples, 0.35%) - - + + tcp_transmit_skb (1 samples, 0.35%) - - + + tcp_write_xmit (1 samples, 0.35%) - - + + __tcp_push_pending_frames (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + dev_queue_xmit_nit (1 samples, 0.35%) - - + + dev_hard_start_xmit (1 samples, 0.35%) - - + + dev_queue_xmit (1 samples, 0.35%) - - + + ip_finish_output (1 samples, 0.35%) - - + + ip_output (1 samples, 0.35%) - - + + ip_local_out (1 samples, 0.35%) - - + + ip_queue_xmit (1 samples, 0.35%) - - + + tcp_transmit_skb (1 samples, 0.35%) - - + + tcp_write_xmit (1 samples, 0.35%) - - + + __tcp_push_pending_frames (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + dma_issue_pending_all (1 samples, 0.35%) - - + + net_rx_action (1 samples, 0.35%) - - + + __do_softirq (1 samples, 0.35%) - - + + call_softirq (1 samples, 0.35%) - - + + do_softirq (1 samples, 0.35%) - - + + local_bh_enable (1 samples, 0.35%) - - + + dev_queue_xmit (1 samples, 0.35%) - - + + ip_finish_output (1 samples, 0.35%) - - + + ip_output (1 samples, 0.35%) - - + + ip_local_out (1 samples, 0.35%) - - + + ip_queue_xmit (1 samples, 0.35%) - - + + tcp_transmit_skb (1 samples, 0.35%) - - + + tcp_write_xmit (1 samples, 0.35%) - - + + __tcp_push_pending_frames (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + do_sync_read (1 samples, 0.35%) - - + + sys_read (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + read (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.read0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.read (1 samples, 0.35%) - - + + io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + dst_release (1 samples, 0.35%) - - + + skb_release_head_state (1 samples, 0.35%) - - + + __kfree_skb (1 samples, 0.35%) - - + + tcp_recvmsg (1 samples, 0.35%) - - + + inet_recvmsg (1 samples, 0.35%) - - + + do_sock_read.isra.12 (1 samples, 0.35%) - - + + sock_aio_read.part.13 (1 samples, 0.35%) - - + + sock_aio_read (1 samples, 0.35%) - - + + do_sync_read (1 samples, 0.35%) - - + + vfs_read (1 samples, 0.35%) - - + + sys_read (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + read (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.read0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.read (1 samples, 0.35%) - - + + io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + fget_light (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + fsnotify (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + futex_wake_op (1 samples, 0.35%) - - + + do_futex (1 samples, 0.35%) - - + + sys_futex (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + pthread_cond_signal@@GLIBC_2.3.2 (1 samples, 0.35%) - - + + PSScavenge::invoke_no_policy (1 samples, 0.35%) - - + + PSScavenge::invoke (1 samples, 0.35%) - - + + ParallelScavengeHeap::failed_mem_allocate (1 samples, 0.35%) - - + + VM_ParallelGCFailedAllocation::doit (1 samples, 0.35%) - - + + VM_Operation::evaluate (1 samples, 0.35%) - - + + VMThread::evaluate_operation (1 samples, 0.35%) - - + + VMThread::loop (1 samples, 0.35%) - - + + VMThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + get_slab (2 samples, 0.70%) - - + + __alloc_skb (2 samples, 0.70%) - - + + sk_stream_alloc_skb (2 samples, 0.70%) - - + + tcp_sendmsg (2 samples, 0.70%) - - + + inet_sendmsg (2 samples, 0.70%) - - + + do_sock_write.isra.10 (2 samples, 0.70%) - - + + sock_aio_write (2 samples, 0.70%) - - + + do_sync_write (2 samples, 0.70%) - - + + vfs_write (2 samples, 0.70%) - - + + sys_write (2 samples, 0.70%) - - + + system_call_fastpath (2 samples, 0.70%) - - + + write (2 samples, 0.70%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (2 samples, 0.70%) - - + + sun/nio/ch/SocketChannelImpl:.write (2 samples, 0.70%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (2 samples, 0.70%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (2 samples, 0.70%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (2 samples, 0.70%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (2 samples, 0.70%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (2 samples, 0.70%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (2 samples, 0.70%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (2 samples, 0.70%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.run (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + call_stub (2 samples, 0.70%) - - + + JavaCalls::call_helper (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + thread_entry (2 samples, 0.70%) - - + + JavaThread::thread_main_inner (2 samples, 0.70%) - - + + JavaThread::run (2 samples, 0.70%) - - + + java_start (2 samples, 0.70%) - - + + start_thread (2 samples, 0.70%) - - + + java (2 samples, 0.70%) - - + + getnstimeofday (1 samples, 0.35%) - - + + ktime_get_real (1 samples, 0.35%) - - + + tcp_clean_rtx_queue (1 samples, 0.35%) - - + + tcp_ack (1 samples, 0.35%) - - + + tcp_rcv_established (1 samples, 0.35%) - - + + tcp_v4_do_rcv (1 samples, 0.35%) - - + + tcp_v4_rcv (1 samples, 0.35%) - - + + ip_local_deliver_finish (1 samples, 0.35%) - - + + ip_local_deliver (1 samples, 0.35%) - - + + ip_rcv_finish (1 samples, 0.35%) - - + + ip_rcv (1 samples, 0.35%) - - + + __netif_receive_skb (1 samples, 0.35%) - - + + process_backlog (1 samples, 0.35%) - - + + net_rx_action (1 samples, 0.35%) - - + + __do_softirq (1 samples, 0.35%) - - + + call_softirq (1 samples, 0.35%) - - + + do_softirq (1 samples, 0.35%) - - + + local_bh_enable (1 samples, 0.35%) - - + + dev_queue_xmit (1 samples, 0.35%) - - + + ip_finish_output (1 samples, 0.35%) - - + + ip_output (1 samples, 0.35%) - - + + ip_local_out (1 samples, 0.35%) - - + + ip_queue_xmit (1 samples, 0.35%) - - + + tcp_transmit_skb (1 samples, 0.35%) - - + + tcp_write_xmit (1 samples, 0.35%) - - + + __tcp_push_pending_frames (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + - __wake_up_sync_key (19 samples, 6.67%) - - __wake_up.. + __wake_up_sync_key (19 samples, 6.64%) + + __wake_up.. - sock_def_readable (19 samples, 6.67%) - - sock_def_.. + sock_def_readable (19 samples, 6.64%) + + sock_def_.. - tcp_rcv_established (19 samples, 6.67%) - - tcp_rcv_e.. + tcp_rcv_established (19 samples, 6.64%) + + tcp_rcv_e.. - tcp_v4_do_rcv (19 samples, 6.67%) - - tcp_v4_do.. + tcp_v4_do_rcv (19 samples, 6.64%) + + tcp_v4_do.. - tcp_v4_rcv (19 samples, 6.67%) - - tcp_v4_rcv + tcp_v4_rcv (19 samples, 6.64%) + + tcp_v4_rcv - ip_local_deliver_finish (19 samples, 6.67%) - - ip_local_.. + ip_local_deliver_finish (19 samples, 6.64%) + + ip_local_.. - ip_local_deliver (19 samples, 6.67%) - - ip_local_.. + ip_local_deliver (19 samples, 6.64%) + + ip_local_.. - ip_rcv_finish (19 samples, 6.67%) - - ip_rcv_fi.. + ip_rcv_finish (19 samples, 6.64%) + + ip_rcv_fi.. - ip_rcv (19 samples, 6.67%) - - ip_rcv + ip_rcv (19 samples, 6.64%) + + ip_rcv - __netif_receive_skb (19 samples, 6.67%) - - __netif_r.. + __netif_receive_skb (19 samples, 6.64%) + + __netif_r.. - process_backlog (19 samples, 6.67%) - - process_b.. + process_backlog (19 samples, 6.64%) + + process_b.. - net_rx_action (19 samples, 6.67%) - - net_rx_ac.. + net_rx_action (19 samples, 6.64%) + + net_rx_ac.. - __do_softirq (19 samples, 6.67%) - - __do_soft.. + __do_softirq (19 samples, 6.64%) + + __do_soft.. - call_softirq (19 samples, 6.67%) - - call_soft.. + call_softirq (19 samples, 6.64%) + + call_soft.. - do_softirq (19 samples, 6.67%) - - do_softirq + do_softirq (19 samples, 6.64%) + + do_softirq - local_bh_enable (19 samples, 6.67%) - - local_bh_.. + local_bh_enable (19 samples, 6.64%) + + local_bh_.. - dev_queue_xmit (19 samples, 6.67%) - - dev_queue.. + dev_queue_xmit (19 samples, 6.64%) + + dev_queue.. - ip_finish_output (19 samples, 6.67%) - - ip_finish.. + ip_finish_output (19 samples, 6.64%) + + ip_finish.. - ip_output (19 samples, 6.67%) - - ip_output + ip_output (19 samples, 6.64%) + + ip_output - ip_local_out (19 samples, 6.67%) - - ip_local_.. + ip_local_out (19 samples, 6.64%) + + ip_local_.. - ip_queue_xmit (19 samples, 6.67%) - - ip_queue_.. + ip_queue_xmit (19 samples, 6.64%) + + ip_queue_.. - tcp_transmit_skb (19 samples, 6.67%) - - tcp_trans.. + tcp_transmit_skb (19 samples, 6.64%) + + tcp_trans.. - tcp_write_xmit (19 samples, 6.67%) - - tcp_write.. + tcp_write_xmit (19 samples, 6.64%) + + tcp_write.. - __tcp_push_pending_frames (19 samples, 6.67%) - - __tcp_pus.. + __tcp_push_pending_frames (19 samples, 6.64%) + + __tcp_pus.. - tcp_sendmsg (19 samples, 6.67%) - - tcp_sendm.. + tcp_sendmsg (19 samples, 6.64%) + + tcp_sendm.. - inet_sendmsg (19 samples, 6.67%) - - inet_send.. + inet_sendmsg (19 samples, 6.64%) + + inet_send.. - do_sock_write.isra.10 (19 samples, 6.67%) - - do_sock_w.. + do_sock_write.isra.10 (19 samples, 6.64%) + + do_sock_w.. - sock_aio_write (19 samples, 6.67%) - - sock_aio_.. + sock_aio_write (19 samples, 6.64%) + + sock_aio_.. - do_sync_write (19 samples, 6.67%) - - do_sync_w.. + do_sync_write (19 samples, 6.64%) + + do_sync_w.. - vfs_write (19 samples, 6.67%) - - vfs_write + vfs_write (19 samples, 6.64%) + + vfs_write - sys_write (19 samples, 6.67%) - - sys_write + sys_write (19 samples, 6.64%) + + sys_write - system_call_fastpath (19 samples, 6.67%) - - system_ca.. + system_call_fastpath (19 samples, 6.64%) + + system_ca.. - write (19 samples, 6.67%) - - write + write (19 samples, 6.64%) + + write - sun/nio/ch/FileDispatcherImpl:.write0 (19 samples, 6.67%) - - sun/nio/c.. + sun/nio/ch/FileDispatcherImpl:.write0 (19 samples, 6.64%) + + sun/nio/c.. - sun/nio/ch/SocketChannelImpl:.write (19 samples, 6.67%) - - sun/nio/c.. + sun/nio/ch/SocketChannelImpl:.write (19 samples, 6.64%) + + sun/nio/c.. - io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (19 samples, 6.67%) - - io/netty/.. + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (19 samples, 6.64%) + + io/netty/.. - io/netty/channel/nio/AbstractNioByteChannel:.doWrite (19 samples, 6.67%) - - io/netty/.. + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (19 samples, 6.64%) + + io/netty/.. - io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (19 samples, 6.67%) - - io/netty/.. + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (19 samples, 6.64%) + + io/netty/.. - io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (19 samples, 6.67%) - - io/netty/.. + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (19 samples, 6.64%) + + io/netty/.. - io/netty/channel/AbstractChannelHandlerContext:.flush (19 samples, 6.67%) - - io/netty/.. + io/netty/channel/AbstractChannelHandlerContext:.flush (19 samples, 6.64%) + + io/netty/.. - io/netty/channel/ChannelOutboundHandlerAdapter:.flush (19 samples, 6.67%) - - io/netty/.. + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (19 samples, 6.64%) + + io/netty/.. - io/netty/channel/AbstractChannelHandlerContext:.flush (19 samples, 6.67%) - - io/netty/.. + io/netty/channel/AbstractChannelHandlerContext:.flush (19 samples, 6.64%) + + io/netty/.. - io/netty/channel/ChannelDuplexHandler:.flush (19 samples, 6.67%) - - io/netty/.. + io/netty/channel/ChannelDuplexHandler:.flush (19 samples, 6.64%) + + io/netty/.. - io/netty/channel/AbstractChannelHandlerContext:.flush (19 samples, 6.67%) - - io/netty/.. + io/netty/channel/AbstractChannelHandlerContext:.flush (19 samples, 6.64%) + + io/netty/.. - org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (19 samples, 6.67%) - - org/vertx.. + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (19 samples, 6.64%) + + org/vertx.. - io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (19 samples, 6.67%) - - io/netty/.. + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (19 samples, 6.64%) + + io/netty/.. - io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (19 samples, 6.67%) - - io/netty/.. + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (19 samples, 6.64%) + + io/netty/.. - io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (19 samples, 6.67%) - - io/netty/.. + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (19 samples, 6.64%) + + io/netty/.. - io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (19 samples, 6.67%) - - io/netty/.. + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (19 samples, 6.64%) + + io/netty/.. - io/netty/channel/nio/NioEventLoop:.processSelectedKey (19 samples, 6.67%) - - io/netty/.. + io/netty/channel/nio/NioEventLoop:.processSelectedKey (19 samples, 6.64%) + + io/netty/.. - io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (19 samples, 6.67%) - - io/netty/.. + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (19 samples, 6.64%) + + io/netty/.. - io/netty/channel/nio/NioEventLoop:.processSelectedKeys (19 samples, 6.67%) - - io/netty/.. + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (19 samples, 6.64%) + + io/netty/.. - io/netty/channel/nio/NioEventLoop:.run (19 samples, 6.67%) - - io/netty/.. + io/netty/channel/nio/NioEventLoop:.run (19 samples, 6.64%) + + io/netty/.. - Interpreter (19 samples, 6.67%) - - Interpret.. + Interpreter (19 samples, 6.64%) + + Interpret.. - Interpreter (19 samples, 6.67%) - - Interpret.. + Interpreter (19 samples, 6.64%) + + Interpret.. - call_stub (19 samples, 6.67%) - - call_stub + call_stub (19 samples, 6.64%) + + call_stub - JavaCalls::call_helper (19 samples, 6.67%) - - JavaCalls.. + JavaCalls::call_helper (19 samples, 6.64%) + + JavaCalls.. - JavaCalls::call_virtual (19 samples, 6.67%) - - JavaCalls.. + JavaCalls::call_virtual (19 samples, 6.64%) + + JavaCalls.. - JavaCalls::call_virtual (19 samples, 6.67%) - - JavaCalls.. + JavaCalls::call_virtual (19 samples, 6.64%) + + JavaCalls.. - thread_entry (19 samples, 6.67%) - - thread_en.. + thread_entry (19 samples, 6.64%) + + thread_en.. - JavaThread::thread_main_inner (19 samples, 6.67%) - - JavaThrea.. + JavaThread::thread_main_inner (19 samples, 6.64%) + + JavaThrea.. - JavaThread::run (19 samples, 6.67%) - - JavaThrea.. + JavaThread::run (19 samples, 6.64%) + + JavaThrea.. - java_start (19 samples, 6.67%) - - java_start + java_start (19 samples, 6.64%) + + java_start - start_thread (19 samples, 6.67%) - - start_thr.. + start_thread (19 samples, 6.64%) + + start_thr.. - java (19 samples, 6.67%) - - java + java (19 samples, 6.64%) + + java read (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + - hypercall_page (23 samples, 8.07%) - - hypercall_p.. + hypercall_page (23 samples, 8.04%) + + hypercall_p.. - check_events (23 samples, 8.07%) - - check_events + check_events (23 samples, 8.04%) + + check_events write (3 samples, 1.05%) - - + + java (3 samples, 1.05%) - - + + io/netty/buffer/AbstractByteBuf:.forEachByteAsc0 (2 samples, 0.70%) - - + + io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders (2 samples, 0.70%) - - + + io/netty/handler/codec/http/HttpObjectDecoder:.decode (2 samples, 0.70%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (2 samples, 0.70%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.run (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + call_stub (2 samples, 0.70%) - - + + JavaCalls::call_helper (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + thread_entry (2 samples, 0.70%) - - + + JavaThread::thread_main_inner (2 samples, 0.70%) - - + + JavaThread::run (2 samples, 0.70%) - - + + java_start (2 samples, 0.70%) - - + + start_thread (2 samples, 0.70%) - - + + java (2 samples, 0.70%) - - + + io/netty/handler/codec/MessageToMessageEncoder:.write (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.write (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/VertxHttpHandler:.write (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.write (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.write (1 samples, 0.35%) - - + + sun/reflect/DelegatingMethodAccessorImpl:.invoke (1 samples, 0.35%) - - + + org/mozilla/javascript/MemberBox:.invoke (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaMethod:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + io/netty/buffer/AbstractByteBuf:.writeBytes (2 samples, 0.70%) - - + + io/netty/handler/codec/http/HttpObjectEncoder:.encode (1 samples, 0.35%) - - + + io/netty/handler/codec/MessageToMessageEncoder:.write (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.write (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/VertxHttpHandler:.write (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.write (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.write (1 samples, 0.35%) - - + + sun/reflect/DelegatingMethodAccessorImpl:.invoke (1 samples, 0.35%) - - + + org/mozilla/javascript/MemberBox:.invoke (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaMethod:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + io/netty/buffer/AbstractByteBufAllocator:.directBuffer (3 samples, 1.05%) - - + + io/netty/handler/codec/http/HttpObjectEncoder:.encode (2 samples, 0.70%) - - + + io/netty/handler/codec/MessageToMessageEncoder:.write (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.write (2 samples, 0.70%) - - + + org/vertx/java/core/http/impl/VertxHttpHandler:.write (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.write (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.write (2 samples, 0.70%) - - + + sun/reflect/DelegatingMethodAccessorImpl:.invoke (2 samples, 0.70%) - - + + org/mozilla/javascript/MemberBox:.invoke (2 samples, 0.70%) - - + + org/mozilla/javascript/NativeJavaMethod:.call (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (2 samples, 0.70%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (2 samples, 0.70%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (2 samples, 0.70%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.run (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + call_stub (2 samples, 0.70%) - - + + JavaCalls::call_helper (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + thread_entry (2 samples, 0.70%) - - + + JavaThread::thread_main_inner (2 samples, 0.70%) - - + + JavaThread::run (2 samples, 0.70%) - - + + java_start (2 samples, 0.70%) - - + + start_thread (2 samples, 0.70%) - - + + java (2 samples, 0.70%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + io/netty/buffer/AbstractReferenceCountedByteBuf:.release (2 samples, 0.70%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + io/netty/buffer/PooledByteBuf:.internalNioBuffer (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.write (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.write (1 samples, 0.35%) - - + + sun/reflect/DelegatingMethodAccessorImpl:.invoke (1 samples, 0.35%) - - + + org/mozilla/javascript/MemberBox:.invoke (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaMethod:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (2 samples, 0.70%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (2 samples, 0.70%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (2 samples, 0.70%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.run (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + call_stub (2 samples, 0.70%) - - + + JavaCalls::call_helper (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + thread_entry (2 samples, 0.70%) - - + + JavaThread::thread_main_inner (2 samples, 0.70%) - - + + JavaThread::run (2 samples, 0.70%) - - + + java_start (2 samples, 0.70%) - - + + start_thread (2 samples, 0.70%) - - + + java (2 samples, 0.70%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (2 samples, 0.70%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (2 samples, 0.70%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (2 samples, 0.70%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (2 samples, 0.70%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (2 samples, 0.70%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (2 samples, 0.70%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.run (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + call_stub (2 samples, 0.70%) - - + + JavaCalls::call_helper (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + thread_entry (2 samples, 0.70%) - - + + JavaThread::thread_main_inner (2 samples, 0.70%) - - + + JavaThread::run (2 samples, 0.70%) - - + + java_start (2 samples, 0.70%) - - + + start_thread (2 samples, 0.70%) - - + + java (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + io/netty/handler/codec/MessageToMessageEncoder:.write (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.write (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/VertxHttpHandler:.write (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.write (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.write (1 samples, 0.35%) - - + + sun/reflect/DelegatingMethodAccessorImpl:.invoke (1 samples, 0.35%) - - + + org/mozilla/javascript/MemberBox:.invoke (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaMethod:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + io/netty/handler/codec/http/DefaultHttpHeaders:.add0 (1 samples, 0.35%) - - + + sun/reflect/DelegatingMethodAccessorImpl:.invoke (1 samples, 0.35%) - - + + org/mozilla/javascript/MemberBox:.invoke (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaMethod:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/MemberBox:.invoke (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaMethod:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + io/netty/handler/codec/http/DefaultHttpHeaders:.set (2 samples, 0.70%) - - + + sun/reflect/DelegatingMethodAccessorImpl:.invoke (1 samples, 0.35%) - - + + org/mozilla/javascript/MemberBox:.invoke (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaMethod:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + io/netty/handler/codec/http/HttpHeaders:.hash (1 samples, 0.35%) - - + + io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders (1 samples, 0.35%) - - + + io/netty/handler/codec/http/HttpObjectDecoder:.decode (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + io/netty/handler/codec/http/HttpHeaders:.isTransferEncodingChunked (1 samples, 0.35%) - - + + io/netty/handler/codec/http/HttpObjectDecoder:.decode (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + io/netty/handler/codec/http/HttpObjectDecoder:.findWhitespace (1 samples, 0.35%) - - + + io/netty/handler/codec/http/HttpObjectDecoder:.decode (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders (1 samples, 0.35%) - - + + io/netty/handler/codec/http/HttpObjectDecoder:.decode (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + io/netty/handler/codec/http/HttpObjectDecoder:.splitHeader (5 samples, 1.75%) - - + + io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders (5 samples, 1.75%) - - + + io/netty/handler/codec/http/HttpObjectDecoder:.decode (5 samples, 1.75%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (5 samples, 1.75%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (5 samples, 1.75%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (5 samples, 1.75%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (5 samples, 1.75%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (5 samples, 1.75%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (5 samples, 1.75%) - - + + io/netty/channel/nio/NioEventLoop:.run (5 samples, 1.75%) - - + + Interpreter (5 samples, 1.75%) - - + + Interpreter (5 samples, 1.75%) - - + + call_stub (5 samples, 1.75%) - - + + JavaCalls::call_helper (5 samples, 1.75%) - - + + JavaCalls::call_virtual (5 samples, 1.75%) - - + + JavaCalls::call_virtual (5 samples, 1.75%) - - + + thread_entry (5 samples, 1.75%) - - + + JavaThread::thread_main_inner (5 samples, 1.75%) - - + + JavaThread::run (5 samples, 1.75%) - - + + java_start (5 samples, 1.75%) - - + + start_thread (5 samples, 1.75%) - - + + java (5 samples, 1.75%) - - + + io/netty/util/Recycler:.recycle (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + io/netty/buffer/AbstractByteBufAllocator:.directBuffer (1 samples, 0.35%) - - + + io/netty/handler/codec/http/HttpObjectEncoder:.encode (1 samples, 0.35%) - - + + io/netty/handler/codec/MessageToMessageEncoder:.write (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.write (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/VertxHttpHandler:.write (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.write (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.write (1 samples, 0.35%) - - + + sun/reflect/DelegatingMethodAccessorImpl:.invoke (1 samples, 0.35%) - - + + org/mozilla/javascript/MemberBox:.invoke (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaMethod:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + io/netty/util/concurrent/FastThreadLocal:.get (2 samples, 0.70%) - - + + io/netty/util/internal/RecyclableArrayList:.newInstance (1 samples, 0.35%) - - + + io/netty/handler/codec/MessageToMessageEncoder:.write (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.write (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/VertxHttpHandler:.write (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.write (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.write (1 samples, 0.35%) - - + + sun/reflect/DelegatingMethodAccessorImpl:.invoke (1 samples, 0.35%) - - + + org/mozilla/javascript/MemberBox:.invoke (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaMethod:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + io/netty/util/internal/AppendableCharSequence:.append (1 samples, 0.35%) - - + + io/netty/buffer/AbstractByteBuf:.forEachByteAsc0 (1 samples, 0.35%) - - + + io/netty/handler/codec/http/HttpObjectDecoder:.decode (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + ip_local_deliver (1 samples, 0.35%) - - + + ip_rcv_finish (1 samples, 0.35%) - - + + ip_rcv (1 samples, 0.35%) - - + + __netif_receive_skb (1 samples, 0.35%) - - + + process_backlog (1 samples, 0.35%) - - + + net_rx_action (1 samples, 0.35%) - - + + __do_softirq (1 samples, 0.35%) - - + + call_softirq (1 samples, 0.35%) - - + + do_softirq (1 samples, 0.35%) - - + + local_bh_enable (1 samples, 0.35%) - - + + dev_queue_xmit (1 samples, 0.35%) - - + + ip_finish_output (1 samples, 0.35%) - - + + ip_output (1 samples, 0.35%) - - + + ip_local_out (1 samples, 0.35%) - - + + ip_queue_xmit (1 samples, 0.35%) - - + + tcp_transmit_skb (1 samples, 0.35%) - - + + tcp_write_xmit (1 samples, 0.35%) - - + + __tcp_push_pending_frames (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + ip_local_deliver_finish (2 samples, 0.70%) - - + + ip_rcv_finish (1 samples, 0.35%) - - + + ip_rcv (1 samples, 0.35%) - - + + __netif_receive_skb (1 samples, 0.35%) - - + + process_backlog (1 samples, 0.35%) - - + + net_rx_action (1 samples, 0.35%) - - + + __do_softirq (1 samples, 0.35%) - - + + call_softirq (1 samples, 0.35%) - - + + do_softirq (1 samples, 0.35%) - - + + local_bh_enable (1 samples, 0.35%) - - + + dev_queue_xmit (1 samples, 0.35%) - - + + ip_finish_output (1 samples, 0.35%) - - + + ip_output (1 samples, 0.35%) - - + + ip_local_out (1 samples, 0.35%) - - + + ip_queue_xmit (1 samples, 0.35%) - - + + tcp_transmit_skb (1 samples, 0.35%) - - + + tcp_write_xmit (1 samples, 0.35%) - - + + __tcp_push_pending_frames (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + ip_output (2 samples, 0.70%) - - + + ip_queue_xmit (2 samples, 0.70%) - - + + tcp_transmit_skb (2 samples, 0.70%) - - + + tcp_write_xmit (2 samples, 0.70%) - - + + __tcp_push_pending_frames (2 samples, 0.70%) - - + + tcp_sendmsg (2 samples, 0.70%) - - + + inet_sendmsg (2 samples, 0.70%) - - + + do_sock_write.isra.10 (2 samples, 0.70%) - - + + sock_aio_write (2 samples, 0.70%) - - + + do_sync_write (2 samples, 0.70%) - - + + vfs_write (2 samples, 0.70%) - - + + sys_write (2 samples, 0.70%) - - + + system_call_fastpath (2 samples, 0.70%) - - + + write (2 samples, 0.70%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (2 samples, 0.70%) - - + + sun/nio/ch/SocketChannelImpl:.write (2 samples, 0.70%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (2 samples, 0.70%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (2 samples, 0.70%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (2 samples, 0.70%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (2 samples, 0.70%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (2 samples, 0.70%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (2 samples, 0.70%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (2 samples, 0.70%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.run (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + call_stub (2 samples, 0.70%) - - + + JavaCalls::call_helper (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + thread_entry (2 samples, 0.70%) - - + + JavaThread::thread_main_inner (2 samples, 0.70%) - - + + JavaThread::run (2 samples, 0.70%) - - + + java_start (2 samples, 0.70%) - - + + start_thread (2 samples, 0.70%) - - + + java (2 samples, 0.70%) - - + + ipv4_mtu (1 samples, 0.35%) - - + + tcp_current_mss (1 samples, 0.35%) - - + + tcp_send_mss (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + java/nio/channels/spi/AbstractInterruptibleChannel:.end (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.read (1 samples, 0.35%) - - + + io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + java/util/ArrayList:.add (1 samples, 0.35%) - - + + io/netty/handler/codec/http/HttpObjectEncoder:.encode (1 samples, 0.35%) - - + + io/netty/handler/codec/MessageToMessageEncoder:.write (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.write (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/VertxHttpHandler:.write (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.write (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.write (1 samples, 0.35%) - - + + sun/reflect/DelegatingMethodAccessorImpl:.invoke (1 samples, 0.35%) - - + + org/mozilla/javascript/MemberBox:.invoke (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaMethod:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + java/util/ArrayList:.ensureExplicitCapacity (1 samples, 0.35%) - - + + io/netty/handler/codec/MessageToMessageEncoder:.write (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.write (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/VertxHttpHandler:.write (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.write (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.write (1 samples, 0.35%) - - + + sun/reflect/DelegatingMethodAccessorImpl:.invoke (1 samples, 0.35%) - - + + org/mozilla/javascript/MemberBox:.invoke (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaMethod:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + java/util/Arrays:.fill (1 samples, 0.35%) - - + + io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders (1 samples, 0.35%) - - + + io/netty/handler/codec/http/HttpObjectDecoder:.decode (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaObject:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/WrapFactory:.wrapAsJavaObject (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + java/util/HashMap:.get (3 samples, 1.05%) - - + + org/mozilla/javascript/WrapFactory:.wrap (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + java/util/concurrent/ConcurrentHashMap:.get (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + jbyte_disjoint_arraycopy (1 samples, 0.35%) - - + + sun/nio/cs/UTF_8$Encoder:.<init> (1 samples, 0.35%) - - + + sun/reflect/DelegatingMethodAccessorImpl:.invoke (1 samples, 0.35%) - - + + org/mozilla/javascript/MemberBox:.invoke (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaMethod:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + jint_disjoint_arraycopy (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.newObject (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + kmem_cache_alloc_node (1 samples, 0.35%) - - + + __alloc_skb (1 samples, 0.35%) - - + + sk_stream_alloc_skb (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + ksize (1 samples, 0.35%) - - + + sk_stream_alloc_skb (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + ktime_get_real (1 samples, 0.35%) - - + + tcp_write_xmit (1 samples, 0.35%) - - + + __tcp_push_pending_frames (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + local_bh_disable (1 samples, 0.35%) - - + + _raw_spin_lock_bh (1 samples, 0.35%) - - + + lock_sock_nested (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + loopback_xmit (1 samples, 0.35%) - - + + dev_hard_start_xmit (1 samples, 0.35%) - - + + dev_queue_xmit (1 samples, 0.35%) - - + + ip_finish_output (1 samples, 0.35%) - - + + ip_output (1 samples, 0.35%) - - + + ip_local_out (1 samples, 0.35%) - - + + ip_queue_xmit (1 samples, 0.35%) - - + + tcp_transmit_skb (1 samples, 0.35%) - - + + tcp_write_xmit (1 samples, 0.35%) - - + + __tcp_push_pending_frames (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + netif_skb_features (1 samples, 0.35%) - - + + dev_queue_xmit (1 samples, 0.35%) - - + + ip_finish_output (1 samples, 0.35%) - - + + ip_output (1 samples, 0.35%) - - + + ip_local_out (1 samples, 0.35%) - - + + ip_queue_xmit (1 samples, 0.35%) - - + + tcp_transmit_skb (1 samples, 0.35%) - - + + tcp_write_xmit (1 samples, 0.35%) - - + + __tcp_push_pending_frames (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/Context:.getWrapFactory (2 samples, 0.70%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (2 samples, 0.70%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (2 samples, 0.70%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.run (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + call_stub (2 samples, 0.70%) - - + + JavaCalls::call_helper (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + thread_entry (2 samples, 0.70%) - - + + JavaThread::thread_main_inner (2 samples, 0.70%) - - + + JavaThread::run (2 samples, 0.70%) - - + + java_start (2 samples, 0.70%) - - + + start_thread (2 samples, 0.70%) - - + + java (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptRuntime:.setObjectProp (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.newObject (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.createFunctionActivation (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/optimizer/OptRuntime:.call2 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.newObject (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.name (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.get (4 samples, 1.40%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptRuntime:.newObject (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (2 samples, 0.70%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (2 samples, 0.70%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (2 samples, 0.70%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.run (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + call_stub (2 samples, 0.70%) - - + + JavaCalls::call_helper (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + thread_entry (2 samples, 0.70%) - - + + JavaThread::thread_main_inner (2 samples, 0.70%) - - + + JavaThread::run (2 samples, 0.70%) - - + + java_start (2 samples, 0.70%) - - + + start_thread (2 samples, 0.70%) - - + + java (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (4 samples, 1.40%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (4 samples, 1.40%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (4 samples, 1.40%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (4 samples, 1.40%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (4 samples, 1.40%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (4 samples, 1.40%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (4 samples, 1.40%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (4 samples, 1.40%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (4 samples, 1.40%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (4 samples, 1.40%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (4 samples, 1.40%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (4 samples, 1.40%) - - + + io/netty/channel/nio/NioEventLoop:.run (4 samples, 1.40%) - - + + Interpreter (4 samples, 1.40%) - - + + Interpreter (4 samples, 1.40%) - - + + call_stub (4 samples, 1.40%) - - + + JavaCalls::call_helper (4 samples, 1.40%) - - + + JavaCalls::call_virtual (4 samples, 1.40%) - - + + JavaCalls::call_virtual (4 samples, 1.40%) - - + + thread_entry (4 samples, 1.40%) - - + + JavaThread::thread_main_inner (4 samples, 1.40%) - - + + JavaThread::run (4 samples, 1.40%) - - + + java_start (4 samples, 1.40%) - - + + start_thread (4 samples, 1.40%) - - + + java (4 samples, 1.40%) - - + + org/mozilla/javascript/ScriptRuntime:.setObjectProp (5 samples, 1.75%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (5 samples, 1.75%) - - + + org/mozilla/javascript/optimizer/OptRuntime:.call2 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.newObject (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.newObject (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + - org/mozilla/javascript/IdScriptableObject:.has (7 samples, 2.46%) - - or.. + org/mozilla/javascript/IdScriptableObject:.has (7 samples, 2.45%) + + or.. org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.newObject (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.put (3 samples, 1.05%) - - + + org/mozilla/javascript/ScriptRuntime:.setObjectProp (3 samples, 1.05%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (3 samples, 1.05%) - - + + org/mozilla/javascript/optimizer/OptRuntime:.call2 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.newObject (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.newObject (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (2 samples, 0.70%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (2 samples, 0.70%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (2 samples, 0.70%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.run (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + call_stub (2 samples, 0.70%) - - + + JavaCalls::call_helper (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + thread_entry (2 samples, 0.70%) - - + + JavaThread::thread_main_inner (2 samples, 0.70%) - - + + JavaThread::run (2 samples, 0.70%) - - + + java_start (2 samples, 0.70%) - - + + start_thread (2 samples, 0.70%) - - + + java (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (3 samples, 1.05%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.createFunctionActivation (5 samples, 1.75%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (5 samples, 1.75%) - - + + org/mozilla/javascript/optimizer/OptRuntime:.call2 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (2 samples, 0.70%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (2 samples, 0.70%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (2 samples, 0.70%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.run (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + call_stub (2 samples, 0.70%) - - + + JavaCalls::call_helper (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + thread_entry (2 samples, 0.70%) - - + + JavaThread::thread_main_inner (2 samples, 0.70%) - - + + JavaThread::run (2 samples, 0.70%) - - + + java_start (2 samples, 0.70%) - - + + start_thread (2 samples, 0.70%) - - + + java (2 samples, 0.70%) - - + + - org/mozilla/javascript/IdScriptableObject:.setAttributes (6 samples, 2.11%) - - o.. + org/mozilla/javascript/IdScriptableObject:.setAttributes (6 samples, 2.10%) + + o.. org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaMethod:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/MemberBox:.invoke (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeFunction:.initScriptFunction (1 samples, 0.35%) - - + + org/mozilla/javascript/optimizer/OptRuntime:.call2 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.newObject (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaMethod:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaMethod:.findFunction (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaObject:.get (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (2 samples, 0.70%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (2 samples, 0.70%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (2 samples, 0.70%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.run (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + call_stub (2 samples, 0.70%) - - + + JavaCalls::call_helper (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + thread_entry (2 samples, 0.70%) - - + + JavaThread::thread_main_inner (2 samples, 0.70%) - - + + JavaThread::run (2 samples, 0.70%) - - + + java_start (2 samples, 0.70%) - - + + start_thread (2 samples, 0.70%) - - + + java (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.newObject (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.newObject (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (3 samples, 1.05%) - - + + org/mozilla/javascript/optimizer/OptRuntime:.call2 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.createFunctionActivation (4 samples, 1.40%) - - + + org/mozilla/javascript/optimizer/OptRuntime:.call2 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.newObject (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.getObjectProp (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (2 samples, 0.70%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (2 samples, 0.70%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (2 samples, 0.70%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.run (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + call_stub (2 samples, 0.70%) - - + + JavaCalls::call_helper (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + thread_entry (2 samples, 0.70%) - - + + JavaThread::thread_main_inner (2 samples, 0.70%) - - + + JavaThread::run (2 samples, 0.70%) - - + + java_start (2 samples, 0.70%) - - + + start_thread (2 samples, 0.70%) - - + + java (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.setObjectElem (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (2 samples, 0.70%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (2 samples, 0.70%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (2 samples, 0.70%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.run (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + call_stub (2 samples, 0.70%) - - + + JavaCalls::call_helper (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + thread_entry (2 samples, 0.70%) - - + + JavaThread::thread_main_inner (2 samples, 0.70%) - - + + JavaThread::run (2 samples, 0.70%) - - + + java_start (2 samples, 0.70%) - - + + start_thread (2 samples, 0.70%) - - + + java (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptRuntime:.indexFromString (3 samples, 1.05%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.name (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.get (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptRuntime:.nameOrFunction (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.newObject (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue (3 samples, 1.05%) - - + + org/mozilla/javascript/ScriptRuntime:.getObjectProp (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.getObjectProp (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject$Slot:.getValue (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptRuntime:.nameOrFunction (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.newObject (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (2 samples, 0.70%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (2 samples, 0.70%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (2 samples, 0.70%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.run (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + call_stub (2 samples, 0.70%) - - + + JavaCalls::call_helper (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + thread_entry (2 samples, 0.70%) - - + + JavaThread::thread_main_inner (2 samples, 0.70%) - - + + JavaThread::run (2 samples, 0.70%) - - + + java_start (2 samples, 0.70%) - - + + start_thread (2 samples, 0.70%) - - + + java (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptRuntime:.createFunctionActivation (4 samples, 1.40%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (4 samples, 1.40%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (4 samples, 1.40%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (2 samples, 0.70%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (2 samples, 0.70%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (2 samples, 0.70%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.run (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + call_stub (2 samples, 0.70%) - - + + JavaCalls::call_helper (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + thread_entry (2 samples, 0.70%) - - + + JavaThread::thread_main_inner (2 samples, 0.70%) - - + + JavaThread::run (2 samples, 0.70%) - - + + java_start (2 samples, 0.70%) - - + + start_thread (2 samples, 0.70%) - - + + java (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptRuntime:.newObject (3 samples, 1.05%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (3 samples, 1.05%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (3 samples, 1.05%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (3 samples, 1.05%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (3 samples, 1.05%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (3 samples, 1.05%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (3 samples, 1.05%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (3 samples, 1.05%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (3 samples, 1.05%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (3 samples, 1.05%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (3 samples, 1.05%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (3 samples, 1.05%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (3 samples, 1.05%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (3 samples, 1.05%) - - + + io/netty/channel/nio/NioEventLoop:.run (3 samples, 1.05%) - - + + Interpreter (3 samples, 1.05%) - - + + Interpreter (3 samples, 1.05%) - - + + call_stub (3 samples, 1.05%) - - + + JavaCalls::call_helper (3 samples, 1.05%) - - + + JavaCalls::call_virtual (3 samples, 1.05%) - - + + JavaCalls::call_virtual (3 samples, 1.05%) - - + + thread_entry (3 samples, 1.05%) - - + + JavaThread::thread_main_inner (3 samples, 1.05%) - - + + JavaThread::run (3 samples, 1.05%) - - + + java_start (3 samples, 1.05%) - - + + start_thread (3 samples, 1.05%) - - + + java (3 samples, 1.05%) - - + + - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (9 samples, 3.16%) - - org.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (9 samples, 3.15%) + + org.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (6 samples, 2.11%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (6 samples, 2.10%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (6 samples, 2.11%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (6 samples, 2.10%) + + o.. - org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (6 samples, 2.11%) - - o.. + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (6 samples, 2.10%) + + o.. - org/vertx/java/core/net/impl/VertxHandler:.channelRead (6 samples, 2.11%) - - o.. + org/vertx/java/core/net/impl/VertxHandler:.channelRead (6 samples, 2.10%) + + o.. - io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (6 samples, 2.11%) - - i.. + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (6 samples, 2.10%) + + i.. - io/netty/handler/codec/ByteToMessageDecoder:.channelRead (6 samples, 2.11%) - - i.. + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (6 samples, 2.10%) + + i.. - io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (6 samples, 2.11%) - - i.. + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (6 samples, 2.10%) + + i.. - io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (6 samples, 2.11%) - - i.. + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (6 samples, 2.10%) + + i.. - io/netty/channel/nio/NioEventLoop:.processSelectedKey (6 samples, 2.11%) - - i.. + io/netty/channel/nio/NioEventLoop:.processSelectedKey (6 samples, 2.10%) + + i.. - io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (6 samples, 2.11%) - - i.. + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (6 samples, 2.10%) + + i.. - io/netty/channel/nio/NioEventLoop:.processSelectedKeys (6 samples, 2.11%) - - i.. + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (6 samples, 2.10%) + + i.. - io/netty/channel/nio/NioEventLoop:.run (6 samples, 2.11%) - - i.. + io/netty/channel/nio/NioEventLoop:.run (6 samples, 2.10%) + + i.. - Interpreter (6 samples, 2.11%) - - I.. + Interpreter (6 samples, 2.10%) + + I.. - Interpreter (6 samples, 2.11%) - - I.. + Interpreter (6 samples, 2.10%) + + I.. - call_stub (6 samples, 2.11%) - - c.. + call_stub (6 samples, 2.10%) + + c.. - JavaCalls::call_helper (6 samples, 2.11%) - - J.. + JavaCalls::call_helper (6 samples, 2.10%) + + J.. - JavaCalls::call_virtual (6 samples, 2.11%) - - J.. + JavaCalls::call_virtual (6 samples, 2.10%) + + J.. - JavaCalls::call_virtual (6 samples, 2.11%) - - J.. + JavaCalls::call_virtual (6 samples, 2.10%) + + J.. - thread_entry (6 samples, 2.11%) - - t.. + thread_entry (6 samples, 2.10%) + + t.. - JavaThread::thread_main_inner (6 samples, 2.11%) - - J.. + JavaThread::thread_main_inner (6 samples, 2.10%) + + J.. - JavaThread::run (6 samples, 2.11%) - - J.. + JavaThread::run (6 samples, 2.10%) + + J.. - java_start (6 samples, 2.11%) - - j.. + java_start (6 samples, 2.10%) + + j.. - start_thread (6 samples, 2.11%) - - s.. + start_thread (6 samples, 2.10%) + + s.. - java (6 samples, 2.11%) - - j.. + java (6 samples, 2.10%) + + j.. - org/mozilla/javascript/ScriptRuntime:.newObject (6 samples, 2.11%) - - o.. + org/mozilla/javascript/ScriptRuntime:.newObject (6 samples, 2.10%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (6 samples, 2.11%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (6 samples, 2.10%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (6 samples, 2.11%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (6 samples, 2.10%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (6 samples, 2.11%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (6 samples, 2.10%) + + o.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (6 samples, 2.11%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (6 samples, 2.10%) + + o.. - org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (6 samples, 2.11%) - - o.. + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (6 samples, 2.10%) + + o.. - org/vertx/java/core/net/impl/VertxHandler:.channelRead (6 samples, 2.11%) - - o.. + org/vertx/java/core/net/impl/VertxHandler:.channelRead (6 samples, 2.10%) + + o.. - io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (6 samples, 2.11%) - - i.. + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (6 samples, 2.10%) + + i.. - io/netty/handler/codec/ByteToMessageDecoder:.channelRead (6 samples, 2.11%) - - i.. + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (6 samples, 2.10%) + + i.. - io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (6 samples, 2.11%) - - i.. + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (6 samples, 2.10%) + + i.. - io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (6 samples, 2.11%) - - i.. + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (6 samples, 2.10%) + + i.. - io/netty/channel/nio/NioEventLoop:.processSelectedKey (6 samples, 2.11%) - - i.. + io/netty/channel/nio/NioEventLoop:.processSelectedKey (6 samples, 2.10%) + + i.. - io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (6 samples, 2.11%) - - i.. + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (6 samples, 2.10%) + + i.. - io/netty/channel/nio/NioEventLoop:.processSelectedKeys (6 samples, 2.11%) - - i.. + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (6 samples, 2.10%) + + i.. - io/netty/channel/nio/NioEventLoop:.run (6 samples, 2.11%) - - i.. + io/netty/channel/nio/NioEventLoop:.run (6 samples, 2.10%) + + i.. - Interpreter (6 samples, 2.11%) - - I.. + Interpreter (6 samples, 2.10%) + + I.. - Interpreter (6 samples, 2.11%) - - I.. + Interpreter (6 samples, 2.10%) + + I.. - call_stub (6 samples, 2.11%) - - c.. + call_stub (6 samples, 2.10%) + + c.. - JavaCalls::call_helper (6 samples, 2.11%) - - J.. + JavaCalls::call_helper (6 samples, 2.10%) + + J.. - JavaCalls::call_virtual (6 samples, 2.11%) - - J.. + JavaCalls::call_virtual (6 samples, 2.10%) + + J.. - JavaCalls::call_virtual (6 samples, 2.11%) - - J.. + JavaCalls::call_virtual (6 samples, 2.10%) + + J.. - thread_entry (6 samples, 2.11%) - - t.. + thread_entry (6 samples, 2.10%) + + t.. - JavaThread::thread_main_inner (6 samples, 2.11%) - - J.. + JavaThread::thread_main_inner (6 samples, 2.10%) + + J.. - JavaThread::run (6 samples, 2.11%) - - J.. + JavaThread::run (6 samples, 2.10%) + + J.. - java_start (6 samples, 2.11%) - - j.. + java_start (6 samples, 2.10%) + + j.. - start_thread (6 samples, 2.11%) - - s.. + start_thread (6 samples, 2.10%) + + s.. - java (6 samples, 2.11%) - - j.. + java (6 samples, 2.10%) + + j.. - org/mozilla/javascript/ScriptableObject:.createSlot (20 samples, 7.02%) - - org/mozil.. + org/mozilla/javascript/ScriptableObject:.createSlot (20 samples, 6.99%) + + org/mozil.. - org/mozilla/javascript/ScriptableObject:.getSlot (20 samples, 7.02%) - - org/mozil.. + org/mozilla/javascript/ScriptableObject:.getSlot (20 samples, 6.99%) + + org/mozil.. - org/mozilla/javascript/IdScriptableObject:.put (20 samples, 7.02%) - - org/mozil.. + org/mozilla/javascript/IdScriptableObject:.put (20 samples, 6.99%) + + org/mozil.. - org/mozilla/javascript/ScriptRuntime:.setObjectProp (16 samples, 5.61%) - - org/moz.. + org/mozilla/javascript/ScriptRuntime:.setObjectProp (16 samples, 5.59%) + + org/moz.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (16 samples, 5.61%) - - org/moz.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (16 samples, 5.59%) + + org/moz.. - org/mozilla/javascript/optimizer/OptRuntime:.call2 (7 samples, 2.46%) - - or.. + org/mozilla/javascript/optimizer/OptRuntime:.call2 (7 samples, 2.45%) + + or.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (7 samples, 2.46%) - - or.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (7 samples, 2.45%) + + or.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (7 samples, 2.46%) - - or.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (7 samples, 2.45%) + + or.. org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/optimizer/OptRuntime:.call2 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.newObject (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject:.getParentScope (3 samples, 1.05%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject:.getPrototype (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.createFunctionActivation (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.get (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptRuntime:.getObjectProp (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.newObject (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (5 samples, 1.75%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (5 samples, 1.75%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (5 samples, 1.75%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (5 samples, 1.75%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (5 samples, 1.75%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (5 samples, 1.75%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (5 samples, 1.75%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (5 samples, 1.75%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (5 samples, 1.75%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (5 samples, 1.75%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (5 samples, 1.75%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (5 samples, 1.75%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (5 samples, 1.75%) - - + + io/netty/channel/nio/NioEventLoop:.run (5 samples, 1.75%) - - + + Interpreter (5 samples, 1.75%) - - + + Interpreter (5 samples, 1.75%) - - + + call_stub (5 samples, 1.75%) - - + + JavaCalls::call_helper (5 samples, 1.75%) - - + + JavaCalls::call_virtual (5 samples, 1.75%) - - + + JavaCalls::call_virtual (5 samples, 1.75%) - - + + thread_entry (5 samples, 1.75%) - - + + JavaThread::thread_main_inner (5 samples, 1.75%) - - + + JavaThread::run (5 samples, 1.75%) - - + + java_start (5 samples, 1.75%) - - + + start_thread (5 samples, 1.75%) - - + + java (5 samples, 1.75%) - - + + - org/mozilla/javascript/ScriptRuntime:.setObjectProp (6 samples, 2.11%) - - o.. + org/mozilla/javascript/ScriptRuntime:.setObjectProp (6 samples, 2.10%) + + o.. org/mozilla/javascript/optimizer/OptRuntime:.call2 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + - org/mozilla/javascript/IdScriptableObject:.has (8 samples, 2.81%) - - or.. + org/mozilla/javascript/IdScriptableObject:.has (8 samples, 2.80%) + + or.. org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (2 samples, 0.70%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (2 samples, 0.70%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (2 samples, 0.70%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.run (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + call_stub (2 samples, 0.70%) - - + + JavaCalls::call_helper (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + thread_entry (2 samples, 0.70%) - - + + JavaThread::thread_main_inner (2 samples, 0.70%) - - + + JavaThread::run (2 samples, 0.70%) - - + + java_start (2 samples, 0.70%) - - + + start_thread (2 samples, 0.70%) - - + + java (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptRuntime:.setObjectProp (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.put (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + - org/mozilla/javascript/ScriptableObject:.getSlot (13 samples, 4.56%) - - org/m.. + org/mozilla/javascript/ScriptableObject:.getSlot (13 samples, 4.55%) + + org/m.. org/mozilla/javascript/ScriptRuntime:.setObjectProp (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.newObject (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.createFunctionActivation (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/optimizer/OptRuntime:.call2 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (2 samples, 0.70%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (2 samples, 0.70%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (2 samples, 0.70%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.run (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + call_stub (2 samples, 0.70%) - - + + JavaCalls::call_helper (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + thread_entry (2 samples, 0.70%) - - + + JavaThread::thread_main_inner (2 samples, 0.70%) - - + + JavaThread::run (2 samples, 0.70%) - - + + java_start (2 samples, 0.70%) - - + + start_thread (2 samples, 0.70%) - - + + java (2 samples, 0.70%) - - + + org/mozilla/javascript/TopLevel:.getBuiltinPrototype (4 samples, 1.40%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (2 samples, 0.70%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (2 samples, 0.70%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (2 samples, 0.70%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.run (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + call_stub (2 samples, 0.70%) - - + + JavaCalls::call_helper (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + thread_entry (2 samples, 0.70%) - - + + JavaThread::thread_main_inner (2 samples, 0.70%) - - + + JavaThread::run (2 samples, 0.70%) - - + + java_start (2 samples, 0.70%) - - + + start_thread (2 samples, 0.70%) - - + + java (2 samples, 0.70%) - - + + org/mozilla/javascript/WrapFactory:.wrapAsJavaObject (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/WrapFactory:.wrap (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaMethod:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.createFunctionActivation (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.newObject (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (2 samples, 0.70%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (2 samples, 0.70%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (2 samples, 0.70%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (2 samples, 0.70%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.run (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + call_stub (2 samples, 0.70%) - - + + JavaCalls::call_helper (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + thread_entry (2 samples, 0.70%) - - + + JavaThread::thread_main_inner (2 samples, 0.70%) - - + + JavaThread::run (2 samples, 0.70%) - - + + java_start (2 samples, 0.70%) - - + + start_thread (2 samples, 0.70%) - - + + java (2 samples, 0.70%) - - + + - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (6 samples, 2.11%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (6 samples, 2.10%) + + o.. org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/optimizer/OptRuntime:.call2 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (3 samples, 1.05%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (3 samples, 1.05%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (3 samples, 1.05%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (3 samples, 1.05%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (3 samples, 1.05%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (3 samples, 1.05%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (3 samples, 1.05%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (3 samples, 1.05%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (3 samples, 1.05%) - - + + io/netty/channel/nio/NioEventLoop:.run (3 samples, 1.05%) - - + + Interpreter (3 samples, 1.05%) - - + + Interpreter (3 samples, 1.05%) - - + + call_stub (3 samples, 1.05%) - - + + JavaCalls::call_helper (3 samples, 1.05%) - - + + JavaCalls::call_virtual (3 samples, 1.05%) - - + + JavaCalls::call_virtual (3 samples, 1.05%) - - + + thread_entry (3 samples, 1.05%) - - + + JavaThread::thread_main_inner (3 samples, 1.05%) - - + + JavaThread::run (3 samples, 1.05%) - - + + java_start (3 samples, 1.05%) - - + + start_thread (3 samples, 1.05%) - - + + java (3 samples, 1.05%) - - + + io/netty/channel/AbstractChannelHandlerContext:.write (1 samples, 0.35%) - - + + sun/reflect/DelegatingMethodAccessorImpl:.invoke (1 samples, 0.35%) - - + + org/mozilla/javascript/MemberBox:.invoke (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaMethod:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/VertxHttpHandler:.write (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.write (2 samples, 0.70%) - - + + sun/reflect/DelegatingMethodAccessorImpl:.invoke (1 samples, 0.35%) - - + + org/mozilla/javascript/MemberBox:.invoke (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaMethod:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + xen_clocksource_get_cycles (1 samples, 0.35%) - - + + getnstimeofday (1 samples, 0.35%) - - + + ktime_get_real (1 samples, 0.35%) - - + + tcp_transmit_skb (1 samples, 0.35%) - - + + tcp_write_xmit (1 samples, 0.35%) - - + + __tcp_push_pending_frames (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + pvclock_clocksource_read (2 samples, 0.70%) - - + + xen_clocksource_read (1 samples, 0.35%) - - + + xen_clocksource_get_cycles (1 samples, 0.35%) - - + + getnstimeofday (1 samples, 0.35%) - - + + ktime_get_real (1 samples, 0.35%) - - + + tcp_transmit_skb (1 samples, 0.35%) - - + + tcp_write_xmit (1 samples, 0.35%) - - + + __tcp_push_pending_frames (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + rcu_bh_qs (1 samples, 0.35%) - - + + call_softirq (1 samples, 0.35%) - - + + do_softirq (1 samples, 0.35%) - - + + local_bh_enable (1 samples, 0.35%) - - + + dev_queue_xmit (1 samples, 0.35%) - - + + ip_finish_output (1 samples, 0.35%) - - + + ip_output (1 samples, 0.35%) - - + + ip_local_out (1 samples, 0.35%) - - + + ip_queue_xmit (1 samples, 0.35%) - - + + tcp_transmit_skb (1 samples, 0.35%) - - + + tcp_write_xmit (1 samples, 0.35%) - - + + __tcp_push_pending_frames (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + read (2 samples, 0.70%) - - + + sun/nio/ch/FileDispatcherImpl:.read0 (2 samples, 0.70%) - - + + sun/nio/ch/SocketChannelImpl:.read (2 samples, 0.70%) - - + + io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes (2 samples, 0.70%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.run (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + call_stub (2 samples, 0.70%) - - + + JavaCalls::call_helper (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + thread_entry (2 samples, 0.70%) - - + + JavaThread::thread_main_inner (2 samples, 0.70%) - - + + JavaThread::run (2 samples, 0.70%) - - + + java_start (2 samples, 0.70%) - - + + start_thread (2 samples, 0.70%) - - + + java (2 samples, 0.70%) - - + + vfs_read (1 samples, 0.35%) - - + + sys_read (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + read (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.read0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.read (1 samples, 0.35%) - - + + io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + rw_verify_area (2 samples, 0.70%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + skb_clone (1 samples, 0.35%) - - + + tcp_write_xmit (1 samples, 0.35%) - - + + __tcp_push_pending_frames (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + skb_copy_datagram_iovec (1 samples, 0.35%) - - + + tcp_recvmsg (1 samples, 0.35%) - - + + inet_recvmsg (1 samples, 0.35%) - - + + do_sock_read.isra.12 (1 samples, 0.35%) - - + + sock_aio_read.part.13 (1 samples, 0.35%) - - + + sock_aio_read (1 samples, 0.35%) - - + + do_sync_read (1 samples, 0.35%) - - + + vfs_read (1 samples, 0.35%) - - + + sys_read (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + read (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.read0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.read (1 samples, 0.35%) - - + + io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + skb_dst_set_noref (1 samples, 0.35%) - - + + tcp_transmit_skb (1 samples, 0.35%) - - + + tcp_write_xmit (1 samples, 0.35%) - - + + __tcp_push_pending_frames (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + + + + skb_release_data.part.45 (1 samples, 0.35%) + + + + + skb_release_data (1 samples, 0.35%) + + + + + __kfree_skb (1 samples, 0.35%) + + + + + tcp_clean_rtx_queue (1 samples, 0.35%) + + + + + tcp_ack (1 samples, 0.35%) + + + + + tcp_rcv_established (1 samples, 0.35%) + + + + + tcp_v4_do_rcv (1 samples, 0.35%) + + + + + tcp_v4_rcv (1 samples, 0.35%) + + + + + ip_local_deliver_finish (1 samples, 0.35%) + + + + + ip_local_deliver (1 samples, 0.35%) + + + + + ip_rcv_finish (1 samples, 0.35%) + + + + + ip_rcv (1 samples, 0.35%) + + + + + __netif_receive_skb (1 samples, 0.35%) + + + + + process_backlog (1 samples, 0.35%) + + + + + net_rx_action (1 samples, 0.35%) + + + + + __do_softirq (1 samples, 0.35%) + + + + + call_softirq (1 samples, 0.35%) + + + + + do_softirq (1 samples, 0.35%) + + + + + local_bh_enable (1 samples, 0.35%) + + + + + dev_queue_xmit (1 samples, 0.35%) + + + + + ip_finish_output (1 samples, 0.35%) + + + + + ip_output (1 samples, 0.35%) + + + + + ip_local_out (1 samples, 0.35%) + + + + + ip_queue_xmit (1 samples, 0.35%) + + + + + tcp_transmit_skb (1 samples, 0.35%) + + + + + tcp_write_xmit (1 samples, 0.35%) + + + + + __tcp_push_pending_frames (1 samples, 0.35%) + + + + + tcp_sendmsg (1 samples, 0.35%) + + + + + inet_sendmsg (1 samples, 0.35%) + + + + + do_sock_write.isra.10 (1 samples, 0.35%) + + + + + sock_aio_write (1 samples, 0.35%) + + + + + do_sync_write (1 samples, 0.35%) + + + + + vfs_write (1 samples, 0.35%) + + + + + sys_write (1 samples, 0.35%) + + + + + system_call_fastpath (1 samples, 0.35%) + + + + + write (1 samples, 0.35%) + + + + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) + + + + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) + + + + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) + + + + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) + + + + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) + + + + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) + + + + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) + + + + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) + + + + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) + + + + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) + + + + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) + + + + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) + + + + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) + + + + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) + + + + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) + + + + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) + + + + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) + + + + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) + + + + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) + + + + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) + + + + + Interpreter (1 samples, 0.35%) + + + + + Interpreter (1 samples, 0.35%) + + + + + call_stub (1 samples, 0.35%) + + + + + JavaCalls::call_helper (1 samples, 0.35%) + + + + + JavaCalls::call_virtual (1 samples, 0.35%) + + + + + JavaCalls::call_virtual (1 samples, 0.35%) + + + + + thread_entry (1 samples, 0.35%) + + + + + JavaThread::thread_main_inner (1 samples, 0.35%) + + + + + JavaThread::run (1 samples, 0.35%) + + + + + java_start (1 samples, 0.35%) + + + + + start_thread (1 samples, 0.35%) + + + + + java (1 samples, 0.35%) + + skb_release_data (1 samples, 0.35%) - - + + __kfree_skb (1 samples, 0.35%) - - + + tcp_recvmsg (1 samples, 0.35%) - - + + inet_recvmsg (1 samples, 0.35%) - - + + do_sock_read.isra.12 (1 samples, 0.35%) - - + + sock_aio_read.part.13 (1 samples, 0.35%) - - + + sock_aio_read (1 samples, 0.35%) - - + + do_sync_read (1 samples, 0.35%) - - + + vfs_read (1 samples, 0.35%) - - + + sys_read (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + read (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.read0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.read (1 samples, 0.35%) - - + + io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + sun/nio/ch/NativeThread:.current (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.writerCleanup (2 samples, 0.70%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + sun/reflect/DelegatingMethodAccessorImpl:.invoke (3 samples, 1.05%) - - + + org/mozilla/javascript/MemberBox:.invoke (3 samples, 1.05%) - - + + org/mozilla/javascript/NativeJavaMethod:.call (3 samples, 1.05%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (3 samples, 1.05%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call (3 samples, 1.05%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (3 samples, 1.05%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (3 samples, 1.05%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (3 samples, 1.05%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (3 samples, 1.05%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (3 samples, 1.05%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (3 samples, 1.05%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (3 samples, 1.05%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (3 samples, 1.05%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (3 samples, 1.05%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (3 samples, 1.05%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (3 samples, 1.05%) - - + + io/netty/channel/nio/NioEventLoop:.run (3 samples, 1.05%) - - + + Interpreter (3 samples, 1.05%) - - + + Interpreter (3 samples, 1.05%) - - + + call_stub (3 samples, 1.05%) - - + + JavaCalls::call_helper (3 samples, 1.05%) - - + + JavaCalls::call_virtual (3 samples, 1.05%) - - + + JavaCalls::call_virtual (3 samples, 1.05%) - - + + thread_entry (3 samples, 1.05%) - - + + JavaThread::thread_main_inner (3 samples, 1.05%) - - + + JavaThread::run (3 samples, 1.05%) - - + + java_start (3 samples, 1.05%) - - + + start_thread (3 samples, 1.05%) - - + + java (3 samples, 1.05%) - - + + read (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.read0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.read (1 samples, 0.35%) - - + + io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + sys_read (2 samples, 0.70%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + read (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.read0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.read (1 samples, 0.35%) - - + + io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + tcp_ack (3 samples, 1.05%) - - + + tcp_rcv_established (3 samples, 1.05%) - - + + tcp_v4_do_rcv (3 samples, 1.05%) - - + + tcp_v4_rcv (3 samples, 1.05%) - - + + ip_local_deliver_finish (3 samples, 1.05%) - - + + ip_local_deliver (3 samples, 1.05%) - - + + ip_rcv_finish (3 samples, 1.05%) - - + + ip_rcv (3 samples, 1.05%) - - + + __netif_receive_skb (3 samples, 1.05%) - - + + process_backlog (3 samples, 1.05%) - - + + net_rx_action (3 samples, 1.05%) - - + + __do_softirq (3 samples, 1.05%) - - + + call_softirq (3 samples, 1.05%) - - + + do_softirq (3 samples, 1.05%) - - + + local_bh_enable (3 samples, 1.05%) - - + + dev_queue_xmit (3 samples, 1.05%) - - + + ip_finish_output (3 samples, 1.05%) - - + + ip_output (3 samples, 1.05%) - - + + ip_local_out (3 samples, 1.05%) - - + + ip_queue_xmit (3 samples, 1.05%) - - + + tcp_transmit_skb (3 samples, 1.05%) - - + + tcp_write_xmit (3 samples, 1.05%) - - + + __tcp_push_pending_frames (3 samples, 1.05%) - - + + tcp_sendmsg (3 samples, 1.05%) - - + + inet_sendmsg (3 samples, 1.05%) - - + + do_sock_write.isra.10 (3 samples, 1.05%) - - + + sock_aio_write (3 samples, 1.05%) - - + + do_sync_write (3 samples, 1.05%) - - + + vfs_write (3 samples, 1.05%) - - + + sys_write (3 samples, 1.05%) - - + + system_call_fastpath (3 samples, 1.05%) - - + + write (3 samples, 1.05%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (3 samples, 1.05%) - - + + sun/nio/ch/SocketChannelImpl:.write (3 samples, 1.05%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (3 samples, 1.05%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (3 samples, 1.05%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (3 samples, 1.05%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (3 samples, 1.05%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (3 samples, 1.05%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (3 samples, 1.05%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (3 samples, 1.05%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (3 samples, 1.05%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (3 samples, 1.05%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (3 samples, 1.05%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (3 samples, 1.05%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (3 samples, 1.05%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (3 samples, 1.05%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (3 samples, 1.05%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (3 samples, 1.05%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (3 samples, 1.05%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (3 samples, 1.05%) - - + + io/netty/channel/nio/NioEventLoop:.run (3 samples, 1.05%) - - + + Interpreter (3 samples, 1.05%) - - + + Interpreter (3 samples, 1.05%) - - + + call_stub (3 samples, 1.05%) - - + + JavaCalls::call_helper (3 samples, 1.05%) - - + + JavaCalls::call_virtual (3 samples, 1.05%) - - + + JavaCalls::call_virtual (3 samples, 1.05%) - - + + thread_entry (3 samples, 1.05%) - - + + JavaThread::thread_main_inner (3 samples, 1.05%) - - + + JavaThread::run (3 samples, 1.05%) - - + + java_start (3 samples, 1.05%) - - + + start_thread (3 samples, 1.05%) - - + + java (3 samples, 1.05%) - - + + tcp_clean_rtx_queue (1 samples, 0.35%) - - + + tcp_ack (1 samples, 0.35%) - - + + tcp_rcv_established (1 samples, 0.35%) - - + + tcp_v4_do_rcv (1 samples, 0.35%) - - + + tcp_v4_rcv (1 samples, 0.35%) - - + + ip_local_deliver_finish (1 samples, 0.35%) - - + + ip_local_deliver (1 samples, 0.35%) - - + + ip_rcv_finish (1 samples, 0.35%) - - + + ip_rcv (1 samples, 0.35%) - - + + __netif_receive_skb (1 samples, 0.35%) - - + + process_backlog (1 samples, 0.35%) - - + + net_rx_action (1 samples, 0.35%) - - + + __do_softirq (1 samples, 0.35%) - - + + call_softirq (1 samples, 0.35%) - - + + do_softirq (1 samples, 0.35%) - - + + local_bh_enable (1 samples, 0.35%) - - + + dev_queue_xmit (1 samples, 0.35%) - - + + ip_finish_output (1 samples, 0.35%) - - + + ip_output (1 samples, 0.35%) - - + + ip_local_out (1 samples, 0.35%) - - + + ip_queue_xmit (1 samples, 0.35%) - - + + tcp_transmit_skb (1 samples, 0.35%) - - + + tcp_write_xmit (1 samples, 0.35%) - - + + __tcp_push_pending_frames (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + tcp_cleanup_rbuf (1 samples, 0.35%) - - + + tcp_recvmsg (1 samples, 0.35%) - - + + inet_recvmsg (1 samples, 0.35%) - - + + do_sock_read.isra.12 (1 samples, 0.35%) - - + + sock_aio_read.part.13 (1 samples, 0.35%) - - + + sock_aio_read (1 samples, 0.35%) - - + + do_sync_read (1 samples, 0.35%) - - + + vfs_read (1 samples, 0.35%) - - + + sys_read (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + read (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.read0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.read (1 samples, 0.35%) - - + + io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + tcp_established_options (1 samples, 0.35%) - - + + tcp_current_mss (1 samples, 0.35%) - - + + tcp_send_mss (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + tcp_event_data_recv (1 samples, 0.35%) - - + + tcp_v4_do_rcv (1 samples, 0.35%) - - + + tcp_v4_rcv (1 samples, 0.35%) - - + + ip_local_deliver_finish (1 samples, 0.35%) - - + + ip_local_deliver (1 samples, 0.35%) - - + + ip_rcv_finish (1 samples, 0.35%) - - + + ip_rcv (1 samples, 0.35%) - - + + __netif_receive_skb (1 samples, 0.35%) - - + + process_backlog (1 samples, 0.35%) - - + + net_rx_action (1 samples, 0.35%) - - + + __do_softirq (1 samples, 0.35%) - - + + call_softirq (1 samples, 0.35%) - - + + do_softirq (1 samples, 0.35%) - - + + local_bh_enable (1 samples, 0.35%) - - + + dev_queue_xmit (1 samples, 0.35%) - - + + ip_finish_output (1 samples, 0.35%) - - + + ip_output (1 samples, 0.35%) - - + + ip_local_out (1 samples, 0.35%) - - + + ip_queue_xmit (1 samples, 0.35%) - - + + tcp_transmit_skb (1 samples, 0.35%) - - + + tcp_write_xmit (1 samples, 0.35%) - - + + __tcp_push_pending_frames (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + tcp_rcv_space_adjust (1 samples, 0.35%) - - + + inet_recvmsg (1 samples, 0.35%) - - + + do_sock_read.isra.12 (1 samples, 0.35%) - - + + sock_aio_read.part.13 (1 samples, 0.35%) - - + + sock_aio_read (1 samples, 0.35%) - - + + do_sync_read (1 samples, 0.35%) - - + + vfs_read (1 samples, 0.35%) - - + + sys_read (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + read (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.read0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.read (1 samples, 0.35%) - - + + io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + tcp_clean_rtx_queue (1 samples, 0.35%) - - + + tcp_ack (1 samples, 0.35%) - - + + tcp_rcv_established (1 samples, 0.35%) - - + + tcp_v4_do_rcv (1 samples, 0.35%) - - + + tcp_v4_rcv (1 samples, 0.35%) - - + + ip_local_deliver_finish (1 samples, 0.35%) - - + + ip_local_deliver (1 samples, 0.35%) - - + + ip_rcv_finish (1 samples, 0.35%) - - + + ip_rcv (1 samples, 0.35%) - - + + __netif_receive_skb (1 samples, 0.35%) - - + + process_backlog (1 samples, 0.35%) - - + + net_rx_action (1 samples, 0.35%) - - + + __do_softirq (1 samples, 0.35%) - - + + call_softirq (1 samples, 0.35%) - - + + do_softirq (1 samples, 0.35%) - - + + local_bh_enable (1 samples, 0.35%) - - + + dev_queue_xmit (1 samples, 0.35%) - - + + ip_finish_output (1 samples, 0.35%) - - + + ip_output (1 samples, 0.35%) - - + + ip_local_out (1 samples, 0.35%) - - + + ip_queue_xmit (1 samples, 0.35%) - - + + tcp_transmit_skb (1 samples, 0.35%) - - + + tcp_write_xmit (1 samples, 0.35%) - - + + __tcp_push_pending_frames (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + tcp_rtt_estimator (2 samples, 0.70%) - - + + tcp_valid_rtt_meas (1 samples, 0.35%) - - + + tcp_clean_rtx_queue (1 samples, 0.35%) - - + + tcp_ack (1 samples, 0.35%) - - + + tcp_rcv_established (1 samples, 0.35%) - - + + tcp_v4_do_rcv (1 samples, 0.35%) - - + + tcp_v4_rcv (1 samples, 0.35%) - - + + ip_local_deliver_finish (1 samples, 0.35%) - - + + ip_local_deliver (1 samples, 0.35%) - - + + ip_rcv_finish (1 samples, 0.35%) - - + + ip_rcv (1 samples, 0.35%) - - + + __netif_receive_skb (1 samples, 0.35%) - - + + process_backlog (1 samples, 0.35%) - - + + net_rx_action (1 samples, 0.35%) - - + + __do_softirq (1 samples, 0.35%) - - + + call_softirq (1 samples, 0.35%) - - + + do_softirq (1 samples, 0.35%) - - + + local_bh_enable (1 samples, 0.35%) - - + + dev_queue_xmit (1 samples, 0.35%) - - + + ip_finish_output (1 samples, 0.35%) - - + + ip_output (1 samples, 0.35%) - - + + ip_local_out (1 samples, 0.35%) - - + + ip_queue_xmit (1 samples, 0.35%) - - + + tcp_transmit_skb (1 samples, 0.35%) - - + + tcp_write_xmit (1 samples, 0.35%) - - + + __tcp_push_pending_frames (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + tcp_sendmsg (2 samples, 0.70%) - - + + inet_sendmsg (2 samples, 0.70%) - - + + do_sock_write.isra.10 (2 samples, 0.70%) - - + + sock_aio_write (2 samples, 0.70%) - - + + do_sync_write (2 samples, 0.70%) - - + + vfs_write (2 samples, 0.70%) - - + + sys_write (2 samples, 0.70%) - - + + system_call_fastpath (2 samples, 0.70%) - - + + write (2 samples, 0.70%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (2 samples, 0.70%) - - + + sun/nio/ch/SocketChannelImpl:.write (2 samples, 0.70%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (2 samples, 0.70%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (2 samples, 0.70%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (2 samples, 0.70%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (2 samples, 0.70%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (2 samples, 0.70%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (2 samples, 0.70%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (2 samples, 0.70%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.run (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + call_stub (2 samples, 0.70%) - - + + JavaCalls::call_helper (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + thread_entry (2 samples, 0.70%) - - + + JavaThread::thread_main_inner (2 samples, 0.70%) - - + + JavaThread::run (2 samples, 0.70%) - - + + java_start (2 samples, 0.70%) - - + + start_thread (2 samples, 0.70%) - - + + java (2 samples, 0.70%) - - + + tcp_set_skb_tso_segs (1 samples, 0.35%) - - + + tcp_write_xmit (1 samples, 0.35%) - - + + __tcp_push_pending_frames (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + tcp_transmit_skb (2 samples, 0.70%) - - + + tcp_write_xmit (2 samples, 0.70%) - - + + __tcp_push_pending_frames (2 samples, 0.70%) - - + + tcp_sendmsg (2 samples, 0.70%) - - + + inet_sendmsg (2 samples, 0.70%) - - + + do_sock_write.isra.10 (2 samples, 0.70%) - - + + sock_aio_write (2 samples, 0.70%) - - + + do_sync_write (2 samples, 0.70%) - - + + vfs_write (2 samples, 0.70%) - - + + sys_write (2 samples, 0.70%) - - + + system_call_fastpath (2 samples, 0.70%) - - + + write (2 samples, 0.70%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (2 samples, 0.70%) - - + + sun/nio/ch/SocketChannelImpl:.write (2 samples, 0.70%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (2 samples, 0.70%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (2 samples, 0.70%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (2 samples, 0.70%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (2 samples, 0.70%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (2 samples, 0.70%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (2 samples, 0.70%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (2 samples, 0.70%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (2 samples, 0.70%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (2 samples, 0.70%) - - + + io/netty/channel/nio/NioEventLoop:.run (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + Interpreter (2 samples, 0.70%) - - + + call_stub (2 samples, 0.70%) - - + + JavaCalls::call_helper (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + JavaCalls::call_virtual (2 samples, 0.70%) - - + + thread_entry (2 samples, 0.70%) - - + + JavaThread::thread_main_inner (2 samples, 0.70%) - - + + JavaThread::run (2 samples, 0.70%) - - + + java_start (2 samples, 0.70%) - - + + start_thread (2 samples, 0.70%) - - + + java (2 samples, 0.70%) - - + + tcp_v4_rcv (1 samples, 0.35%) - - + + ip_local_deliver_finish (1 samples, 0.35%) - - + + ip_local_deliver (1 samples, 0.35%) - - + + ip_rcv_finish (1 samples, 0.35%) - - + + ip_rcv (1 samples, 0.35%) - - + + __netif_receive_skb (1 samples, 0.35%) - - + + process_backlog (1 samples, 0.35%) - - + + net_rx_action (1 samples, 0.35%) - - + + __do_softirq (1 samples, 0.35%) - - + + call_softirq (1 samples, 0.35%) - - + + do_softirq (1 samples, 0.35%) - - + + local_bh_enable (1 samples, 0.35%) - - + + dev_queue_xmit (1 samples, 0.35%) - - + + ip_finish_output (1 samples, 0.35%) - - + + ip_output (1 samples, 0.35%) - - + + ip_local_out (1 samples, 0.35%) - - + + ip_queue_xmit (1 samples, 0.35%) - - + + tcp_transmit_skb (1 samples, 0.35%) - - + + tcp_write_xmit (1 samples, 0.35%) - - + + __tcp_push_pending_frames (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + tcp_send_mss (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + tcp_xmit_size_goal (2 samples, 0.70%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + io/netty/handler/codec/MessageToMessageEncoder:.write (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.write (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/VertxHttpHandler:.write (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.write (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.write (1 samples, 0.35%) - - + + sun/reflect/DelegatingMethodAccessorImpl:.invoke (1 samples, 0.35%) - - + + org/mozilla/javascript/MemberBox:.invoke (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaMethod:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.getObjectProp (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.nameOrFunction (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.name (1 samples, 0.35%) - - + + org/mozilla/javascript/optimizer/OptRuntime:.call2 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + vtable chunks (4 samples, 1.40%) - - + + org/mozilla/javascript/ScriptRuntime:.setObjectProp (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.newObject (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + xen_clocksource_get_cycles (1 samples, 0.35%) - - + + ktime_get_real (1 samples, 0.35%) - - + + tcp_transmit_skb (1 samples, 0.35%) - - + + tcp_write_xmit (1 samples, 0.35%) - - + + __tcp_push_pending_frames (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + xen_clocksource_read (1 samples, 0.35%) - - + + xen_clocksource_get_cycles (1 samples, 0.35%) - - + + getnstimeofday (1 samples, 0.35%) - - + + ktime_get_real (1 samples, 0.35%) - - + + tcp_clean_rtx_queue (1 samples, 0.35%) - - + + tcp_ack (1 samples, 0.35%) - - + + tcp_rcv_established (1 samples, 0.35%) - - + + tcp_v4_do_rcv (1 samples, 0.35%) - - + + tcp_v4_rcv (1 samples, 0.35%) - - + + ip_local_deliver_finish (1 samples, 0.35%) - - + + ip_local_deliver (1 samples, 0.35%) - - + + ip_rcv_finish (1 samples, 0.35%) - - + + ip_rcv (1 samples, 0.35%) - - + + __netif_receive_skb (1 samples, 0.35%) - - + + process_backlog (1 samples, 0.35%) - - + + net_rx_action (1 samples, 0.35%) - - + + __do_softirq (1 samples, 0.35%) - - + + call_softirq (1 samples, 0.35%) - - + + do_softirq (1 samples, 0.35%) - - + + local_bh_enable (1 samples, 0.35%) - - + + dev_queue_xmit (1 samples, 0.35%) - - + + ip_finish_output (1 samples, 0.35%) - - + + ip_output (1 samples, 0.35%) - - + + ip_local_out (1 samples, 0.35%) - - + + ip_queue_xmit (1 samples, 0.35%) - - + + tcp_transmit_skb (1 samples, 0.35%) - - + + tcp_write_xmit (1 samples, 0.35%) - - + + __tcp_push_pending_frames (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + xen_restore_fl_direct (1 samples, 0.35%) - - + + netif_rx.part.82 (1 samples, 0.35%) - - + + netif_rx (1 samples, 0.35%) - - + + loopback_xmit (1 samples, 0.35%) - - + + dev_hard_start_xmit (1 samples, 0.35%) - - + + dev_queue_xmit (1 samples, 0.35%) - - + + ip_finish_output (1 samples, 0.35%) - - + + ip_output (1 samples, 0.35%) - - + + ip_local_out (1 samples, 0.35%) - - + + ip_queue_xmit (1 samples, 0.35%) - - + + tcp_transmit_skb (1 samples, 0.35%) - - + + tcp_write_xmit (1 samples, 0.35%) - - + + __tcp_push_pending_frames (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + - all (285 samples, 100%) + all (286 samples, 100%) xen_restore_fl_direct_end (1 samples, 0.35%) - - + + netif_rx.part.82 (1 samples, 0.35%) - - + + netif_rx (1 samples, 0.35%) - - + + loopback_xmit (1 samples, 0.35%) - - + + dev_hard_start_xmit (1 samples, 0.35%) - - + + dev_queue_xmit (1 samples, 0.35%) - - + + ip_finish_output (1 samples, 0.35%) - - + + ip_output (1 samples, 0.35%) - - + + ip_local_out (1 samples, 0.35%) - - + + ip_queue_xmit (1 samples, 0.35%) - - + + tcp_transmit_skb (1 samples, 0.35%) - - + + tcp_write_xmit (1 samples, 0.35%) - - + + __tcp_push_pending_frames (1 samples, 0.35%) - - + + tcp_sendmsg (1 samples, 0.35%) - - + + inet_sendmsg (1 samples, 0.35%) - - + + do_sock_write.isra.10 (1 samples, 0.35%) - - + + sock_aio_write (1 samples, 0.35%) - - + + do_sync_write (1 samples, 0.35%) - - + + vfs_write (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + write (1 samples, 0.35%) - - + + sun/nio/ch/FileDispatcherImpl:.write0 (1 samples, 0.35%) - - + + sun/nio/ch/SocketChannelImpl:.write (1 samples, 0.35%) - - + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (1 samples, 0.35%) - - + + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + io/netty/channel/ChannelDuplexHandler:.flush (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.flush (1 samples, 0.35%) - - + + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (1 samples, 0.35%) - - + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKey (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (1 samples, 0.35%) - - + + io/netty/channel/nio/NioEventLoop:.run (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + Interpreter (1 samples, 0.35%) - - + + call_stub (1 samples, 0.35%) - - + + JavaCalls::call_helper (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + JavaCalls::call_virtual (1 samples, 0.35%) - - + + thread_entry (1 samples, 0.35%) - - + + JavaThread::thread_main_inner (1 samples, 0.35%) - - + + JavaThread::run (1 samples, 0.35%) - - + + java_start (1 samples, 0.35%) - - + + start_thread (1 samples, 0.35%) - - + + java (1 samples, 0.35%) - - + + \ No newline at end of file diff --git a/tests/data/flamegraph/perf-vertx-stacks/perf-vertx-stacks-01-collapsed-all.svg b/tests/data/flamegraph/perf-vertx-stacks/perf-vertx-stacks-01-collapsed-all.svg index a4d76d14..bc77c717 100644 --- a/tests/data/flamegraph/perf-vertx-stacks/perf-vertx-stacks-01-collapsed-all.svg +++ b/tests/data/flamegraph/perf-vertx-stacks/perf-vertx-stacks-01-collapsed-all.svg @@ -37,1808 +37,1823 @@ var truncate_text_right = false;]]> read (1 samples, 0.35%) - + check_events (1 samples, 0.35%) - + hypercall_page (1 samples, 0.35%) - + ScavengeRootsTask::do_it (1 samples, 0.35%) - - + + ClassLoaderDataGraph::oops_do (1 samples, 0.35%) - - + + ClassLoaderData::oops_do (1 samples, 0.35%) - - + + PSScavengeKlassClosure::do_klass (1 samples, 0.35%) - - + + PSPromotionManager::drain_stacks_depth (1 samples, 0.35%) - - + + oopDesc* PSPromotionManager::copy_to_survivor_space<false> (1 samples, 0.35%) - - + + InstanceKlass::oop_push_contents (1 samples, 0.35%) - - + + ParallelTaskTerminator::offer_termination (5 samples, 1.75%) - - + + - GCTaskThread::run (14 samples, 4.91%) - - GCTask.. + GCTaskThread::run (14 samples, 4.90%) + + GCTask.. - StealTask::do_it (13 samples, 4.56%) - - Steal.. + StealTask::do_it (13 samples, 4.55%) + + Steal.. - SpinPause (7 samples, 2.46%) - - Sp.. + SpinPause (7 samples, 2.45%) + + Sp.. io/netty/buffer/AbstractByteBufAllocator:.directBuffer (1 samples, 0.35%) - - + + io/netty/buffer/AbstractReferenceCountedByteBuf:.release (1 samples, 0.35%) - - + + io/netty/buffer/PooledByteBuf:.internalNioBuffer (1 samples, 0.35%) - - + + sun/nio/ch/NativeThread:.current (1 samples, 0.35%) - - + + (3 samples, 1.05%) - - + + Java_sun_nio_ch_FileDispatcherImpl_write0 (1 samples, 0.35%) - - + + sys_write (1 samples, 0.35%) - - + + fget_light (1 samples, 0.35%) - - + + __srcu_read_lock (1 samples, 0.35%) - - + + __tcp_push_pending_frames (1 samples, 0.35%) - - + + ktime_get_real (1 samples, 0.35%) - - + + skb_clone (1 samples, 0.35%) - - + + tcp_set_skb_tso_segs (1 samples, 0.35%) - - + + dev_hard_start_xmit (1 samples, 0.35%) - - + + dev_pick_tx (1 samples, 0.35%) - - + + dev_queue_xmit_nit (1 samples, 0.35%) - - + + xen_restore_fl_direct (1 samples, 0.35%) - - + + dev_hard_start_xmit (4 samples, 1.40%) - - + + loopback_xmit (3 samples, 1.05%) - - + + netif_rx (2 samples, 0.70%) - - + + netif_rx.part.82 (2 samples, 0.70%) - - + + xen_restore_fl_direct_end (1 samples, 0.35%) - - + + dma_issue_pending_all (1 samples, 0.35%) - - + + __inet_lookup_established (3 samples, 1.05%) - - + + tcp_event_data_recv (1 samples, 0.35%) - - + + - sock_def_readable (19 samples, 6.67%) - - sock_def_.. + sock_def_readable (19 samples, 6.64%) + + sock_def_.. - __wake_up_sync_key (19 samples, 6.67%) - - __wake_up.. + __wake_up_sync_key (19 samples, 6.64%) + + __wake_up.. - check_events (19 samples, 6.67%) - - check_eve.. + check_events (19 samples, 6.64%) + + check_eve.. - hypercall_page (19 samples, 6.67%) - - hypercall.. + hypercall_page (19 samples, 6.64%) + + hypercall.. + + + __kfree_skb (1 samples, 0.35%) + + + + + skb_release_data (1 samples, 0.35%) + + + + + skb_release_data.part.45 (1 samples, 0.35%) + + bictcp_acked (1 samples, 0.35%) - - + + ktime_get_real (2 samples, 0.70%) - - + + getnstimeofday (2 samples, 0.70%) - - + + xen_clocksource_get_cycles (1 samples, 0.35%) - - + + xen_clocksource_read (1 samples, 0.35%) - - + + tcp_rtt_estimator (1 samples, 0.35%) - - + + - ip_local_deliver (34 samples, 11.93%) - - ip_local_deliver + ip_local_deliver (35 samples, 12.24%) + + ip_local_deliver - ip_local_deliver_finish (34 samples, 11.93%) - - ip_local_deliver_f.. + ip_local_deliver_finish (35 samples, 12.24%) + + ip_local_deliver_f.. - tcp_v4_rcv (33 samples, 11.58%) - - tcp_v4_rcv + tcp_v4_rcv (34 samples, 11.89%) + + tcp_v4_rcv - tcp_v4_do_rcv (29 samples, 10.18%) - - tcp_v4_do_rcv + tcp_v4_do_rcv (30 samples, 10.49%) + + tcp_v4_do_rcv - tcp_rcv_established (28 samples, 9.82%) - - tcp_rcv_establ.. + tcp_rcv_established (29 samples, 10.14%) + + tcp_rcv_establi.. - tcp_ack (9 samples, 3.16%) - - tcp.. + tcp_ack (10 samples, 3.50%) + + tcp.. - tcp_clean_rtx_queue (6 samples, 2.11%) - - t.. + tcp_clean_rtx_queue (7 samples, 2.45%) + + tc.. tcp_valid_rtt_meas (1 samples, 0.35%) - - + + tcp_rtt_estimator (1 samples, 0.35%) - - + + - __do_softirq (37 samples, 12.98%) - - __do_softirq + __do_softirq (38 samples, 13.29%) + + __do_softirq - net_rx_action (37 samples, 12.98%) - - net_rx_action + net_rx_action (38 samples, 13.29%) + + net_rx_action - process_backlog (36 samples, 12.63%) - - process_backlog + process_backlog (37 samples, 12.94%) + + process_backlog - __netif_receive_skb (36 samples, 12.63%) - - __netif_receive_skb + __netif_receive_skb (37 samples, 12.94%) + + __netif_receive_skb - ip_rcv (35 samples, 12.28%) - - ip_rcv + ip_rcv (36 samples, 12.59%) + + ip_rcv - ip_rcv_finish (35 samples, 12.28%) - - ip_rcv_finish + ip_rcv_finish (36 samples, 12.59%) + + ip_rcv_finish ip_local_deliver_finish (1 samples, 0.35%) - - + + - local_bh_enable (38 samples, 13.33%) - - local_bh_enable + local_bh_enable (39 samples, 13.64%) + + local_bh_enable - do_softirq (38 samples, 13.33%) - - do_softirq + do_softirq (39 samples, 13.64%) + + do_softirq - call_softirq (38 samples, 13.33%) - - call_softirq + call_softirq (39 samples, 13.64%) + + call_softirq rcu_bh_qs (1 samples, 0.35%) - - + + - ip_local_out (45 samples, 15.79%) - - ip_local_out + ip_local_out (46 samples, 16.08%) + + ip_local_out - ip_output (45 samples, 15.79%) - - ip_output + ip_output (46 samples, 16.08%) + + ip_output - ip_finish_output (45 samples, 15.79%) - - ip_finish_output + ip_finish_output (46 samples, 16.08%) + + ip_finish_output - dev_queue_xmit (43 samples, 15.09%) - - dev_queue_xmit + dev_queue_xmit (44 samples, 15.38%) + + dev_queue_xmit netif_skb_features (1 samples, 0.35%) - - + + - ip_queue_xmit (47 samples, 16.49%) - - ip_queue_xmit + ip_queue_xmit (48 samples, 16.78%) + + ip_queue_xmit ip_output (2 samples, 0.70%) - - + + pvclock_clocksource_read (1 samples, 0.35%) - - + + getnstimeofday (2 samples, 0.70%) - - + + xen_clocksource_get_cycles (2 samples, 0.70%) - - + + xen_clocksource_read (1 samples, 0.35%) - - + + pvclock_clocksource_read (1 samples, 0.35%) - - + + ktime_get_real (3 samples, 1.05%) - - + + xen_clocksource_get_cycles (1 samples, 0.35%) - - + + - __tcp_push_pending_frames (56 samples, 19.65%) - - __tcp_push_pending_frames + __tcp_push_pending_frames (57 samples, 19.93%) + + __tcp_push_pending_frames - tcp_write_xmit (56 samples, 19.65%) - - tcp_write_xmit + tcp_write_xmit (57 samples, 19.93%) + + tcp_write_xmit - tcp_transmit_skb (53 samples, 18.60%) - - tcp_transmit_skb + tcp_transmit_skb (54 samples, 18.88%) + + tcp_transmit_skb skb_dst_set_noref (1 samples, 0.35%) - - + + lock_sock_nested (1 samples, 0.35%) - - + + _raw_spin_lock_bh (1 samples, 0.35%) - - + + local_bh_disable (1 samples, 0.35%) - - + + __kmalloc_node_track_caller (2 samples, 0.70%) - - + + arch_local_irq_save (1 samples, 0.35%) - - + + __phys_addr (1 samples, 0.35%) - - + + get_slab (2 samples, 0.70%) - - + + - __alloc_skb (7 samples, 2.46%) - - __.. + __alloc_skb (7 samples, 2.45%) + + __.. kmem_cache_alloc_node (1 samples, 0.35%) - - + + - sk_stream_alloc_skb (8 samples, 2.81%) - - sk.. + sk_stream_alloc_skb (8 samples, 2.80%) + + sk.. ksize (1 samples, 0.35%) - - + + ipv4_mtu (1 samples, 0.35%) - - + + tcp_current_mss (2 samples, 0.70%) - - + + tcp_established_options (1 samples, 0.35%) - - + + tcp_send_mss (3 samples, 1.05%) - - + + tcp_xmit_size_goal (1 samples, 0.35%) - - + + - do_sync_write (72 samples, 25.26%) - - do_sync_write + do_sync_write (73 samples, 25.52%) + + do_sync_write - sock_aio_write (72 samples, 25.26%) - - sock_aio_write + sock_aio_write (73 samples, 25.52%) + + sock_aio_write - do_sock_write.isra.10 (72 samples, 25.26%) - - do_sock_write.isra.10 + do_sock_write.isra.10 (73 samples, 25.52%) + + do_sock_write.isra.10 - inet_sendmsg (72 samples, 25.26%) - - inet_sendmsg + inet_sendmsg (73 samples, 25.52%) + + inet_sendmsg - tcp_sendmsg (71 samples, 24.91%) - - tcp_sendmsg + tcp_sendmsg (72 samples, 25.17%) + + tcp_sendmsg tcp_xmit_size_goal (1 samples, 0.35%) - - + + fsnotify (2 samples, 0.70%) - - + + __srcu_read_lock (1 samples, 0.35%) - - + + apparmor_file_permission (1 samples, 0.35%) - - + + rw_verify_area (3 samples, 1.05%) - - + + security_file_permission (1 samples, 0.35%) - - + + apparmor_file_permission (1 samples, 0.35%) - - + + common_file_perm (1 samples, 0.35%) - - + + - sun/nio/ch/FileDispatcherImpl:.write0 (87 samples, 30.53%) - - sun/nio/ch/FileDispatcherImpl:.write0 + sun/nio/ch/FileDispatcherImpl:.write0 (88 samples, 30.77%) + + sun/nio/ch/FileDispatcherImpl:.write0 - write (82 samples, 28.77%) - - write + write (83 samples, 29.02%) + + write - system_call_fastpath (80 samples, 28.07%) - - system_call_fastpath + system_call_fastpath (81 samples, 28.32%) + + system_call_fastpath - sys_write (80 samples, 28.07%) - - sys_write + sys_write (81 samples, 28.32%) + + sys_write - vfs_write (79 samples, 27.72%) - - vfs_write + vfs_write (80 samples, 27.97%) + + vfs_write sock_aio_write (1 samples, 0.35%) - - + + - sun/nio/ch/SocketChannelImpl:.write (88 samples, 30.88%) - - sun/nio/ch/SocketChannelImpl:.write + sun/nio/ch/SocketChannelImpl:.write (89 samples, 31.12%) + + sun/nio/ch/SocketChannelImpl:.write sun/nio/ch/SocketChannelImpl:.writerCleanup (1 samples, 0.35%) - - + + - io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (91 samples, 31.93%) - - io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes (92 samples, 32.17%) + + io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes sun/nio/ch/SocketChannelImpl:.writerCleanup (1 samples, 0.35%) - - + + - io/netty/channel/AbstractChannelHandlerContext:.flush (95 samples, 33.33%) - - io/netty/channel/AbstractChannelHandlerContext:.flush + io/netty/channel/AbstractChannelHandlerContext:.flush (96 samples, 33.57%) + + io/netty/channel/AbstractChannelHandlerContext:.flush - io/netty/channel/ChannelDuplexHandler:.flush (95 samples, 33.33%) - - io/netty/channel/ChannelDuplexHandler:.flush + io/netty/channel/ChannelDuplexHandler:.flush (96 samples, 33.57%) + + io/netty/channel/ChannelDuplexHandler:.flush - io/netty/channel/AbstractChannelHandlerContext:.flush (95 samples, 33.33%) - - io/netty/channel/AbstractChannelHandlerContext:.flush + io/netty/channel/AbstractChannelHandlerContext:.flush (96 samples, 33.57%) + + io/netty/channel/AbstractChannelHandlerContext:.flush - io/netty/channel/ChannelOutboundHandlerAdapter:.flush (95 samples, 33.33%) - - io/netty/channel/ChannelOutboundHandlerAdapter:.flush + io/netty/channel/ChannelOutboundHandlerAdapter:.flush (96 samples, 33.57%) + + io/netty/channel/ChannelOutboundHandlerAdapter:.flush - io/netty/channel/AbstractChannelHandlerContext:.flush (95 samples, 33.33%) - - io/netty/channel/AbstractChannelHandlerContext:.flush + io/netty/channel/AbstractChannelHandlerContext:.flush (96 samples, 33.57%) + + io/netty/channel/AbstractChannelHandlerContext:.flush - io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (95 samples, 33.33%) - - io/netty/channel/DefaultChannelPipeline$HeadContext:.f.. + io/netty/channel/DefaultChannelPipeline$HeadContext:.flush (96 samples, 33.57%) + + io/netty/channel/DefaultChannelPipeline$HeadContext:.f.. - io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (95 samples, 33.33%) - - io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 (96 samples, 33.57%) + + io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0 - io/netty/channel/nio/AbstractNioByteChannel:.doWrite (95 samples, 33.33%) - - io/netty/channel/nio/AbstractNioByteChannel:.doWrite + io/netty/channel/nio/AbstractNioByteChannel:.doWrite (96 samples, 33.57%) + + io/netty/channel/nio/AbstractNioByteChannel:.doWrite io/netty/util/Recycler:.recycle (1 samples, 0.35%) - - + + - io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (97 samples, 34.04%) - - io/netty/channel/AbstractChannelHandlerContext:.fireCha.. + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (98 samples, 34.27%) + + io/netty/channel/AbstractChannelHandlerContext:.fireChan.. - org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (97 samples, 34.04%) - - org/vertx/java/core/net/impl/VertxHandler:.channelReadC.. + org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (98 samples, 34.27%) + + org/vertx/java/core/net/impl/VertxHandler:.channelReadCo.. io/netty/channel/ChannelDuplexHandler:.flush (2 samples, 0.70%) - - + + - io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (98 samples, 34.39%) - - io/netty/channel/AbstractChannelHandlerContext:.fireChan.. + io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete (99 samples, 34.62%) + + io/netty/channel/AbstractChannelHandlerContext:.fireChan.. - io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (98 samples, 34.39%) - - io/netty/handler/codec/ByteToMessageDecoder:.channelRead.. + io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (99 samples, 34.62%) + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead.. org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete (1 samples, 0.35%) - - + + io/netty/buffer/AbstractReferenceCountedByteBuf:.release (1 samples, 0.35%) - - + + java/util/concurrent/ConcurrentHashMap:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/Context:.getWrapFactory (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptableObject:.getParentScope (1 samples, 0.35%) - - + + org/mozilla/javascript/WrapFactory:.wrapAsJavaObject (2 samples, 0.70%) - - + + java/util/HashMap:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/WrapFactory:.wrap (1 samples, 0.35%) - - + + java/util/HashMap:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.getObjectProp (4 samples, 1.40%) - - + + vtable chunks (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.nameOrFunction (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject$Slot:.getValue (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.name (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.has (3 samples, 1.05%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (2 samples, 0.70%) - - + + org/mozilla/javascript/IdScriptableObject:.put (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.setAttributes (1 samples, 0.35%) - - + + org/mozilla/javascript/MemberBox:.invoke (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaMethod:.call (2 samples, 0.70%) - - + + org/mozilla/javascript/WrapFactory:.wrap (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaMethod:.findFunction (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaObject:.get (2 samples, 0.70%) - - + + org/mozilla/javascript/IdScriptableObject:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.put (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptableObject:.createSlot (2 samples, 0.70%) - - + + org/mozilla/javascript/IdScriptableObject:.setAttributes (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.createFunctionActivation (5 samples, 1.75%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.getObjectProp (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject$Slot:.getValue (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeJavaObject:.get (1 samples, 0.35%) - - + + java/util/HashMap:.get (1 samples, 0.35%) - - + + jint_disjoint_arraycopy (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.get (2 samples, 0.70%) - - + + org/mozilla/javascript/IdScriptableObject:.has (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.put (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptableObject:.createSlot (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptRuntime:.createFunctionActivation (5 samples, 1.75%) - - + + org/mozilla/javascript/IdScriptableObject:.setAttributes (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptRuntime:.getObjectProp (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.nameOrFunction (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.put (4 samples, 1.40%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (3 samples, 1.05%) - - + + org/mozilla/javascript/ScriptableObject:.createSlot (3 samples, 1.05%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.35%) - - + + - org/mozilla/javascript/ScriptRuntime:.setObjectProp (7 samples, 2.46%) - - or.. + org/mozilla/javascript/ScriptRuntime:.setObjectProp (7 samples, 2.45%) + + or.. vtable chunks (1 samples, 0.35%) - - + + org/mozilla/javascript/NativeFunction:.initScriptFunction (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.createFunctionActivation (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.createFunctionActivation (2 samples, 0.70%) - - + + org/mozilla/javascript/IdScriptableObject:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.has (1 samples, 0.35%) - - + + - org/mozilla/javascript/ScriptRuntime:.setObjectProp (8 samples, 2.81%) - - or.. + org/mozilla/javascript/ScriptRuntime:.setObjectProp (8 samples, 2.80%) + + or.. - org/mozilla/javascript/IdScriptableObject:.put (7 samples, 2.46%) - - or.. + org/mozilla/javascript/IdScriptableObject:.put (7 samples, 2.45%) + + or.. - org/mozilla/javascript/ScriptableObject:.getSlot (6 samples, 2.11%) - - o.. + org/mozilla/javascript/ScriptableObject:.getSlot (6 samples, 2.10%) + + o.. - org/mozilla/javascript/ScriptableObject:.createSlot (6 samples, 2.11%) - - o.. + org/mozilla/javascript/ScriptableObject:.createSlot (6 samples, 2.10%) + + o.. - org/mozilla/javascript/ScriptRuntime:.newObject (32 samples, 11.23%) - - org/mozilla/javas.. + org/mozilla/javascript/ScriptRuntime:.newObject (32 samples, 11.19%) + + org/mozilla/java.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (32 samples, 11.23%) - - org/mozilla/javas.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (32 samples, 11.19%) + + org/mozilla/java.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (32 samples, 11.23%) - - org/mozilla/javas.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (32 samples, 11.19%) + + org/mozilla/java.. - org/mozilla/javascript/optimizer/OptRuntime:.call2 (13 samples, 4.56%) - - org/m.. + org/mozilla/javascript/optimizer/OptRuntime:.call2 (13 samples, 4.55%) + + org/m.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (11 samples, 3.86%) - - org/.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (11 samples, 3.85%) + + org/.. org/mozilla/javascript/ScriptableObject:.getParentScope (1 samples, 0.35%) - - + + - org/mozilla/javascript/IdScriptableObject:.has (9 samples, 3.16%) - - org.. + org/mozilla/javascript/IdScriptableObject:.has (9 samples, 3.15%) + + org.. org/mozilla/javascript/ScriptableObject:.getSlot (5 samples, 1.75%) - - + + - org/mozilla/javascript/ScriptRuntime:.setObjectProp (17 samples, 5.96%) - - org/mozi.. + org/mozilla/javascript/ScriptRuntime:.setObjectProp (17 samples, 5.94%) + + org/mozi.. - org/mozilla/javascript/IdScriptableObject:.put (8 samples, 2.81%) - - or.. + org/mozilla/javascript/IdScriptableObject:.put (8 samples, 2.80%) + + or.. - org/mozilla/javascript/ScriptableObject:.getSlot (7 samples, 2.46%) - - or.. + org/mozilla/javascript/ScriptableObject:.getSlot (7 samples, 2.45%) + + or.. - org/mozilla/javascript/ScriptableObject:.createSlot (6 samples, 2.11%) - - o.. + org/mozilla/javascript/ScriptableObject:.createSlot (6 samples, 2.10%) + + o.. org/mozilla/javascript/ScriptableObject:.getPrototype (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject:.getParentScope (1 samples, 0.35%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (3 samples, 1.05%) - - + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (3 samples, 1.05%) - - + + org/mozilla/javascript/TopLevel:.getBuiltinPrototype (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptRuntime:.name (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.nameOrFunction (1 samples, 0.35%) - - + + vtable chunks (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.setObjectProp (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.has (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.setAttributes (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptRuntime:.createFunctionActivation (5 samples, 1.75%) - - + + org/mozilla/javascript/TopLevel:.getBuiltinPrototype (2 samples, 0.70%) - - + + - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (82 samples, 28.77%) - - org/mozilla/javascript/gen/file__home_bgregg_t.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (82 samples, 28.67%) + + org/mozilla/javascript/gen/file__home_bgregg_t.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (81 samples, 28.42%) - - org/mozilla/javascript/gen/file__home_bgregg_t.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (81 samples, 28.32%) + + org/mozilla/javascript/gen/file__home_bgregg_t.. - org/mozilla/javascript/optimizer/OptRuntime:.call2 (9 samples, 3.16%) - - org.. + org/mozilla/javascript/optimizer/OptRuntime:.call2 (9 samples, 3.15%) + + org.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (6 samples, 2.11%) - - o.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (6 samples, 2.10%) + + o.. org/mozilla/javascript/ScriptRuntime:.setObjectProp (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.put (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject:.getSlot (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject:.createSlot (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.indexFromString (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.setObjectElem (2 samples, 0.70%) - - + + org/mozilla/javascript/ScriptRuntime:.indexFromString (2 samples, 0.70%) - - + + io/netty/handler/codec/http/DefaultHttpHeaders:.set (1 samples, 0.35%) - - + + io/netty/buffer/AbstractByteBuf:.writeBytes (1 samples, 0.35%) - - + + io/netty/buffer/AbstractByteBuf:.writeBytes (1 samples, 0.35%) - - + + io/netty/buffer/AbstractByteBufAllocator:.directBuffer (3 samples, 1.05%) - - + + io/netty/util/concurrent/FastThreadLocal:.get (1 samples, 0.35%) - - + + io/netty/handler/codec/http/HttpObjectEncoder:.encode (5 samples, 1.75%) - - + + java/util/ArrayList:.add (1 samples, 0.35%) - - + + io/netty/util/internal/RecyclableArrayList:.newInstance (1 samples, 0.35%) - - + + io/netty/util/concurrent/FastThreadLocal:.get (1 samples, 0.35%) - - + + java/util/ArrayList:.ensureExplicitCapacity (1 samples, 0.35%) - - + + - io/netty/channel/AbstractChannelHandlerContext:.write (12 samples, 4.21%) - - io/ne.. + io/netty/channel/AbstractChannelHandlerContext:.write (12 samples, 4.20%) + + io/ne.. - org/vertx/java/core/http/impl/VertxHttpHandler:.write (11 samples, 3.86%) - - org/.. + org/vertx/java/core/http/impl/VertxHttpHandler:.write (11 samples, 3.85%) + + org/.. - io/netty/channel/AbstractChannelHandlerContext:.write (10 samples, 3.51%) - - io/.. + io/netty/channel/AbstractChannelHandlerContext:.write (10 samples, 3.50%) + + io/.. - io/netty/handler/codec/MessageToMessageEncoder:.write (10 samples, 3.51%) - - io/.. + io/netty/handler/codec/MessageToMessageEncoder:.write (10 samples, 3.50%) + + io/.. vtable chunks (1 samples, 0.35%) - - + + - io/netty/channel/AbstractChannelHandlerContext:.write (13 samples, 4.56%) - - io/ne.. + io/netty/channel/AbstractChannelHandlerContext:.write (13 samples, 4.55%) + + io/ne.. org/vertx/java/core/http/impl/VertxHttpHandler:.write (1 samples, 0.35%) - - + + io/netty/handler/codec/http/DefaultHttpHeaders:.add0 (1 samples, 0.35%) - - + + io/netty/handler/codec/http/DefaultHttpHeaders:.set (1 samples, 0.35%) - - + + - org/mozilla/javascript/NativeJavaMethod:.call (21 samples, 7.37%) - - org/mozill.. + org/mozilla/javascript/NativeJavaMethod:.call (21 samples, 7.34%) + + org/mozill.. - org/mozilla/javascript/MemberBox:.invoke (21 samples, 7.37%) - - org/mozill.. + org/mozilla/javascript/MemberBox:.invoke (21 samples, 7.34%) + + org/mozill.. - sun/reflect/DelegatingMethodAccessorImpl:.invoke (19 samples, 6.67%) - - sun/refle.. + sun/reflect/DelegatingMethodAccessorImpl:.invoke (19 samples, 6.64%) + + sun/refle.. sun/nio/cs/UTF_8$Encoder:.<init> (1 samples, 0.35%) - - + + jbyte_disjoint_arraycopy (1 samples, 0.35%) - - + + - io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (128 samples, 44.91%) - - io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (128 samples, 44.76%) + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead - org/vertx/java/core/net/impl/VertxHandler:.channelRead (128 samples, 44.91%) - - org/vertx/java/core/net/impl/VertxHandler:.channelRead + org/vertx/java/core/net/impl/VertxHandler:.channelRead (128 samples, 44.76%) + + org/vertx/java/core/net/impl/VertxHandler:.channelRead - org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (124 samples, 43.51%) - - org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessag.. + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived (124 samples, 43.36%) + + org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessag.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (117 samples, 41.05%) - - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (117 samples, 40.91%) + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (116 samples, 40.70%) - - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (116 samples, 40.56%) + + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call (27 samples, 9.47%) - - org/mozilla/ja.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call (27 samples, 9.44%) + + org/mozilla/ja.. - org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (24 samples, 8.42%) - - org/mozilla/.. + org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (24 samples, 8.39%) + + org/mozilla/.. org/mozilla/javascript/ScriptRuntime:.name (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptRuntime:.nameOrFunction (1 samples, 0.35%) - - + + org/mozilla/javascript/IdScriptableObject:.get (1 samples, 0.35%) - - + + org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue (1 samples, 0.35%) - - + + io/netty/buffer/AbstractByteBuf:.forEachByteAsc0 (1 samples, 0.35%) - - + + io/netty/util/internal/AppendableCharSequence:.append (1 samples, 0.35%) - - + + io/netty/handler/codec/http/HttpHeaders:.isTransferEncodingChunked (1 samples, 0.35%) - - + + io/netty/handler/codec/http/HttpObjectDecoder:.findWhitespace (1 samples, 0.35%) - - + + io/netty/buffer/AbstractByteBuf:.forEachByteAsc0 (2 samples, 0.70%) - - + + io/netty/handler/codec/http/HttpHeaders:.hash (1 samples, 0.35%) - - + + io/netty/handler/codec/http/HttpObjectDecoder:.splitHeader (5 samples, 1.75%) - - + + - io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (143 samples, 50.18%) - - io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead (143 samples, 50.00%) + + io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead - io/netty/handler/codec/ByteToMessageDecoder:.channelRead (143 samples, 50.18%) - - io/netty/handler/codec/ByteToMessageDecoder:.channelRead + io/netty/handler/codec/ByteToMessageDecoder:.channelRead (143 samples, 50.00%) + + io/netty/handler/codec/ByteToMessageDecoder:.channelRead - io/netty/handler/codec/http/HttpObjectDecoder:.decode (13 samples, 4.56%) - - io/ne.. + io/netty/handler/codec/http/HttpObjectDecoder:.decode (13 samples, 4.55%) + + io/ne.. - io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders (10 samples, 3.51%) - - io/.. + io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders (10 samples, 3.50%) + + io/.. java/util/Arrays:.fill (1 samples, 0.35%) - - + + java/nio/channels/spi/AbstractInterruptibleChannel:.end (1 samples, 0.35%) - - + + sys_read (1 samples, 0.35%) - - + + do_sync_read (1 samples, 0.35%) - - + + __kfree_skb (1 samples, 0.35%) - - + + tcp_rcv_space_adjust (1 samples, 0.35%) - - + + skb_release_data (1 samples, 0.35%) - - + + __kfree_skb (2 samples, 0.70%) - - + + skb_release_head_state (1 samples, 0.35%) - - + + dst_release (1 samples, 0.35%) - - + + _raw_spin_lock_bh (1 samples, 0.35%) - - + + skb_copy_datagram_iovec (2 samples, 0.70%) - - + + copy_user_enhanced_fast_string (1 samples, 0.35%) - - + + - do_sync_read (9 samples, 3.16%) - - do_.. + do_sync_read (9 samples, 3.15%) + + do_.. - sock_aio_read (9 samples, 3.16%) - - soc.. + sock_aio_read (9 samples, 3.15%) + + soc.. - sock_aio_read.part.13 (9 samples, 3.16%) - - soc.. + sock_aio_read.part.13 (9 samples, 3.15%) + + soc.. - do_sock_read.isra.12 (9 samples, 3.16%) - - do_.. + do_sock_read.isra.12 (9 samples, 3.15%) + + do_.. - inet_recvmsg (9 samples, 3.16%) - - ine.. + inet_recvmsg (9 samples, 3.15%) + + ine.. - tcp_recvmsg (7 samples, 2.46%) - - tc.. + tcp_recvmsg (7 samples, 2.45%) + + tc.. tcp_cleanup_rbuf (2 samples, 0.70%) - - + + __tcp_select_window (1 samples, 0.35%) - - + + - io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes (16 samples, 5.61%) - - io/nett.. + io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes (16 samples, 5.59%) + + io/nett.. - sun/nio/ch/SocketChannelImpl:.read (16 samples, 5.61%) - - sun/nio.. + sun/nio/ch/SocketChannelImpl:.read (16 samples, 5.59%) + + sun/nio.. - sun/nio/ch/FileDispatcherImpl:.read0 (15 samples, 5.26%) - - sun/ni.. + sun/nio/ch/FileDispatcherImpl:.read0 (15 samples, 5.24%) + + sun/ni.. - read (15 samples, 5.26%) - - read + read (15 samples, 5.24%) + + read - system_call_fastpath (12 samples, 4.21%) - - syste.. + system_call_fastpath (12 samples, 4.20%) + + syste.. - sys_read (12 samples, 4.21%) - - sys_r.. + sys_read (12 samples, 4.20%) + + sys_r.. - vfs_read (10 samples, 3.51%) - - vfs.. + vfs_read (10 samples, 3.50%) + + vfs.. rw_verify_area (1 samples, 0.35%) - - + + - io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (260 samples, 91.23%) - - io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read (261 samples, 91.26%) + + io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete (1 samples, 0.35%) - - + + - JavaThread::run (263 samples, 92.28%) - - JavaThread::run + JavaThread::run (264 samples, 92.31%) + + JavaThread::run - JavaThread::thread_main_inner (263 samples, 92.28%) - - JavaThread::thread_main_inner + JavaThread::thread_main_inner (264 samples, 92.31%) + + JavaThread::thread_main_inner - thread_entry (263 samples, 92.28%) - - thread_entry + thread_entry (264 samples, 92.31%) + + thread_entry - JavaCalls::call_virtual (263 samples, 92.28%) - - JavaCalls::call_virtual + JavaCalls::call_virtual (264 samples, 92.31%) + + JavaCalls::call_virtual - JavaCalls::call_virtual (263 samples, 92.28%) - - JavaCalls::call_virtual + JavaCalls::call_virtual (264 samples, 92.31%) + + JavaCalls::call_virtual - JavaCalls::call_helper (263 samples, 92.28%) - - JavaCalls::call_helper + JavaCalls::call_helper (264 samples, 92.31%) + + JavaCalls::call_helper - call_stub (263 samples, 92.28%) - - call_stub + call_stub (264 samples, 92.31%) + + call_stub - Interpreter (263 samples, 92.28%) - - Interpreter + Interpreter (264 samples, 92.31%) + + Interpreter - Interpreter (263 samples, 92.28%) - - Interpreter + Interpreter (264 samples, 92.31%) + + Interpreter - io/netty/channel/nio/NioEventLoop:.run (263 samples, 92.28%) - - io/netty/channel/nio/NioEventLoop:.run + io/netty/channel/nio/NioEventLoop:.run (264 samples, 92.31%) + + io/netty/channel/nio/NioEventLoop:.run - io/netty/channel/nio/NioEventLoop:.processSelectedKeys (262 samples, 91.93%) - - io/netty/channel/nio/NioEventLoop:.processSelectedKeys + io/netty/channel/nio/NioEventLoop:.processSelectedKeys (263 samples, 91.96%) + + io/netty/channel/nio/NioEventLoop:.processSelectedKeys - io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (262 samples, 91.93%) - - io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized (263 samples, 91.96%) + + io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized - io/netty/channel/nio/NioEventLoop:.processSelectedKey (261 samples, 91.58%) - - io/netty/channel/nio/NioEventLoop:.processSelectedKey + io/netty/channel/nio/NioEventLoop:.processSelectedKey (262 samples, 91.61%) + + io/netty/channel/nio/NioEventLoop:.processSelectedKey io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes (1 samples, 0.35%) - - + + PSIsAliveClosure::do_object_b (1 samples, 0.35%) - - + + StringTable::unlink_or_oops_do (2 samples, 0.70%) - - + + - start_thread (281 samples, 98.60%) - - start_thread + start_thread (282 samples, 98.60%) + + start_thread - java_start (281 samples, 98.60%) - - java_start + java_start (282 samples, 98.60%) + + java_start VMThread::run (4 samples, 1.40%) - - + + VMThread::loop (4 samples, 1.40%) - - + + VMThread::evaluate_operation (4 samples, 1.40%) - - + + VM_Operation::evaluate (4 samples, 1.40%) - - + + VM_ParallelGCFailedAllocation::doit (4 samples, 1.40%) - - + + ParallelScavengeHeap::failed_mem_allocate (4 samples, 1.40%) - - + + PSScavenge::invoke (4 samples, 1.40%) - - + + PSScavenge::invoke_no_policy (4 samples, 1.40%) - - + + pthread_cond_signal@@GLIBC_2.3.2 (1 samples, 0.35%) - - + + system_call_fastpath (1 samples, 0.35%) - - + + sys_futex (1 samples, 0.35%) - - + + do_futex (1 samples, 0.35%) - - + + futex_wake_op (1 samples, 0.35%) - - + + - all (285 samples, 100%) + all (286 samples, 100%) - java (285 samples, 100.00%) + java (286 samples, 100.00%) java write (3 samples, 1.05%) - - + + check_events (3 samples, 1.05%) - - + + hypercall_page (3 samples, 1.05%) - - + + \ No newline at end of file diff --git a/tests/data/flamegraph/unsorted-input/perf-vertx-stacks-01-collapsed-all-unsorted.txt b/tests/data/flamegraph/unsorted-input/perf-vertx-stacks-01-collapsed-all-unsorted.txt index e60c669a..b17e76dc 100644 --- a/tests/data/flamegraph/unsorted-input/perf-vertx-stacks-01-collapsed-all-unsorted.txt +++ b/tests/data/flamegraph/unsorted-input/perf-vertx-stacks-01-collapsed-all-unsorted.txt @@ -1,199 +1,200 @@ -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_rcv_space_adjust_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];vtable chunks_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];fsnotify_[k];__srcu_read_lock_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.has_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/TopLevel:.getBuiltinPrototype_[j] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/ScriptRuntime:.name_[j];org/mozilla/javascript/ScriptRuntime:.nameOrFunction_[j];vtable chunks_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];fget_light_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.name_[j];org/mozilla/javascript/IdScriptableObject:.get_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];io/netty/handler/codec/http/HttpObjectEncoder:.encode_[j];io/netty/buffer/AbstractByteBufAllocator:.directBuffer_[j];io/netty/util/concurrent/FastThreadLocal:.get_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/TopLevel:.getBuiltinPrototype_[j] 2 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k];__kmalloc_node_track_caller_[k] 1 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_send_mss_[k];tcp_current_mss_[k];tcp_established_options_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/ScriptableObject:.getParentScope_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;sys_write_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_cleanup_rbuf_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];lock_sock_nested_[k];_raw_spin_lock_bh_[k];local_bh_disable_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];rw_verify_area_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/NativeFunction:.initScriptFunction_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/WrapFactory:.wrapAsJavaObject_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];__tcp_push_pending_frames_[k] 1 -java;start_thread;java_start;VMThread::run;VMThread::loop;VMThread::evaluate_operation;VM_Operation::evaluate;VM_ParallelGCFailedAllocation::doit;ParallelScavengeHeap::failed_mem_allocate;PSScavenge::invoke;PSScavenge::invoke_no_policy;PSIsAliveClosure::do_object_b 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];__kfree_skb_[k];skb_release_data_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.has_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 5 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_event_data_recv_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.setAttributes_[j] 2 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];dev_hard_start_xmit_[k];loopback_xmit_[k];netif_rx_[k];netif_rx.part.82_[k];xen_restore_fl_direct_end_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 2 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 6 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];io/netty/handler/codec/http/HttpObjectEncoder:.encode_[j];java/util/ArrayList:.add_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_xmit_size_goal_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];java/nio/channels/spi/AbstractInterruptibleChannel:.end_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/NativeThread:.current_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 6 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.findWhitespace_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];__srcu_read_lock_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];io/netty/buffer/PooledByteBuf:.internalNioBuffer_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];ksize_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/ScriptRuntime:.indexFromString_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_output_[k] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];Java_sun_nio_ch_FileDispatcherImpl_write0 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/WrapFactory:.wrap_[j];java/util/HashMap:.get_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.writerCleanup_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.setAttributes_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];dev_hard_start_xmit_[k];dev_queue_xmit_nit_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptableObject:.getParentScope_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_pick_tx_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo_[j] 1 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_clean_rtx_queue_[k];bictcp_acked_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];io/netty/handler/codec/http/HttpObjectEncoder:.encode_[j];io/netty/buffer/AbstractByteBuf:.writeBytes_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getObjectProp_[j];org/mozilla/javascript/ScriptableObject$Slot:.getValue_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k];get_slab_[k] 2 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/buffer/AbstractByteBufAllocator:.directBuffer_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/NativeFunction:.initScriptFunction_[j] 1 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 3 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders_[j];java/util/Arrays:.fill_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getObjectProp_[j];vtable chunks_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders_[j];io/netty/handler/codec/http/HttpObjectDecoder:.splitHeader_[j] 5 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];__kfree_skb_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_xmit_size_goal_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k];__kmalloc_node_track_caller_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];dev_hard_start_xmit_[k];dev_queue_xmit_nit_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/WrapFactory:.wrap_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/NativeThread:.current_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaObject:.get_[j] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/WrapFactory:.wrapAsJavaObject_[j];java/util/HashMap:.get_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.findFunction_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];vtable chunks_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k] 2 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];__srcu_read_lock_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.nameOrFunction_[j];org/mozilla/javascript/IdScriptableObject:.get_[j];org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders_[j];io/netty/buffer/AbstractByteBuf:.forEachByteAsc0_[j] 2 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];sun/nio/cs/UTF_8$Encoder:._[j];jbyte_disjoint_arraycopy_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.get_[j] 2 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j]; 3 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/ScriptRuntime:.setObjectElem_[j];org/mozilla/javascript/ScriptRuntime:.indexFromString_[j] 2 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];_raw_spin_lock_bh_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;sys_write_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j] 2 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ktime_get_real_[k];xen_clocksource_get_cycles_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];sock_def_readable_[k];__wake_up_sync_key_[k];check_events_[k];hypercall_page_[k] 19 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.has_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];java/util/ArrayList:.ensureExplicitCapacity_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];io/netty/buffer/PooledByteBuf:.internalNioBuffer_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];__inet_lookup_established_[k] 3 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/WrapFactory:.wrapAsJavaObject_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/ScriptableObject:.getParentScope_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];rw_verify_area_[k];apparmor_file_permission_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];do_sync_read_[k] 1 +java;start_thread;java_start;VMThread::run;VMThread::loop;VMThread::evaluate_operation;VM_Operation::evaluate;VM_ParallelGCFailedAllocation::doit;ParallelScavengeHeap::failed_mem_allocate;PSScavenge::invoke;PSScavenge::invoke_no_policy;pthread_cond_signal@@GLIBC_2.3.2;system_call_fastpath_[k];sys_futex_[k];do_futex_[k];futex_wake_op_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];rw_verify_area_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];lock_sock_nested_[k];_raw_spin_lock_bh_[k];local_bh_disable_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];fsnotify_[k];__srcu_read_lock_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/buffer/AbstractByteBuf:.forEachByteAsc0_[j];io/netty/util/internal/AppendableCharSequence:.append_[j] 1 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 6 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.get_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];jint_disjoint_arraycopy_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis_[j];org/mozilla/javascript/NativeJavaObject:.get_[j];java/util/HashMap:.get_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/mozilla/javascript/Context:.getWrapFactory_[j] 2 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/util/Recycler:.recycle_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/SocketChannelImpl:.writerCleanup_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];skb_dst_set_noref_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.name_[j];org/mozilla/javascript/ScriptRuntime:.nameOrFunction_[j];org/mozilla/javascript/IdScriptableObject:.get_[j];org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k] 1 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k] 3 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 6 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];Java_sun_nio_ch_FileDispatcherImpl_write0 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];__kfree_skb_[k];skb_release_data_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/handler/codec/http/DefaultHttpHeaders:.set_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptableObject:.getPrototype_[j] 1 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_clean_rtx_queue_[k];ktime_get_real_[k];getnstimeofday_[k];xen_clocksource_get_cycles_[k];xen_clocksource_read_[k] 1 -java;start_thread;java_start;GCTaskThread::run;ScavengeRootsTask::do_it;ClassLoaderDataGraph::oops_do;ClassLoaderData::oops_do;PSScavengeKlassClosure::do_klass 1 +java;start_thread;java_start;VMThread::run;VMThread::loop;VMThread::evaluate_operation;VM_Operation::evaluate;VM_ParallelGCFailedAllocation::doit;ParallelScavengeHeap::failed_mem_allocate;PSScavenge::invoke;PSScavenge::invoke_no_policy;PSIsAliveClosure::do_object_b 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];ktime_get_real_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_clean_rtx_queue_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ktime_get_real_[k];getnstimeofday_[k];xen_clocksource_get_cycles_[k];pvclock_clocksource_read_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getObjectProp_[j];vtable chunks_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.get_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/WrapFactory:.wrapAsJavaObject_[j];java/util/HashMap:.get_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_rcv_space_adjust_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_cleanup_rbuf_[k];__tcp_select_window_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];dma_issue_pending_all_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getObjectProp_[j];org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue_[j] 1 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_clean_rtx_queue_[k];ktime_get_real_[k];getnstimeofday_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ktime_get_real_[k];getnstimeofday_[k];xen_clocksource_get_cycles_[k];xen_clocksource_read_[k];pvclock_clocksource_read_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];java/util/ArrayList:.ensureExplicitCapacity_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/handler/codec/http/DefaultHttpHeaders:.add0_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j] 3 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];rcu_bh_qs_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/buffer/AbstractReferenceCountedByteBuf:.release_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];io/netty/buffer/AbstractByteBuf:.writeBytes_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];dev_hard_start_xmit_[k];loopback_xmit_[k];netif_rx_[k];netif_rx.part.82_[k];xen_restore_fl_direct_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];_raw_spin_lock_bh_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.setAttributes_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.has_[j] 1 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_set_skb_tso_segs_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/SocketChannelImpl:.writerCleanup_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptableObject:.getParentScope_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_hard_start_xmit_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getObjectProp_[j];org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/util/Recycler:.recycle_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptableObject:.getParentScope_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];skb_clone_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];java/util/concurrent/ConcurrentHashMap:.get_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis_[j];org/mozilla/javascript/NativeJavaObject:.get_[j];java/util/HashMap:.get_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j] 2 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];io/netty/handler/codec/http/HttpObjectEncoder:.encode_[j];io/netty/buffer/AbstractByteBufAllocator:.directBuffer_[j] 2 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];rw_verify_area_[k];security_file_permission_[k];apparmor_file_permission_[k];common_file_perm_[k] 1 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k];__phys_addr_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];dev_hard_start_xmit_[k];loopback_xmit_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];ksize_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_cleanup_rbuf_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/WrapFactory:.wrap_[j];java/util/HashMap:.get_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.setAttributes_[j] 2 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j] 1 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];vtable chunks_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];ktime_get_real_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptableObject:.getPrototype_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];sun/nio/cs/UTF_8$Encoder:._[j];jbyte_disjoint_arraycopy_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];netif_skb_features_[k] 1 -java;start_thread;java_start;VMThread::run;VMThread::loop;VMThread::evaluate_operation;VM_Operation::evaluate;VM_ParallelGCFailedAllocation::doit;ParallelScavengeHeap::failed_mem_allocate;PSScavenge::invoke;PSScavenge::invoke_no_policy;pthread_cond_signal@@GLIBC_2.3.2;system_call_fastpath_[k];sys_futex_[k];do_futex_[k];futex_wake_op_[k] 1 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.has_[j] 4 -java;start_thread;java_start;GCTaskThread::run;StealTask::do_it;PSPromotionManager::drain_stacks_depth;oopDesc* PSPromotionManager::copy_to_survivor_space;InstanceKlass::oop_push_contents 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.has_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];java/util/concurrent/ConcurrentHashMap:.get_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];sock_def_readable_[k];__wake_up_sync_key_[k];check_events_[k];hypercall_page_[k] 19 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];io/netty/handler/codec/http/HttpObjectEncoder:.encode_[j];java/util/ArrayList:.add_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_send_mss_[k];tcp_xmit_size_goal_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.setAttributes_[j] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/TopLevel:.getBuiltinPrototype_[j] 2 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_clean_rtx_queue_[k];bictcp_acked_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];fget_light_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];__tcp_push_pending_frames_[k] 1 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k];__kmalloc_node_track_caller_[k];arch_local_irq_save_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];io/netty/handler/codec/http/DefaultHttpHeaders:.set_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpHeaders:.isTransferEncodingChunked_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k];get_slab_[k] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];io/netty/handler/codec/http/HttpObjectEncoder:.encode_[j];io/netty/buffer/AbstractByteBufAllocator:.directBuffer_[j] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/ScriptRuntime:.setObjectElem_[j];org/mozilla/javascript/ScriptRuntime:.indexFromString_[j] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];java/nio/channels/spi/AbstractInterruptibleChannel:.end_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_event_data_recv_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/MemberBox:.invoke_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ktime_get_real_[k];getnstimeofday_[k];xen_clocksource_get_cycles_[k];pvclock_clocksource_read_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_pick_tx_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.has_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];dev_hard_start_xmit_[k];loopback_xmit_[k];netif_rx_[k];netif_rx.part.82_[k];xen_restore_fl_direct_end_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];__kfree_skb_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getObjectProp_[j] 2 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.nameOrFunction_[j];org/mozilla/javascript/ScriptableObject$Slot:.getValue_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.get_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];skb_copy_datagram_iovec_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];rw_verify_area_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.findFunction_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders_[j];io/netty/handler/codec/http/HttpHeaders:.hash_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k];kmem_cache_alloc_node_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];rw_verify_area_[k];security_file_permission_[k];apparmor_file_permission_[k];common_file_perm_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1 -java;start_thread;java_start;GCTaskThread::run;StealTask::do_it;ParallelTaskTerminator::offer_termination 5 -java;start_thread;java_start;VMThread::run;VMThread::loop;VMThread::evaluate_operation;VM_Operation::evaluate;VM_ParallelGCFailedAllocation::doit;ParallelScavengeHeap::failed_mem_allocate;PSScavenge::invoke;PSScavenge::invoke_no_policy;StringTable::unlink_or_oops_do 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ktime_get_real_[k];xen_clocksource_get_cycles_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j]; 3 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.nameOrFunction_[j];org/mozilla/javascript/IdScriptableObject:.get_[j];org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];sock_aio_write_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_cleanup_rbuf_[k];__tcp_select_window_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_clean_rtx_queue_[k];tcp_valid_rtt_meas_[k];tcp_rtt_estimator_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/buffer/AbstractByteBufAllocator:.directBuffer_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];dma_issue_pending_all_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.has_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j] 1 -java;write;check_events_[k];hypercall_page_[k] 3 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];do_sync_read_[k] 1 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/AbstractReferenceCountedByteBuf:.release_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.setAttributes_[j] 2 -java;start_thread;java_start;GCTaskThread::run;StealTask::do_it;SpinPause 7 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];skb_copy_datagram_iovec_[k];copy_user_enhanced_fast_string_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 2 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_clean_rtx_queue_[k];__kfree_skb_[k];skb_release_data_[k];skb_release_data.part.45_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j] 1 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j] 3 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/mozilla/javascript/Context:.getWrapFactory_[j] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_send_mss_[k];tcp_current_mss_[k];ipv4_mtu_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.setAttributes_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.get_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];io/netty/util/internal/RecyclableArrayList:.newInstance_[j];io/netty/util/concurrent/FastThreadLocal:.get_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.has_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];io/netty/handler/codec/http/DefaultHttpHeaders:.set_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j] 1 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_clean_rtx_queue_[k];tcp_rtt_estimator_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];rcu_bh_qs_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.writerCleanup_[j] 1 java;read;check_events_[k];hypercall_page_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.get_[j] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];fsnotify_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getObjectProp_[j] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];rw_verify_area_[k];apparmor_file_permission_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/handler/codec/http/DefaultHttpHeaders:.set_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_finish_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];skb_dst_set_noref_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.name_[j];org/mozilla/javascript/ScriptRuntime:.nameOrFunction_[j];org/mozilla/javascript/IdScriptableObject:.get_[j];org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];skb_clone_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_hard_start_xmit_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/ScriptRuntime:.indexFromString_[j] 1 +java;write;check_events_[k];hypercall_page_[k] 3 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];io/netty/buffer/AbstractByteBuf:.writeBytes_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];rw_verify_area_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.has_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 2 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/TopLevel:.getBuiltinPrototype_[j] 2 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.name_[j];org/mozilla/javascript/IdScriptableObject:.get_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_send_mss_[k];tcp_xmit_size_goal_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j] 1 +java;start_thread;java_start;GCTaskThread::run;StealTask::do_it;PSPromotionManager::drain_stacks_depth;oopDesc* PSPromotionManager::copy_to_survivor_space;InstanceKlass::oop_push_contents 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders_[j];java/util/Arrays:.fill_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/handler/codec/http/DefaultHttpHeaders:.add0_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/MemberBox:.invoke_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.has_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 5 +java;start_thread;java_start;GCTaskThread::run;StealTask::do_it;SpinPause 7 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];jint_disjoint_arraycopy_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j] 3 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_output_[k] 2 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];io/netty/handler/codec/http/HttpObjectEncoder:.encode_[j];io/netty/buffer/AbstractByteBuf:.writeBytes_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/WrapFactory:.wrap_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_clean_rtx_queue_[k];tcp_valid_rtt_meas_[k];tcp_rtt_estimator_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k];kmem_cache_alloc_node_[k] 1 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptableObject:.getParentScope_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];__kfree_skb_[k];skb_release_head_state_[k];dst_release_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_clean_rtx_queue_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/buffer/AbstractByteBuf:.forEachByteAsc0_[j];io/netty/util/internal/AppendableCharSequence:.append_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j] 1 +java;start_thread;java_start;VMThread::run;VMThread::loop;VMThread::evaluate_operation;VM_Operation::evaluate;VM_ParallelGCFailedAllocation::doit;ParallelScavengeHeap::failed_mem_allocate;PSScavenge::invoke;PSScavenge::invoke_no_policy;StringTable::unlink_or_oops_do 2 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders_[j];io/netty/handler/codec/http/HttpHeaders:.hash_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders_[j];io/netty/handler/codec/http/HttpObjectDecoder:.splitHeader_[j] 5 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];netif_skb_features_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/buffer/AbstractReferenceCountedByteBuf:.release_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];fsnotify_[k] 1 +java;start_thread;java_start;GCTaskThread::run;ScavengeRootsTask::do_it;ClassLoaderDataGraph::oops_do;ClassLoaderData::oops_do;PSScavengeKlassClosure::do_klass 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.get_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ktime_get_real_[k];getnstimeofday_[k];xen_clocksource_get_cycles_[k];xen_clocksource_read_[k];pvclock_clocksource_read_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_finish_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j] 3 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.get_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.setAttributes_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpHeaders:.isTransferEncodingChunked_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];skb_copy_datagram_iovec_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.has_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;sys_read_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];io/netty/util/internal/RecyclableArrayList:.newInstance_[j];io/netty/util/concurrent/FastThreadLocal:.get_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];io/netty/handler/codec/http/HttpObjectEncoder:.encode_[j];io/netty/buffer/AbstractByteBufAllocator:.directBuffer_[j];io/netty/util/concurrent/FastThreadLocal:.get_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];dev_hard_start_xmit_[k];loopback_xmit_[k];netif_rx_[k];netif_rx.part.82_[k];xen_restore_fl_direct_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];dev_hard_start_xmit_[k];loopback_xmit_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaObject:.get_[j] 2 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_send_mss_[k];tcp_current_mss_[k];ipv4_mtu_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j] 1 java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];skb_copy_datagram_iovec_[k];copy_user_enhanced_fast_string_[k] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.has_[j] 1 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];__inet_lookup_established_[k] 3 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders_[j];io/netty/buffer/AbstractByteBuf:.forEachByteAsc0_[j] 2 -java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];sock_aio_write_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/ScriptRuntime:.name_[j];org/mozilla/javascript/ScriptRuntime:.nameOrFunction_[j];vtable chunks_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j] 2 +java;start_thread;java_start;GCTaskThread::run;StealTask::do_it;ParallelTaskTerminator::offer_termination 5 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];__kfree_skb_[k];skb_release_head_state_[k];dst_release_[k] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getObjectProp_[j];org/mozilla/javascript/ScriptableObject$Slot:.getValue_[j] 1 +java;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j] 1