Skip to content

Instantly share code, notes, and snippets.

@sreepurnajasti
Created February 10, 2017 07:12
Show Gist options
  • Save sreepurnajasti/18470840db26909b2535c9f1e63c369f to your computer and use it in GitHub Desktop.
Save sreepurnajasti/18470840db26909b2535c9f1e63c369f to your computer and use it in GitHub Desktop.
A test case which implements an multi-client download by calibrating the libuv loop
var app = require('appmetrics');
var mon = app.monitor();
var http = require('http');
var util = require('util');
mon.on('eventloop', function(d) {
console.log(Math.round(d.latency.avg));
});
var string = 'http://' + process.argv[2] + ':' + process.argv[3] + '/';
var index = 0;
var cpu = 0;
var data = new Object();
var str;
var start = process.hrtime();
var interval = setInterval(function() {
if(cpu++ > 100) clearInterval(interval);
}, 100);
for(var wcount=0;wcount<process.argv[4];wcount++) {
http.get('http://www.google.com', function(res) { });
http.get('http://www.ibm.com', function(res) { });
http.get('http://www.amazon.com', function(res) { });
}
for(var count=0;count<process.argv[4];count++) {
http.get(string, function(res) {
res.cid = index++;
data[res.cid] = [];
res.on('data', function(d) {
data[res.cid].push(d.length);
str = util.inspect(http);
d.includes(3);
});
});
}
process.on('exit', function() {
var diff = process.hrtime(start);
console.log(Math.round((diff[0] * 1e9 + diff[1]) / 1000000) + ' millis.');
});
This file has been truncated, but you can view the full file.
# ========
# captured on: Fri Feb 10 01:39:27 2017
# hostname : XXXXX
# os release : 3.10.0-123.el7.x86_64
# perf version : 3.10.0-123.el7.x86_64.debug
# arch : x86_64
# nrcpus online : 2
# nrcpus avail : 2
# cpudesc : Intel Xeon E312xx (Sandy Bridge)
# cpuid : GenuineIntel,6,42,1
# total memory : 8012300 kB
# cmdline : /usr/bin/perf record -c 40000 -i -g ./node --perf-basic-prof down.js YYYYY 25000 128
# event : name = cpu-clock, type = 1, config = 0x0, config1 = 0x0, config2 = 0x0, excl_usr = 0, excl_kern = 0, excl_host = 0, excl_guest = 1, precise_ip = 0, attr_mmap2 = 0, attr_mmap = 1, attr_mmap_data = 0
# HEADER_CPU_TOPOLOGY info available, use -I to display
# HEADER_NUMA_TOPOLOGY info available, use -I to display
# pmu mappings: software = 1, tracepoint = 2, breakpoint = 5
# ========
#
# Samples: 282K of event 'cpu-clock'
# Event count (approx.): 282147
#
# Overhead Command Shared Object Symbol
# ........ ....... ............................ .................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
#
3.83% node [kernel.kallsyms] [k] copy_user_enhanced_fast_string
|
--- copy_user_enhanced_fast_string
|
|--99.69%-- skb_copy_datagram_iovec
| tcp_recvmsg
| inet_recvmsg
| sock_aio_read.part.7
| sock_aio_read
| do_sync_read
| vfs_read
| sys_read
| system_call_fastpath
| 0x7fd6a81a825d
| uv__stream_io
| uv__io_poll
| uv_run
| node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| node::Start(int, char**)
| __libc_start_main
--0.31%-- [...]
1.96% node node [.] v8::internal::Scanner::ScanIdentifierOrKeyword()
|
--- v8::internal::Scanner::ScanIdentifierOrKeyword()
|
|--98.32%-- v8::internal::Scanner::Scan()
| |
| |--99.43%-- v8::internal::Scanner::Next()
| | |
| | |--19.60%-- v8::internal::ParserBase<v8::internal::Parser>::ParseMemberExpressionContinuation(v8::internal::Expression*, bool*, bool*)
| | | v8::internal::ParserBase<v8::internal::Parser>::ParseMemberExpression(bool*, bool*)
| | | v8::internal::ParserBase<v8::internal::Parser>::ParseMemberWithNewPrefixesExpression(bool*, bool*)
| | | v8::internal::ParserBase<v8::internal::Parser>::ParseLeftHandSideExpression(bool*)
| | | v8::internal::ParserBase<v8::internal::Parser>::ParsePostfixExpression(bool*)
| | | v8::internal::ParserBase<v8::internal::Parser>::ParseUnaryExpression(bool*)
| | | |
| | | |--99.81%-- v8::internal::ParserBase<v8::internal::Parser>::ParseBinaryExpression(int, bool, bool*)
| | | | |
| | | | |--80.93%-- v8::internal::ParserBase<v8::internal::Parser>::ParseConditionalExpression(bool, bool*)
| | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseAssignmentExpression(bool, bool*)
| | | | | |
| | | | | |--58.69%-- v8::internal::ParserBase<v8::internal::Parser>::ParseExpressionCoverGrammar(bool, bool*)
| | | | | | |
| | | | | | |--42.94%-- v8::internal::ParserBase<v8::internal::Parser>::ParseIfStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool*)
| | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, v8::internal::AllowLabelledFunctionStatement, bool*)
| | | | | | | |
| | | | | | | |--41.20%-- v8::internal::ParserBase<v8::internal::Parser>::ParseBlock(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool*)
| | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, v8::internal::AllowLabelledFunctionStatement, bool*)
| | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseScopedStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool, bool*)
| | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseIfStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool*)
| | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, v8::internal::AllowLabelledFunctionStatement, bool*)
| | | | | | | | |
| | | | | | | | |--46.07%-- v8::internal::ParserBase<v8::internal::Parser>::ParseScopedStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseIfStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, v8::internal::AllowLabelledFunctionStatement, bool*)
| | | | | | | | | |
| | | | | | | | | |--60.98%-- v8::internal::ParserBase<v8::internal::Parser>::ParseScopedStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool, bool*)
| | | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseIfStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool*)
| | | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, v8::internal::AllowLabelledFunctionStatement, bool*)
| | | | | | | | | | |
| | | | | | | | | | |--68.00%-- v8::internal::ParserBase<v8::internal::Parser>::ParseStatementList(v8::internal::ZoneList<v8::internal::Statement*>*, int, bool, bool*)
| | | | | | | | | | | v8::internal::Parser::ParseEagerFunctionBody(v8::internal::AstRawString const*, int, v8::internal::ParserFormalParameters const&, v8::internal::FunctionKind, v8::internal::FunctionLiteral::FunctionType, bool*)
| | | | | | | | | | | v8::internal::Parser::ParseFunctionLiteral(v8::internal::AstRawString const*, v8::internal::Scanner::Location, v8::internal::FunctionNameValidity, v8::internal::FunctionKind, int, v8::internal::FunctionLiteral::FunctionType, v8::internal::LanguageMode, bool*)
| | | | | | | | | | | v8::internal::Parser::DoParseLazy(v8::internal::ParseInfo*, v8::internal::AstRawString const*, v8::internal::Utf16CharacterStream*)
| | | | | | | | | | | v8::internal::Parser::ParseLazy(v8::internal::Isolate*, v8::internal::ParseInfo*)
| | | | | | | | | | | v8::internal::Parser::Parse(v8::internal::ParseInfo*)
| | | | | | | | | | | v8::internal::Parser::ParseStatic(v8::internal::ParseInfo*)
| | | | | | | | | | | v8::internal::(anonymous namespace)::RenderCallSite(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>)
| | | | | | | | | | | v8::internal::Runtime_ThrowCalledNonCallable(int, v8::internal::Object**, v8::internal::Isolate*)
| | | | | | | | | | | Stub:CEntryStub
| | | | | | | | | | | Builtin:Call_ReceiverIsNotNullOrUndefined
| | | | | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | | | | LazyCompile:*formatProperty util.js:769
| | | | | | | | | | | LazyCompile:* util.js:654
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:*map native array.js:833
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:*formatObject util.js:653
| | | | | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | | | | LazyCompile:*formatProperty util.js:769
| | | | | | | | | | | LazyCompile:* util.js:654
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:*map native array.js:833
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:*formatObject util.js:653
| | | | | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | | | | |
| | | | | | | | | | | |--94.12%-- LazyCompile:~_storeHeader _http_outgoing.js:180
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | |
| | | | | | | | | | | | |--75.00%-- LazyCompile:* /home/gireesh/node/down.js:32
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |--41.67%-- LazyCompile:~emitOne events.js:94
| | | | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | | | | http_parser_execute
| | | | | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | |--80.00%-- Stub:CallApiCallbackStub
| | | | | | | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | |--75.00%-- LazyCompile:*onread net.js:533
| | | | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | | | | | uv__read
| | | | | | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | | | | | uv_run
| | | | | | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | --25.00%-- LazyCompile:*Readable.push _stream_readable.js:123
| | | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | | LazyCompile:~onread net.js:533
| | | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | | | | uv__read
| | | | | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | | | | uv_run
| | | | | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | --20.00%-- v8::internal::FunctionCallbackArguments::Call(void (*)(v8::FunctionCallbackInfo<v8::Value> const&))
| | | | | | | | | | | | | | v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal::Isolate*, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::FunctionTemplateInfo>, v8::internal::Handle<v8::internal::Object>, v8::internal::BuiltinArguments)
| | | | | | | | | | | | | | v8::internal::Builtin_HandleApiCall(int, v8::internal::Object**, v8::internal::Isolate*)
| | | | | | | | | | | | | | Stub:CEntryStub
| | | | | | | | | | | | | | LazyCompile:~socketOnData _http_client.js:418
| | | | | | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | | LazyCompile:*Readable.push _stream_readable.js:123
| | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | LazyCompile:~onread net.js:533
| | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | | | uv__read
| | | | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | | | uv_run
| | | | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |--41.67%-- LazyCompile:*emitOne events.js:94
| | | | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | |--60.00%-- LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | | | | | http_parser_execute
| | | | | | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | | | | | LazyCompile:*socketOnData _http_client.js:418
| | | | | | | | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | | | | uv__read
| | | | | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | | | | uv_run
| | | | | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | --40.00%-- LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | | | | http_parser_execute
| | | | | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | | | uv__read
| | | | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | | | uv_run
| | | | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | | | |
| | | | | | | | | | | | | --16.67%-- LazyCompile:*emit events.js:136
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | | | http_parser_execute
| | | | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | | | | LazyCompile:*emit events.js:136
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | | uv__read
| | | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | | uv_run
| | | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | | |
| | | | | | | | | | | | --25.00%-- LazyCompile:~ /home/gireesh/node/down.js:32
| | | | | | | | | | | | |
| | | | | | | | | | | | |--50.00%-- LazyCompile:~emitOne events.js:94
| | | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | | | http_parser_execute
| | | | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |--50.00%-- LazyCompile:*Readable.push _stream_readable.js:123
| | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | LazyCompile:~onread net.js:533
| | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | | | uv__read
| | | | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | | | uv_run
| | | | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | | | |
| | | | | | | | | | | | | --50.00%-- LazyCompile:*onread net.js:533
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | | uv__read
| | | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | | uv_run
| | | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | | |
| | | | | | | | | | | | |--25.00%-- LazyCompile:*emit events.js:136
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | | | http_parser_execute
| | | | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | | | | LazyCompile:*emit events.js:136
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | | uv__read
| | | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | | uv_run
| | | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | | |
| | | | | | | | | | | | --25.00%-- LazyCompile:*emitOne events.js:94
| | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | | http_parser_execute
| | | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | uv__read
| | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | uv_run
| | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | |
| | | | | | | | | | | --5.88%-- LazyCompile:~inspect util.js:166
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:* /home/gireesh/node/down.js:32
| | | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | http_parser_execute
| | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | v8::internal::FunctionCallbackArguments::Call(void (*)(v8::FunctionCallbackInfo<v8::Value> const&))
| | | | | | | | | | | v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal::Isolate*, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::FunctionTemplateInfo>, v8::internal::Handle<v8::internal::Object>, v8::internal::BuiltinArguments)
| | | | | | | | | | | v8::internal::Builtin_HandleApiCall(int, v8::internal::Object**, v8::internal::Isolate*)
| | | | | | | | | | | Stub:CEntryStub
| | | | | | | | | | | LazyCompile:~socketOnData _http_client.js:418
| | | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | LazyCompile:*Readable.push _stream_readable.js:123
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:~onread net.js:533
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | uv__read
| | | | | | | | | | | uv__stream_io
| | | | | | | | | | | uv__io_poll
| | | | | | | | | | | uv_run
| | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | __libc_start_main
| | | | | | | | | | |
| | | | | | | | | | --32.00%-- v8::internal::ParserBase<v8::internal::Parser>::ParseScopedStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool, bool*)
| | | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseIfStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool*)
| | | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, v8::internal::AllowLabelledFunctionStatement, bool*)
| | | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseScopedStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool, bool*)
| | | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseIfStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool*)
| | | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, v8::internal::AllowLabelledFunctionStatement, bool*)
| | | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseScopedStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool, bool*)
| | | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseIfStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool*)
| | | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, v8::internal::AllowLabelledFunctionStatement, bool*)
| | | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseStatementList(v8::internal::ZoneList<v8::internal::Statement*>*, int, bool, bool*)
| | | | | | | | | | v8::internal::Parser::ParseEagerFunctionBody(v8::internal::AstRawString const*, int, v8::internal::ParserFormalParameters const&, v8::internal::FunctionKind, v8::internal::FunctionLiteral::FunctionType, bool*)
| | | | | | | | | | v8::internal::Parser::ParseFunctionLiteral(v8::internal::AstRawString const*, v8::internal::Scanner::Location, v8::internal::FunctionNameValidity, v8::internal::FunctionKind, int, v8::internal::FunctionLiteral::FunctionType, v8::internal::LanguageMode, bool*)
| | | | | | | | | | v8::internal::Parser::DoParseLazy(v8::internal::ParseInfo*, v8::internal::AstRawString const*, v8::internal::Utf16CharacterStream*)
| | | | | | | | | | v8::internal::Parser::ParseLazy(v8::internal::Isolate*, v8::internal::ParseInfo*)
| | | | | | | | | | v8::internal::Parser::Parse(v8::internal::ParseInfo*)
| | | | | | | | | | v8::internal::Parser::ParseStatic(v8::internal::ParseInfo*)
| | | | | | | | | | v8::internal::(anonymous namespace)::RenderCallSite(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>)
| | | | | | | | | | v8::internal::Runtime_ThrowCalledNonCallable(int, v8::internal::Object**, v8::internal::Isolate*)
| | | | | | | | | | Stub:CEntryStub
| | | | | | | | | | Builtin:Call_ReceiverIsNotNullOrUndefined
| | | | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | | | LazyCompile:*formatProperty util.js:769
| | | | | | | | | | LazyCompile:* util.js:654
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | |
| | | | | | | | | | |--87.50%-- LazyCompile:*map native array.js:833
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:*formatObject util.js:653
| | | | | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | | | | LazyCompile:*formatProperty util.js:769
| | | | | | | | | | | LazyCompile:* util.js:654
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:*map native array.js:833
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:*formatObject util.js:653
| | | | | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | | | | |
| | | | | | | | | | | |--85.71%-- LazyCompile:~_storeHeader _http_outgoing.js:180
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | LazyCompile:* /home/gireesh/node/down.js:32
| | | | | | | | | | | | |
| | | | | | | | | | | | |--66.67%-- LazyCompile:*emitOne events.js:94
| | | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |--75.00%-- LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | | | | http_parser_execute
| | | | | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | | | uv__read
| | | | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | | | uv_run
| | | | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | | | |
| | | | | | | | | | | | | --25.00%-- LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | | | http_parser_execute
| | | | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | | | LazyCompile:*socketOnData _http_client.js:418
| | | | | | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | | uv__read
| | | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | | uv_run
| | | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | | |
| | | | | | | | | | | | |--16.67%-- LazyCompile:~emitOne events.js:94
| | | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | | | http_parser_execute
| | | | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | | | v8::internal::FunctionCallbackArguments::Call(void (*)(v8::FunctionCallbackInfo<v8::Value> const&))
| | | | | | | | | | | | | v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal::Isolate*, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::FunctionTemplateInfo>, v8::internal::Handle<v8::internal::Object>, v8::internal::BuiltinArguments)
| | | | | | | | | | | | | v8::internal::Builtin_HandleApiCall(int, v8::internal::Object**, v8::internal::Isolate*)
| | | | | | | | | | | | | Stub:CEntryStub
| | | | | | | | | | | | | LazyCompile:~socketOnData _http_client.js:418
| | | | | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | LazyCompile:*Readable.push _stream_readable.js:123
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | LazyCompile:~onread net.js:533
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | | uv__read
| | | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | | uv_run
| | | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | | |
| | | | | | | | | | | | --16.67%-- LazyCompile:*emit events.js:136
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | | http_parser_execute
| | | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | | | LazyCompile:*emit events.js:136
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | uv__read
| | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | uv_run
| | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | |
| | | | | | | | | | | --14.29%-- LazyCompile:~inspect util.js:166
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:~ /home/gireesh/node/down.js:32
| | | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:*Readable.read _stream_readable.js:271
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:*resume_ _stream_readable.js:734
| | | | | | | | | | | LazyCompile:*_combinedTickCallback internal/process/next_tick.js:65
| | | | | | | | | | | LazyCompile:~_tickDomainCallback internal/process/next_tick.js:108
| | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | uv__read
| | | | | | | | | | | uv__stream_io
| | | | | | | | | | | uv__io_poll
| | | | | | | | | | | uv_run
| | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | __libc_start_main
| | | | | | | | | | |
| | | | | | | | | | --12.50%-- LazyCompile:~map native array.js:833
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:*formatObject util.js:653
| | | | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | | | LazyCompile:*formatProperty util.js:769
| | | | | | | | | | LazyCompile:* util.js:654
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:~map native array.js:833
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:*formatObject util.js:653
| | | | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | | | LazyCompile:~inspect util.js:166
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:~ /home/gireesh/node/down.js:32
| | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:~readableAddChunk _stream_readable.js:147
| | | | | | | | | | LazyCompile:~Readable.push _stream_readable.js:123
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:~parserOnBody _http_common.js:110
| | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | http_parser_execute
| | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | v8::internal::FunctionCallbackArguments::Call(void (*)(v8::FunctionCallbackInfo<v8::Value> const&))
| | | | | | | | | | v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal::Isolate*, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::FunctionTemplateInfo>, v8::internal::Handle<v8::internal::Object>, v8::internal::BuiltinArguments)
| | | | | | | | | | v8::internal::Builtin_HandleApiCall(int, v8::internal::Object**, v8::internal::Isolate*)
| | | | | | | | | | Stub:CEntryStub
| | | | | | | | | | LazyCompile:~socketOnData _http_client.js:418
| | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:~readableAddChunk _stream_readable.js:147
| | | | | | | | | | LazyCompile:~Readable.push _stream_readable.js:123
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:~onread net.js:533
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | uv__read
| | | | | | | | | | uv__stream_io
| | | | | | | | | | uv__io_poll
| | | | | | | | | | uv_run
| | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | __libc_start_main
| | | | | | | | | |
| | | | | | | | | --39.02%-- v8::internal::ParserBase<v8::internal::Parser>::ParseStatementList(v8::internal::ZoneList<v8::internal::Statement*>*, int, bool, bool*)
| | | | | | | | | v8::internal::Parser::ParseEagerFunctionBody(v8::internal::AstRawString const*, int, v8::internal::ParserFormalParameters const&, v8::internal::FunctionKind, v8::internal::FunctionLiteral::FunctionType, bool*)
| | | | | | | | | v8::internal::Parser::ParseFunctionLiteral(v8::internal::AstRawString const*, v8::internal::Scanner::Location, v8::internal::FunctionNameValidity, v8::internal::FunctionKind, int, v8::internal::FunctionLiteral::FunctionType, v8::internal::LanguageMode, bool*)
| | | | | | | | | v8::internal::Parser::DoParseLazy(v8::internal::ParseInfo*, v8::internal::AstRawString const*, v8::internal::Utf16CharacterStream*)
| | | | | | | | | v8::internal::Parser::ParseLazy(v8::internal::Isolate*, v8::internal::ParseInfo*)
| | | | | | | | | v8::internal::Parser::Parse(v8::internal::ParseInfo*)
| | | | | | | | | v8::internal::Parser::ParseStatic(v8::internal::ParseInfo*)
| | | | | | | | | v8::internal::(anonymous namespace)::RenderCallSite(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>)
| | | | | | | | | v8::internal::Runtime_ThrowCalledNonCallable(int, v8::internal::Object**, v8::internal::Isolate*)
| | | | | | | | | Stub:CEntryStub
| | | | | | | | | Builtin:Call_ReceiverIsNotNullOrUndefined
| | | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | | LazyCompile:*formatProperty util.js:769
| | | | | | | | | LazyCompile:* util.js:654
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | LazyCompile:*map native array.js:833
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | LazyCompile:*formatObject util.js:653
| | | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | | LazyCompile:*formatProperty util.js:769
| | | | | | | | | LazyCompile:* util.js:654
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | LazyCompile:*map native array.js:833
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | LazyCompile:*formatObject util.js:653
| | | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | | |
| | | | | | | | | |--93.75%-- LazyCompile:~_storeHeader _http_outgoing.js:180
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | |
| | | | | | | | | | |--86.67%-- LazyCompile:* /home/gireesh/node/down.js:32
| | | | | | | | | | | |
| | | | | | | | | | | |--53.85%-- LazyCompile:*emitOne events.js:94
| | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | | http_parser_execute
| | | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | uv__read
| | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | uv_run
| | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | |
| | | | | | | | | | | |--30.77%-- LazyCompile:~emitOne events.js:94
| | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | |
| | | | | | | | | | | | |--75.00%-- LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | | | http_parser_execute
| | | | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |--33.33%-- LazyCompile:~isInvalidPath _http_client.js:27
| | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | | | uv__read
| | | | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | | | uv_run
| | | | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |--33.33%-- LazyCompile:*Readable.push _stream_readable.js:123
| | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | LazyCompile:~onread net.js:533
| | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | | | uv__read
| | | | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | | | uv_run
| | | | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | | | |
| | | | | | | | | | | | | --33.33%-- LazyCompile:*onread net.js:533
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | | uv__read
| | | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | | uv_run
| | | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | | |
| | | | | | | | | | | | --25.00%-- LazyCompile:~reduceToSingleString util.js:829
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | LazyCompile:*resume_ _stream_readable.js:734
| | | | | | | | | | | | LazyCompile:*_combinedTickCallback internal/process/next_tick.js:65
| | | | | | | | | | | | LazyCompile:~_tickDomainCallback internal/process/next_tick.js:108
| | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | uv__read
| | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | uv_run
| | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | |
| | | | | | | | | | | --15.38%-- LazyCompile:*emit events.js:136
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | http_parser_execute
| | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | | LazyCompile:*emit events.js:136
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | uv__read
| | | | | | | | | | | uv__stream_io
| | | | | | | | | | | uv__io_poll
| | | | | | | | | | | uv_run
| | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | __libc_start_main
| | | | | | | | | | |
| | | | | | | | | | --13.33%-- LazyCompile:~ /home/gireesh/node/down.js:32
| | | | | | | | | | |
| | | | | | | | | | |--50.00%-- LazyCompile:~emitOne events.js:94
| | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | http_parser_execute
| | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | LazyCompile:*Readable.push _stream_readable.js:123
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:~onread net.js:533
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | uv__read
| | | | | | | | | | | uv__stream_io
| | | | | | | | | | | uv__io_poll
| | | | | | | | | | | uv_run
| | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | __libc_start_main
| | | | | | | | | | |
| | | | | | | | | | --50.00%-- LazyCompile:*emit events.js:136
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | http_parser_execute
| | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | LazyCompile:*emit events.js:136
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | uv__read
| | | | | | | | | | uv__stream_io
| | | | | | | | | | uv__io_poll
| | | | | | | | | | uv_run
| | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | __libc_start_main
| | | | | | | | | |
| | | | | | | | | --6.25%-- LazyCompile:~inspect util.js:166
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | LazyCompile:~ /home/gireesh/node/down.js:32
| | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | LazyCompile:~Readable.read _stream_readable.js:271
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | LazyCompile:~flow _stream_readable.js:758
| | | | | | | | | LazyCompile:~resume_ _stream_readable.js:734
| | | | | | | | | LazyCompile:~_combinedTickCallback internal/process/next_tick.js:65
| | | | | | | | | LazyCompile:~_tickDomainCallback internal/process/next_tick.js:108
| | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | Stub:JSEntryStub
| | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | uv__read
| | | | | | | | | uv__stream_io
| | | | | | | | | uv__io_poll
| | | | | | | | | uv_run
| | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | node::Start(int, char**)
| | | | | | | | | __libc_start_main
| | | | | | | | |
| | | | | | | | |--29.21%-- v8::internal::ParserBase<v8::internal::Parser>::ParseStatementList(v8::internal::ZoneList<v8::internal::Statement*>*, int, bool, bool*)
| | | | | | | | | v8::internal::Parser::ParseEagerFunctionBody(v8::internal::AstRawString const*, int, v8::internal::ParserFormalParameters const&, v8::internal::FunctionKind, v8::internal::FunctionLiteral::FunctionType, bool*)
| | | | | | | | | v8::internal::Parser::ParseFunctionLiteral(v8::internal::AstRawString const*, v8::internal::Scanner::Location, v8::internal::FunctionNameValidity, v8::internal::FunctionKind, int, v8::internal::FunctionLiteral::FunctionType, v8::internal::LanguageMode, bool*)
| | | | | | | | | |
| | | | | | | | | |--96.15%-- v8::internal::Parser::DoParseLazy(v8::internal::ParseInfo*, v8::internal::AstRawString const*, v8::internal::Utf16CharacterStream*)
| | | | | | | | | | v8::internal::Parser::ParseLazy(v8::internal::Isolate*, v8::internal::ParseInfo*)
| | | | | | | | | | v8::internal::Parser::Parse(v8::internal::ParseInfo*)
| | | | | | | | | | v8::internal::Parser::ParseStatic(v8::internal::ParseInfo*)
| | | | | | | | | | v8::internal::(anonymous namespace)::RenderCallSite(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>)
| | | | | | | | | | v8::internal::Runtime_ThrowCalledNonCallable(int, v8::internal::Object**, v8::internal::Isolate*)
| | | | | | | | | | Stub:CEntryStub
| | | | | | | | | | Builtin:Call_ReceiverIsNotNullOrUndefined
| | | | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | | | LazyCompile:*formatProperty util.js:769
| | | | | | | | | | LazyCompile:* util.js:654
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:*map native array.js:833
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:*formatObject util.js:653
| | | | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | | | LazyCompile:*formatProperty util.js:769
| | | | | | | | | | LazyCompile:* util.js:654
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:*map native array.js:833
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:*formatObject util.js:653
| | | | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | | | |
| | | | | | | | | | |--88.00%-- LazyCompile:~_storeHeader _http_outgoing.js:180
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | |
| | | | | | | | | | | |--86.36%-- LazyCompile:* /home/gireesh/node/down.js:32
| | | | | | | | | | | | |
| | | | | | | | | | | | |--52.63%-- LazyCompile:*emitOne events.js:94
| | | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |--60.00%-- LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | | | | http_parser_execute
| | | | | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | | | uv__read
| | | | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | | | uv_run
| | | | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | | | |
| | | | | | | | | | | | | --40.00%-- LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | | | http_parser_execute
| | | | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |--75.00%-- v8::internal::FunctionCallbackArguments::Call(void (*)(v8::FunctionCallbackInfo<v8::Value> const&))
| | | | | | | | | | | | | | v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal::Isolate*, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::FunctionTemplateInfo>, v8::internal::Handle<v8::internal::Object>, v8::internal::BuiltinArguments)
| | | | | | | | | | | | | | v8::internal::Builtin_HandleApiCall(int, v8::internal::Object**, v8::internal::Isolate*)
| | | | | | | | | | | | | | Stub:CEntryStub
| | | | | | | | | | | | | | LazyCompile:~socketOnData _http_client.js:418
| | | | | | | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | | | uv__read
| | | | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | | | uv_run
| | | | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | | | |
| | | | | | | | | | | | | --25.00%-- Stub:CallApiCallbackStub
| | | | | | | | | | | | | LazyCompile:*socketOnData _http_client.js:418
| | | | | | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | | uv__read
| | | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | | uv_run
| | | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | | |
| | | | | | | | | | | | |--36.84%-- LazyCompile:*emit events.js:136
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | | | http_parser_execute
| | | | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | | | | LazyCompile:*emit events.js:136
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | | uv__read
| | | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | | uv_run
| | | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | | |
| | | | | | | | | | | | --10.53%-- LazyCompile:~emitOne events.js:94
| | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | | http_parser_execute
| | | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | |
| | | | | | | | | | | | |--50.00%-- LazyCompile:~isInvalidPath _http_client.js:27
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | | uv__read
| | | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | | uv_run
| | | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | | |
| | | | | | | | | | | | --50.00%-- LazyCompile:*Readable.push _stream_readable.js:123
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | LazyCompile:~onread net.js:533
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | uv__read
| | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | uv_run
| | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | |
| | | | | | | | | | | --13.64%-- LazyCompile:~ /home/gireesh/node/down.js:32
| | | | | | | | | | | |
| | | | | | | | | | | |--66.67%-- LazyCompile:~emitOne events.js:94
| | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | | http_parser_execute
| | | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | LazyCompile:*Readable.push _stream_readable.js:123
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | LazyCompile:~onread net.js:533
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | uv__read
| | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | uv_run
| | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | |
| | | | | | | | | | | --33.33%-- LazyCompile:*emitOne events.js:94
| | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | http_parser_execute
| | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | uv__read
| | | | | | | | | | | uv__stream_io
| | | | | | | | | | | uv__io_poll
| | | | | | | | | | | uv_run
| | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | __libc_start_main
| | | | | | | | | | |
| | | | | | | | | | --12.00%-- LazyCompile:~inspect util.js:166
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:~ /home/gireesh/node/down.js:32
| | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:~readableAddChunk _stream_readable.js:147
| | | | | | | | | | LazyCompile:*Readable.push _stream_readable.js:123
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:~parserOnBody _http_common.js:110
| | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | http_parser_execute
| | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | v8::internal::FunctionCallbackArguments::Call(void (*)(v8::FunctionCallbackInfo<v8::Value> const&))
| | | | | | | | | | v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal::Isolate*, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::FunctionTemplateInfo>, v8::internal::Handle<v8::internal::Object>, v8::internal::BuiltinArguments)
| | | | | | | | | | v8::internal::Builtin_HandleApiCall(int, v8::internal::Object**, v8::internal::Isolate*)
| | | | | | | | | | Stub:CEntryStub
| | | | | | | | | | LazyCompile:~socketOnData _http_client.js:418
| | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:~readableAddChunk _stream_readable.js:147
| | | | | | | | | | LazyCompile:*Readable.push _stream_readable.js:123
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:~onread net.js:533
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | uv__read
| | | | | | | | | | uv__stream_io
| | | | | | | | | | uv__io_poll
| | | | | | | | | | uv_run
| | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | __libc_start_main
| | | | | | | | | |
| | | | | | | | | --3.85%-- v8::internal::ParserBase<v8::internal::Parser>::ParseHoistableDeclaration(int, v8::internal::ParseFunctionFlags, v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseStatementList(v8::internal::ZoneList<v8::internal::Statement*>*, int, bool, bool*)
| | | | | | | | | v8::internal::Parser::ParseEagerFunctionBody(v8::internal::AstRawString const*, int, v8::internal::ParserFormalParameters const&, v8::internal::FunctionKind, v8::internal::FunctionLiteral::FunctionType, bool*)
| | | | | | | | | v8::internal::Parser::ParseFunctionLiteral(v8::internal::AstRawString const*, v8::internal::Scanner::Location, v8::internal::FunctionNameValidity, v8::internal::FunctionKind, int, v8::internal::FunctionLiteral::FunctionType, v8::internal::LanguageMode, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseMemberExpression(bool*, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseMemberWithNewPrefixesExpression(bool*, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseLeftHandSideExpression(bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParsePostfixExpression(bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseUnaryExpression(bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseBinaryExpression(int, bool, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseConditionalExpression(bool, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseAssignmentExpression(bool, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseExpressionCoverGrammar(bool, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParsePrimaryExpression(bool*, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseMemberExpression(bool*, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseMemberWithNewPrefixesExpression(bool*, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseLeftHandSideExpression(bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParsePostfixExpression(bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseUnaryExpression(bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseBinaryExpression(int, bool, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseConditionalExpression(bool, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseAssignmentExpression(bool, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseExpressionCoverGrammar(bool, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseExpressionOrLabelledStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, v8::internal::AllowLabelledFunctionStatement, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, v8::internal::AllowLabelledFunctionStatement, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseStatementList(v8::internal::ZoneList<v8::internal::Statement*>*, int, bool, bool*)
| | | | | | | | | v8::internal::Parser::DoParseProgram(v8::internal::ParseInfo*)
| | | | | | | | | v8::internal::Parser::ParseProgram(v8::internal::Isolate*, v8::internal::ParseInfo*)
| | | | | | | | | v8::internal::Parser::Parse(v8::internal::ParseInfo*)
| | | | | | | | | v8::internal::Parser::ParseStatic(v8::internal::ParseInfo*)
| | | | | | | | | v8::internal::(anonymous namespace)::CompileToplevel(v8::internal::CompilationInfo*)
| | | | | | | | | v8::internal::Compiler::GetSharedFunctionInfoForScript(v8::internal::Handle<v8::internal::String>, v8::internal::Handle<v8::internal::Object>, int, int, v8::ScriptOriginOptions, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Context>, v8::Extension*, v8::internal::ScriptData**, v8::ScriptCompiler::CompileOptions, v8::internal::NativesFlag, bool)
| | | | | | | | | v8::ScriptCompiler::CompileUnboundInternal(v8::Isolate*, v8::ScriptCompiler::Source*, v8::ScriptCompiler::CompileOptions, bool) [clone .part.420]
| | | | | | | | | v8::ScriptCompiler::CompileUnboundScript(v8::Isolate*, v8::ScriptCompiler::Source*, v8::ScriptCompiler::CompileOptions)
| | | | | | | | | node::ContextifyScript::New(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | v8::internal::FunctionCallbackArguments::Call(void (*)(v8::FunctionCallbackInfo<v8::Value> const&))
| | | | | | | | | v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<true>(v8::internal::Isolate*, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::FunctionTemplateInfo>, v8::internal::Handle<v8::internal::Object>, v8::internal::BuiltinArguments)
| | | | | | | | | v8::internal::Builtin_HandleApiCall(int, v8::internal::Object**, v8::internal::Isolate*)
| | | | | | | | | Stub:CEntryStub
| | | | | | | | | Builtin:JSConstructStubApi
| | | | | | | | | LazyCompile:~exports.runInThisContext vm.js:72
| | | | | | | | | LazyCompile:~Module._compile module.js:511
| | | | | | | | | LazyCompile:~Module._extensions..js module.js:578
| | | | | | | | | LazyCompile:~Module.load module.js:479
| | | | | | | | | LazyCompile:~tryModuleLoad module.js:444
| | | | | | | | | LazyCompile:~Module._load module.js:413
| | | | | | | | | LazyCompile:~Module.require module.js:495
| | | | | | | | | LazyCompile:~require internal/module.js:17
| | | | | | | | | Function:~ /home/gireesh/node/node_modules/pako/index.js:1
| | | | | | | | | LazyCompile:~Module._compile module.js:511
| | | | | | | | | LazyCompile:~Module._extensions..js module.js:578
| | | | | | | | | LazyCompile:~Module.load module.js:479
| | | | | | | | | LazyCompile:~tryModuleLoad module.js:444
| | | | | | | | | LazyCompile:~Module._load module.js:413
| | | | | | | | | LazyCompile:~Module.require module.js:495
| | | | | | | | | LazyCompile:~require internal/module.js:17
| | | | | | | | | Function:~ /home/gireesh/node/node_modules/jszip/lib/flate.js:1
| | | | | | | | | LazyCompile:~Module._compile module.js:511
| | | | | | | | | LazyCompile:~Module._extensions..js module.js:578
| | | | | | | | | LazyCompile:~Module.load module.js:479
| | | | | | | | | LazyCompile:~tryModuleLoad module.js:444
| | | | | | | | | LazyCompile:~Module._load module.js:413
| | | | | | | | | LazyCompile:~Module.require module.js:495
| | | | | | | | | LazyCompile:~require internal/module.js:17
| | | | | | | | | Function:~ /home/gireesh/node/node_modules/jszip/lib/compressions.js:1
| | | | | | | | | LazyCompile:~Module._compile module.js:511
| | | | | | | | | LazyCompile:~Module._extensions..js module.js:578
| | | | | | | | | LazyCompile:~Module.load module.js:479
| | | | | | | | | LazyCompile:~tryModuleLoad module.js:444
| | | | | | | | | LazyCompile:~Module._load module.js:413
| | | | | | | | | LazyCompile:~Module.require module.js:495
| | | | | | | | | LazyCompile:~require internal/module.js:17
| | | | | | | | | Function:~ /home/gireesh/node/node_modules/jszip/lib/utils.js:1
| | | | | | | | | LazyCompile:~Module._compile module.js:511
| | | | | | | | | LazyCompile:~Module._extensions..js module.js:578
| | | | | | | | | LazyCompile:~Module.load module.js:479
| | | | | | | | | LazyCompile:~tryModuleLoad module.js:444
| | | | | | | | | LazyCompile:~Module._load module.js:413
| | | | | | | | | LazyCompile:~Module.require module.js:495
| | | | | | | | | LazyCompile:~require internal/module.js:17
| | | | | | | | | Function:~ /home/gireesh/node/node_modules/jszip/lib/object.js:1
| | | | | | | | | LazyCompile:~Module._compile module.js:511
| | | | | | | | | LazyCompile:~Module._extensions..js module.js:578
| | | | | | | | | LazyCompile:~Module.load module.js:479
| | | | | | | | | LazyCompile:~tryModuleLoad module.js:444
| | | | | | | | | LazyCompile:~Module._load module.js:413
| | | | | | | | | LazyCompile:~Module.require module.js:495
| | | | | | | | | LazyCompile:~require internal/module.js:17
| | | | | | | | | Function:~ /home/gireesh/node/node_modules/jszip/lib/index.js:1
| | | | | | | | | LazyCompile:~Module._compile module.js:511
| | | | | | | | | LazyCompile:~Module._extensions..js module.js:578
| | | | | | | | | LazyCompile:~Module.load module.js:479
| | | | | | | | | LazyCompile:~tryModuleLoad module.js:444
| | | | | | | | | LazyCompile:~Module._load module.js:413
| | | | | | | | | LazyCompile:~Module.require module.js:495
| | | | | | | | | LazyCompile:~require internal/module.js:17
| | | | | | | | | Function:~ /home/gireesh/node/node_modules/appmetrics/headless_zip.js:1
| | | | | | | | | LazyCompile:~Module._compile module.js:511
| | | | | | | | | LazyCompile:~Module._extensions..js module.js:578
| | | | | | | | | LazyCompile:~Module.load module.js:479
| | | | | | | | | LazyCompile:~tryModuleLoad module.js:444
| | | | | | | | | LazyCompile:~Module._load module.js:413
| | | | | | | | | LazyCompile:~Module.require module.js:495
| | | | | | | | |
| | | | | | | | --24.72%-- v8::internal::ParserBase<v8::internal::Parser>::ParseBlock(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool*)
| | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, v8::internal::AllowLabelledFunctionStatement, bool*)
| | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseScopedStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool, bool*)
| | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseIfStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool*)
| | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, v8::internal::AllowLabelledFunctionStatement, bool*)
| | | | | | | | |
| | | | | | | | |--59.09%-- v8::internal::ParserBase<v8::internal::Parser>::ParseScopedStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseIfStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, v8::internal::AllowLabelledFunctionStatement, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseScopedStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseIfStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, v8::internal::AllowLabelledFunctionStatement, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseScopedStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseIfStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, v8::internal::AllowLabelledFunctionStatement, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseScopedStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseIfStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, v8::internal::AllowLabelledFunctionStatement, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseScopedStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseIfStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, v8::internal::AllowLabelledFunctionStatement, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseStatementList(v8::internal::ZoneList<v8::internal::Statement*>*, int, bool, bool*)
| | | | | | | | | v8::internal::Parser::ParseEagerFunctionBody(v8::internal::AstRawString const*, int, v8::internal::ParserFormalParameters const&, v8::internal::FunctionKind, v8::internal::FunctionLiteral::FunctionType, bool*)
| | | | | | | | | v8::internal::Parser::ParseFunctionLiteral(v8::internal::AstRawString const*, v8::internal::Scanner::Location, v8::internal::FunctionNameValidity, v8::internal::FunctionKind, int, v8::internal::FunctionLiteral::FunctionType, v8::internal::LanguageMode, bool*)
| | | | | | | | | v8::internal::Parser::DoParseLazy(v8::internal::ParseInfo*, v8::internal::AstRawString const*, v8::internal::Utf16CharacterStream*)
| | | | | | | | | v8::internal::Parser::ParseLazy(v8::internal::Isolate*, v8::internal::ParseInfo*)
| | | | | | | | | v8::internal::Parser::Parse(v8::internal::ParseInfo*)
| | | | | | | | | v8::internal::Parser::ParseStatic(v8::internal::ParseInfo*)
| | | | | | | | | v8::internal::(anonymous namespace)::RenderCallSite(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>)
| | | | | | | | | v8::internal::Runtime_ThrowCalledNonCallable(int, v8::internal::Object**, v8::internal::Isolate*)
| | | | | | | | | Stub:CEntryStub
| | | | | | | | | Builtin:Call_ReceiverIsNotNullOrUndefined
| | | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | | LazyCompile:*formatProperty util.js:769
| | | | | | | | | LazyCompile:* util.js:654
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | LazyCompile:*map native array.js:833
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | LazyCompile:*formatObject util.js:653
| | | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | | LazyCompile:*formatProperty util.js:769
| | | | | | | | | LazyCompile:* util.js:654
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | LazyCompile:*map native array.js:833
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | LazyCompile:*formatObject util.js:653
| | | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | | |
| | | | | | | | | |--84.62%-- LazyCompile:~_storeHeader _http_outgoing.js:180
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | |
| | | | | | | | | | |--81.82%-- LazyCompile:* /home/gireesh/node/down.js:32
| | | | | | | | | | | |
| | | | | | | | | | | |--66.67%-- LazyCompile:*emitOne events.js:94
| | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | |
| | | | | | | | | | | | |--50.00%-- LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | | | http_parser_execute
| | | | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | | uv__read
| | | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | | uv_run
| | | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | | |
| | | | | | | | | | | | --50.00%-- LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | | http_parser_execute
| | | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | | LazyCompile:*socketOnData _http_client.js:418
| | | | | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | uv__read
| | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | uv_run
| | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | |
| | | | | | | | | | | --33.33%-- LazyCompile:~emitOne events.js:94
| | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | |
| | | | | | | | | | | |--66.67%-- LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | | http_parser_execute
| | | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | | |
| | | | | | | | | | | | |--50.00%-- v8::internal::FunctionCallbackArguments::Call(void (*)(v8::FunctionCallbackInfo<v8::Value> const&))
| | | | | | | | | | | | | v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal::Isolate*, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::FunctionTemplateInfo>, v8::internal::Handle<v8::internal::Object>, v8::internal::BuiltinArguments)
| | | | | | | | | | | | | v8::internal::Builtin_HandleApiCall(int, v8::internal::Object**, v8::internal::Isolate*)
| | | | | | | | | | | | | Stub:CEntryStub
| | | | | | | | | | | | | LazyCompile:~socketOnData _http_client.js:418
| | | | | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | LazyCompile:*Readable.push _stream_readable.js:123
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | LazyCompile:~onread net.js:533
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | | uv__read
| | | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | | uv_run
| | | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | | |
| | | | | | | | | | | | --50.00%-- Stub:CallApiCallbackStub
| | | | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | uv__read
| | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | uv_run
| | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | |
| | | | | | | | | | | --33.33%-- LazyCompile:~reduceToSingleString util.js:829
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:*resume_ _stream_readable.js:734
| | | | | | | | | | | LazyCompile:*_combinedTickCallback internal/process/next_tick.js:65
| | | | | | | | | | | LazyCompile:~_tickDomainCallback internal/process/next_tick.js:108
| | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | uv__read
| | | | | | | | | | | uv__stream_io
| | | | | | | | | | | uv__io_poll
| | | | | | | | | | | uv_run
| | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | __libc_start_main
| | | | | | | | | | |
| | | | | | | | | | --18.18%-- LazyCompile:~ /home/gireesh/node/down.js:32
| | | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | http_parser_execute
| | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | uv__read
| | | | | | | | | | uv__stream_io
| | | | | | | | | | uv__io_poll
| | | | | | | | | | uv_run
| | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | __libc_start_main
| | | | | | | | | |
| | | | | | | | | --15.38%-- LazyCompile:~inspect util.js:166
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | |
| | | | | | | | | |--50.00%-- LazyCompile:~ /home/gireesh/node/down.js:32
| | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:~readableAddChunk _stream_readable.js:147
| | | | | | | | | | LazyCompile:*Readable.push _stream_readable.js:123
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:~parserOnBody _http_common.js:110
| | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | http_parser_execute
| | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | v8::internal::FunctionCallbackArguments::Call(void (*)(v8::FunctionCallbackInfo<v8::Value> const&))
| | | | | | | | | | v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal::Isolate*, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::FunctionTemplateInfo>, v8::internal::Handle<v8::internal::Object>, v8::internal::BuiltinArguments)
| | | | | | | | | | v8::internal::Builtin_HandleApiCall(int, v8::internal::Object**, v8::internal::Isolate*)
| | | | | | | | | | Stub:CEntryStub
| | | | | | | | | | LazyCompile:~socketOnData _http_client.js:418
| | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:~readableAddChunk _stream_readable.js:147
| | | | | | | | | | LazyCompile:*Readable.push _stream_readable.js:123
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:~onread net.js:533
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | uv__read
| | | | | | | | | | uv__stream_io
| | | | | | | | | | uv__io_poll
| | | | | | | | | | uv_run
| | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | __libc_start_main
| | | | | | | | | |
| | | | | | | | | --50.00%-- LazyCompile:* /home/gireesh/node/down.js:32
| | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | LazyCompile:~readableAddChunk _stream_readable.js:147
| | | | | | | | | LazyCompile:*Readable.push _stream_readable.js:123
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | LazyCompile:~parserOnBody _http_common.js:110
| | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | Stub:JSEntryStub
| | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | http_parser_execute
| | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | v8::internal::FunctionCallbackArguments::Call(void (*)(v8::FunctionCallbackInfo<v8::Value> const&))
| | | | | | | | | v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal::Isolate*, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::FunctionTemplateInfo>, v8::internal::Handle<v8::internal::Object>, v8::internal::BuiltinArguments)
| | | | | | | | | v8::internal::Builtin_HandleApiCall(int, v8::internal::Object**, v8::internal::Isolate*)
| | | | | | | | | Stub:CEntryStub
| | | | | | | | | LazyCompile:~socketOnData _http_client.js:418
| | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | LazyCompile:~readableAddChunk _stream_readable.js:147
| | | | | | | | | LazyCompile:*Readable.push _stream_readable.js:123
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | LazyCompile:~onread net.js:533
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | Stub:JSEntryStub
| | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | uv__read
| | | | | | | | | uv__stream_io
| | | | | | | | | uv__io_poll
| | | | | | | | | uv_run
| | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | node::Start(int, char**)
| | | | | | | | | __libc_start_main
| | | | | | | | |
| | | | | | | | --40.91%-- v8::internal::ParserBase<v8::internal::Parser>::ParseStatementList(v8::internal::ZoneList<v8::internal::Statement*>*, int, bool, bool*)
| | | | | | | | v8::internal::Parser::ParseEagerFunctionBody(v8::internal::AstRawString const*, int, v8::internal::ParserFormalParameters const&, v8::internal::FunctionKind, v8::internal::FunctionLiteral::FunctionType, bool*)
| | | | | | | | v8::internal::Parser::ParseFunctionLiteral(v8::internal::AstRawString const*, v8::internal::Scanner::Location, v8::internal::FunctionNameValidity, v8::internal::FunctionKind, int, v8::internal::FunctionLiteral::FunctionType, v8::internal::LanguageMode, bool*)
| | | | | | | | v8::internal::Parser::DoParseLazy(v8::internal::ParseInfo*, v8::internal::AstRawString const*, v8::internal::Utf16CharacterStream*)
| | | | | | | | v8::internal::Parser::ParseLazy(v8::internal::Isolate*, v8::internal::ParseInfo*)
| | | | | | | | v8::internal::Parser::Parse(v8::internal::ParseInfo*)
| | | | | | | | v8::internal::Parser::ParseStatic(v8::internal::ParseInfo*)
| | | | | | | | v8::internal::(anonymous namespace)::RenderCallSite(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>)
| | | | | | | | v8::internal::Runtime_ThrowCalledNonCallable(int, v8::internal::Object**, v8::internal::Isolate*)
| | | | | | | | Stub:CEntryStub
| | | | | | | | Builtin:Call_ReceiverIsNotNullOrUndefined
| | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | LazyCompile:*formatProperty util.js:769
| | | | | | | | LazyCompile:* util.js:654
| | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | |
| | | | | | | | |--88.89%-- LazyCompile:*map native array.js:833
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | LazyCompile:*formatObject util.js:653
| | | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | | LazyCompile:*formatProperty util.js:769
| | | | | | | | | LazyCompile:* util.js:654
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | LazyCompile:*map native array.js:833
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | LazyCompile:*formatObject util.js:653
| | | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | | LazyCompile:~_storeHeader _http_outgoing.js:180
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | |
| | | | | | | | | |--75.00%-- LazyCompile:* /home/gireesh/node/down.js:32
| | | | | | | | | | |
| | | | | | | | | | |--83.33%-- LazyCompile:*emitOne events.js:94
| | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | |
| | | | | | | | | | | |--80.00%-- LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | | http_parser_execute
| | | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | uv__read
| | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | uv_run
| | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | |
| | | | | | | | | | | --20.00%-- LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | http_parser_execute
| | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | v8::internal::FunctionCallbackArguments::Call(void (*)(v8::FunctionCallbackInfo<v8::Value> const&))
| | | | | | | | | | | v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal::Isolate*, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::FunctionTemplateInfo>, v8::internal::Handle<v8::internal::Object>, v8::internal::BuiltinArguments)
| | | | | | | | | | | v8::internal::Builtin_HandleApiCall(int, v8::internal::Object**, v8::internal::Isolate*)
| | | | | | | | | | | Stub:CEntryStub
| | | | | | | | | | | LazyCompile:~socketOnData _http_client.js:418
| | | | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | uv__read
| | | | | | | | | | | uv__stream_io
| | | | | | | | | | | uv__io_poll
| | | | | | | | | | | uv_run
| | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | __libc_start_main
| | | | | | | | | | |
| | | | | | | | | | --16.67%-- LazyCompile:*emit events.js:136
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | http_parser_execute
| | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | LazyCompile:*emit events.js:136
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | uv__read
| | | | | | | | | | uv__stream_io
| | | | | | | | | | uv__io_poll
| | | | | | | | | | uv_run
| | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | __libc_start_main
| | | | | | | | | |
| | | | | | | | | --25.00%-- LazyCompile:~ /home/gireesh/node/down.js:32
| | | | | | | | | |
| | | | | | | | | |--50.00%-- LazyCompile:*emit events.js:136
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | http_parser_execute
| | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | LazyCompile:*emit events.js:136
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | uv__read
| | | | | | | | | | uv__stream_io
| | | | | | | | | | uv__io_poll
| | | | | | | | | | uv_run
| | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | __libc_start_main
| | | | | | | | | |
| | | | | | | | | --50.00%-- LazyCompile:*emitOne events.js:94
| | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | Stub:JSEntryStub
| | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | http_parser_execute
| | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | Stub:JSEntryStub
| | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | uv__read
| | | | | | | | | uv__stream_io
| | | | | | | | | uv__io_poll
| | | | | | | | | uv_run
| | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | node::Start(int, char**)
| | | | | | | | | __libc_start_main
| | | | | | | | |
| | | | | | | | --11.11%-- LazyCompile:~map native array.js:833
| | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | LazyCompile:~formatObject util.js:653
| | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | LazyCompile:*formatProperty util.js:769
| | | | | | | | LazyCompile:* util.js:654
| | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | LazyCompile:~map native array.js:833
| | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | LazyCompile:~formatObject util.js:653
| | | | | | | | LazyCompile:~formatValue util.js:302
| | | | | | | | LazyCompile:~inspect util.js:166
| | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | LazyCompile:~ /home/gireesh/node/down.js:32
| | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | LazyCompile:~Readable.read _stream_readable.js:271
| | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | LazyCompile:~flow _stream_readable.js:758
| | | | | | | | LazyCompile:~resume_ _stream_readable.js:734
| | | | | | | | LazyCompile:*_combinedTickCallback internal/process/next_tick.js:65
| | | | | | | | LazyCompile:~_tickDomainCallback internal/process/next_tick.js:108
| | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | Stub:JSEntryStub
| | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | uv__read
| | | | | | | | uv__stream_io
| | | | | | | | uv__io_poll
| | | | | | | | uv_run
| | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | node::Start(int, char**)
| | | | | | | | __libc_start_main
| | | | | | | |
| | | | | | | |--30.09%-- v8::internal::ParserBase<v8::internal::Parser>::ParseStatementList(v8::internal::ZoneList<v8::internal::Statement*>*, int, bool, bool*)
| | | | | | | | v8::internal::Parser::ParseEagerFunctionBody(v8::internal::AstRawString const*, int, v8::internal::ParserFormalParameters const&, v8::internal::FunctionKind, v8::internal::FunctionLiteral::FunctionType, bool*)
| | | | | | | | v8::internal::Parser::ParseFunctionLiteral(v8::internal::AstRawString const*, v8::internal::Scanner::Location, v8::internal::FunctionNameValidity, v8::internal::FunctionKind, int, v8::internal::FunctionLiteral::FunctionType, v8::internal::LanguageMode, bool*)
| | | | | | | | v8::internal::Parser::DoParseLazy(v8::internal::ParseInfo*, v8::internal::AstRawString const*, v8::internal::Utf16CharacterStream*)
| | | | | | | | v8::internal::Parser::ParseLazy(v8::internal::Isolate*, v8::internal::ParseInfo*)
| | | | | | | | v8::internal::Parser::Parse(v8::internal::ParseInfo*)
| | | | | | | | v8::internal::Parser::ParseStatic(v8::internal::ParseInfo*)
| | | | | | | | v8::internal::(anonymous namespace)::RenderCallSite(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>)
| | | | | | | | v8::internal::Runtime_ThrowCalledNonCallable(int, v8::internal::Object**, v8::internal::Isolate*)
| | | | | | | | Stub:CEntryStub
| | | | | | | | Builtin:Call_ReceiverIsNotNullOrUndefined
| | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | LazyCompile:*formatProperty util.js:769
| | | | | | | | LazyCompile:* util.js:654
| | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | LazyCompile:*map native array.js:833
| | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | LazyCompile:*formatObject util.js:653
| | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | LazyCompile:*formatProperty util.js:769
| | | | | | | | LazyCompile:* util.js:654
| | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | LazyCompile:*map native array.js:833
| | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | LazyCompile:*formatObject util.js:653
| | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | |
| | | | | | | | |--89.23%-- LazyCompile:~_storeHeader _http_outgoing.js:180
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | |
| | | | | | | | | |--68.97%-- LazyCompile:* /home/gireesh/node/down.js:32
| | | | | | | | | | |
| | | | | | | | | | |--65.00%-- LazyCompile:*emitOne events.js:94
| | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | |
| | | | | | | | | | | |--69.23%-- LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | | http_parser_execute
| | | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | uv__read
| | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | uv_run
| | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | |
| | | | | | | | | | | --30.77%-- LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | http_parser_execute
| | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | |
| | | | | | | | | | | |--87.50%-- Stub:CallApiCallbackStub
| | | | | | | | | | | | LazyCompile:*socketOnData _http_client.js:418
| | | | | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | uv__read
| | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | uv_run
| | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | |
| | | | | | | | | | | --12.50%-- v8::internal::FunctionCallbackArguments::Call(void (*)(v8::FunctionCallbackInfo<v8::Value> const&))
| | | | | | | | | | | v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal::Isolate*, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::FunctionTemplateInfo>, v8::internal::Handle<v8::internal::Object>, v8::internal::BuiltinArguments)
| | | | | | | | | | | v8::internal::Builtin_HandleApiCall(int, v8::internal::Object**, v8::internal::Isolate*)
| | | | | | | | | | | Stub:CEntryStub
| | | | | | | | | | | LazyCompile:~socketOnData _http_client.js:418
| | | | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | uv__read
| | | | | | | | | | | uv__stream_io
| | | | | | | | | | | uv__io_poll
| | | | | | | | | | | uv_run
| | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | __libc_start_main
| | | | | | | | | | |
| | | | | | | | | | |--20.00%-- LazyCompile:~emitOne events.js:94
| | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | |
| | | | | | | | | | | |--75.00%-- LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | | http_parser_execute
| | | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | | |
| | | | | | | | | | | | |--83.33%-- Stub:CallApiCallbackStub
| | | | | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |--40.00%-- LazyCompile:*Readable.push _stream_readable.js:123
| | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | LazyCompile:~onread net.js:533
| | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | | | uv__read
| | | | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | | | uv_run
| | | | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |--40.00%-- LazyCompile:*onread net.js:533
| | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | | | uv__read
| | | | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | | | uv_run
| | | | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | | | |
| | | | | | | | | | | | | --20.00%-- LazyCompile:~isInvalidPath _http_client.js:27
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | | uv__read
| | | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | | uv_run
| | | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | | |
| | | | | | | | | | | | --16.67%-- v8::internal::FunctionCallbackArguments::Call(void (*)(v8::FunctionCallbackInfo<v8::Value> const&))
| | | | | | | | | | | | v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal::Isolate*, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::FunctionTemplateInfo>, v8::internal::Handle<v8::internal::Object>, v8::internal::BuiltinArguments)
| | | | | | | | | | | | v8::internal::Builtin_HandleApiCall(int, v8::internal::Object**, v8::internal::Isolate*)
| | | | | | | | | | | | Stub:CEntryStub
| | | | | | | | | | | | LazyCompile:~socketOnData _http_client.js:418
| | | | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | LazyCompile:*Readable.push _stream_readable.js:123
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | LazyCompile:~onread net.js:533
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | uv__read
| | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | uv_run
| | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | |
| | | | | | | | | | | --25.00%-- LazyCompile:~reduceToSingleString util.js:829
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:*resume_ _stream_readable.js:734
| | | | | | | | | | | LazyCompile:*_combinedTickCallback internal/process/next_tick.js:65
| | | | | | | | | | | LazyCompile:~_tickDomainCallback internal/process/next_tick.js:108
| | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | uv__read
| | | | | | | | | | | uv__stream_io
| | | | | | | | | | | uv__io_poll
| | | | | | | | | | | uv_run
| | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | __libc_start_main
| | | | | | | | | | |
| | | | | | | | | | --15.00%-- LazyCompile:*emit events.js:136
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | http_parser_execute
| | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | LazyCompile:*emit events.js:136
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | uv__read
| | | | | | | | | | uv__stream_io
| | | | | | | | | | uv__io_poll
| | | | | | | | | | uv_run
| | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | __libc_start_main
| | | | | | | | | |
| | | | | | | | | --31.03%-- LazyCompile:~ /home/gireesh/node/down.js:32
| | | | | | | | | |
| | | | | | | | | |--50.00%-- LazyCompile:*emitOne events.js:94
| | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | |
| | | | | | | | | | |--55.56%-- LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | http_parser_execute
| | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | uv__read
| | | | | | | | | | | uv__stream_io
| | | | | | | | | | | uv__io_poll
| | | | | | | | | | | uv_run
| | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | __libc_start_main
| | | | | | | | | | |
| | | | | | | | | | |--33.33%-- LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | http_parser_execute
| | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | LazyCompile:*socketOnData _http_client.js:418
| | | | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | uv__read
| | | | | | | | | | | uv__stream_io
| | | | | | | | | | | uv__io_poll
| | | | | | | | | | | uv_run
| | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | __libc_start_main
| | | | | | | | | | |
| | | | | | | | | | --11.11%-- LazyCompile:~readableAddChunk _stream_readable.js:147
| | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | http_parser_execute
| | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | v8::internal::FunctionCallbackArguments::Call(void (*)(v8::FunctionCallbackInfo<v8::Value> const&))
| | | | | | | | | | v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal::Isolate*, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::FunctionTemplateInfo>, v8::internal::Handle<v8::internal::Object>, v8::internal::BuiltinArguments)
| | | | | | | | | | v8::internal::Builtin_HandleApiCall(int, v8::internal::Object**, v8::internal::Isolate*)
| | | | | | | | | | Stub:CEntryStub
| | | | | | | | | | LazyCompile:~socketOnData _http_client.js:418
| | | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:~readableAddChunk _stream_readable.js:147
| | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | uv__read
| | | | | | | | | | uv__stream_io
| | | | | | | | | | uv__io_poll
| | | | | | | | | | uv_run
| | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | __libc_start_main
| | | | | | | | | |
| | | | | | | | | |--38.89%-- LazyCompile:~emitOne events.js:94
| | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | http_parser_execute
| | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | |
| | | | | | | | | | |--85.71%-- LazyCompile:*onread net.js:533
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | uv__read
| | | | | | | | | | | uv__stream_io
| | | | | | | | | | | uv__io_poll
| | | | | | | | | | | uv_run
| | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | __libc_start_main
| | | | | | | | | | |
| | | | | | | | | | --14.29%-- LazyCompile:*Readable.push _stream_readable.js:123
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:~onread net.js:533
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | uv__read
| | | | | | | | | | uv__stream_io
| | | | | | | | | | uv__io_poll
| | | | | | | | | | uv_run
| | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | __libc_start_main
| | | | | | | | | |
| | | | | | | | | --11.11%-- LazyCompile:*emit events.js:136
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | Stub:JSEntryStub
| | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | http_parser_execute
| | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | LazyCompile:*emit events.js:136
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | Stub:JSEntryStub
| | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | uv__read
| | | | | | | | | uv__stream_io
| | | | | | | | | uv__io_poll
| | | | | | | | | uv_run
| | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | node::Start(int, char**)
| | | | | | | | | __libc_start_main
| | | | | | | | |
| | | | | | | | --10.77%-- LazyCompile:~inspect util.js:166
| | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | |
| | | | | | | | |--85.71%-- LazyCompile:~ /home/gireesh/node/down.js:32
| | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | |
| | | | | | | | | |--83.33%-- LazyCompile:~readableAddChunk _stream_readable.js:147
| | | | | | | | | | |
| | | | | | | | | | |--60.00%-- LazyCompile:*Readable.push _stream_readable.js:123
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:~parserOnBody _http_common.js:110
| | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | http_parser_execute
| | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | v8::internal::FunctionCallbackArguments::Call(void (*)(v8::FunctionCallbackInfo<v8::Value> const&))
| | | | | | | | | | | v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal::Isolate*, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::FunctionTemplateInfo>, v8::internal::Handle<v8::internal::Object>, v8::internal::BuiltinArguments)
| | | | | | | | | | | v8::internal::Builtin_HandleApiCall(int, v8::internal::Object**, v8::internal::Isolate*)
| | | | | | | | | | | Stub:CEntryStub
| | | | | | | | | | | LazyCompile:~socketOnData _http_client.js:418
| | | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:~readableAddChunk _stream_readable.js:147
| | | | | | | | | | | LazyCompile:*Readable.push _stream_readable.js:123
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:~onread net.js:533
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | uv__read
| | | | | | | | | | | uv__stream_io
| | | | | | | | | | | uv__io_poll
| | | | | | | | | | | uv_run
| | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | __libc_start_main
| | | | | | | | | | |
| | | | | | | | | | --40.00%-- LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | http_parser_execute
| | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | v8::internal::FunctionCallbackArguments::Call(void (*)(v8::FunctionCallbackInfo<v8::Value> const&))
| | | | | | | | | | v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal::Isolate*, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::FunctionTemplateInfo>, v8::internal::Handle<v8::internal::Object>, v8::internal::BuiltinArguments)
| | | | | | | | | | v8::internal::Builtin_HandleApiCall(int, v8::internal::Object**, v8::internal::Isolate*)
| | | | | | | | | | Stub:CEntryStub
| | | | | | | | | | LazyCompile:~socketOnData _http_client.js:418
| | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:~readableAddChunk _stream_readable.js:147
| | | | | | | | | | LazyCompile:*Readable.push _stream_readable.js:123
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:~onread net.js:533
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | uv__read
| | | | | | | | | | uv__stream_io
| | | | | | | | | | uv__io_poll
| | | | | | | | | | uv_run
| | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | __libc_start_main
| | | | | | | | | |
| | | | | | | | | --16.67%-- LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | Stub:JSEntryStub
| | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | http_parser_execute
| | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | v8::internal::FunctionCallbackArguments::Call(void (*)(v8::FunctionCallbackInfo<v8::Value> const&))
| | | | | | | | | v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal::Isolate*, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::FunctionTemplateInfo>, v8::internal::Handle<v8::internal::Object>, v8::internal::BuiltinArguments)
| | | | | | | | | v8::internal::Builtin_HandleApiCall(int, v8::internal::Object**, v8::internal::Isolate*)
| | | | | | | | | Stub:CEntryStub
| | | | | | | | | LazyCompile:~socketOnData _http_client.js:418
| | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | LazyCompile:*Readable.push _stream_readable.js:123
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | LazyCompile:~onread net.js:533
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | Stub:JSEntryStub
| | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | uv__read
| | | | | | | | | uv__stream_io
| | | | | | | | | uv__io_poll
| | | | | | | | | uv_run
| | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | node::Start(int, char**)
| | | | | | | | | __libc_start_main
| | | | | | | | |
| | | | | | | | --14.29%-- LazyCompile:* /home/gireesh/node/down.js:32
| | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | Stub:JSEntryStub
| | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | http_parser_execute
| | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | v8::internal::FunctionCallbackArguments::Call(void (*)(v8::FunctionCallbackInfo<v8::Value> const&))
| | | | | | | | v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal::Isolate*, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::FunctionTemplateInfo>, v8::internal::Handle<v8::internal::Object>, v8::internal::BuiltinArguments)
| | | | | | | | v8::internal::Builtin_HandleApiCall(int, v8::internal::Object**, v8::internal::Isolate*)
| | | | | | | | Stub:CEntryStub
| | | | | | | | LazyCompile:~socketOnData _http_client.js:418
| | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | LazyCompile:*Readable.push _stream_readable.js:123
| | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | LazyCompile:~onread net.js:533
| | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | Stub:JSEntryStub
| | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | uv__read
| | | | | | | | uv__stream_io
| | | | | | | | uv__io_poll
| | | | | | | | uv_run
| | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | node::Start(int, char**)
| | | | | | | | __libc_start_main
| | | | | | | |
| | | | | | | --28.70%-- v8::internal::ParserBase<v8::internal::Parser>::ParseScopedStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool, bool*)
| | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseIfStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool*)
| | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, v8::internal::AllowLabelledFunctionStatement, bool*)
| | | | | | | |
| | | | | | | |--64.52%-- v8::internal::ParserBase<v8::internal::Parser>::ParseScopedStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool, bool*)
| | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseIfStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool*)
| | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, v8::internal::AllowLabelledFunctionStatement, bool*)
| | | | | | | | |
| | | | | | | | |--90.00%-- v8::internal::ParserBase<v8::internal::Parser>::ParseScopedStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseIfStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool*)
| | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, v8::internal::AllowLabelledFunctionStatement, bool*)
| | | | | | | | | |
| | | | | | | | | |--58.33%-- v8::internal::ParserBase<v8::internal::Parser>::ParseScopedStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool, bool*)
| | | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseIfStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool*)
| | | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, v8::internal::AllowLabelledFunctionStatement, bool*)
| | | | | | | | | | |
| | | | | | | | | | |--52.38%-- v8::internal::ParserBase<v8::internal::Parser>::ParseScopedStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool, bool*)
| | | | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseIfStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool*)
| | | | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, v8::internal::AllowLabelledFunctionStatement, bool*)
| | | | | | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseStatementList(v8::internal::ZoneList<v8::internal::Statement*>*, int, bool, bool*)
| | | | | | | | | | | v8::internal::Parser::ParseEagerFunctionBody(v8::internal::AstRawString const*, int, v8::internal::ParserFormalParameters const&, v8::internal::FunctionKind, v8::internal::FunctionLiteral::FunctionType, bool*)
| | | | | | | | | | | v8::internal::Parser::ParseFunctionLiteral(v8::internal::AstRawString const*, v8::internal::Scanner::Location, v8::internal::FunctionNameValidity, v8::internal::FunctionKind, int, v8::internal::FunctionLiteral::FunctionType, v8::internal::LanguageMode, bool*)
| | | | | | | | | | | v8::internal::Parser::DoParseLazy(v8::internal::ParseInfo*, v8::internal::AstRawString const*, v8::internal::Utf16CharacterStream*)
| | | | | | | | | | | v8::internal::Parser::ParseLazy(v8::internal::Isolate*, v8::internal::ParseInfo*)
| | | | | | | | | | | v8::internal::Parser::Parse(v8::internal::ParseInfo*)
| | | | | | | | | | | v8::internal::Parser::ParseStatic(v8::internal::ParseInfo*)
| | | | | | | | | | | v8::internal::(anonymous namespace)::RenderCallSite(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>)
| | | | | | | | | | | v8::internal::Runtime_ThrowCalledNonCallable(int, v8::internal::Object**, v8::internal::Isolate*)
| | | | | | | | | | | Stub:CEntryStub
| | | | | | | | | | | Builtin:Call_ReceiverIsNotNullOrUndefined
| | | | | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | | | | LazyCompile:*formatProperty util.js:769
| | | | | | | | | | | LazyCompile:* util.js:654
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:*map native array.js:833
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:*formatObject util.js:653
| | | | | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | | | | LazyCompile:*formatProperty util.js:769
| | | | | | | | | | | LazyCompile:* util.js:654
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:*map native array.js:833
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:*formatObject util.js:653
| | | | | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | | | | |
| | | | | | | | | | | |--81.82%-- LazyCompile:~_storeHeader _http_outgoing.js:180
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | |
| | | | | | | | | | | | |--77.78%-- LazyCompile:* /home/gireesh/node/down.js:32
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |--42.86%-- LazyCompile:*emit events.js:136
| | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | | | | http_parser_execute
| | | | | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | | | | | LazyCompile:*emit events.js:136
| | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | | | uv__read
| | | | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | | | uv_run
| | | | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |--42.86%-- LazyCompile:*emitOne events.js:94
| | | | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | |--66.67%-- LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | | | | | http_parser_execute
| | | | | | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | | | | uv__read
| | | | | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | | | | uv_run
| | | | | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | --33.33%-- LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | | | | http_parser_execute
| | | | | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | | | | LazyCompile:*socketOnData _http_client.js:418
| | | | | | | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | | | uv__read
| | | | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | | | uv_run
| | | | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | | | |
| | | | | | | | | | | | | --14.29%-- LazyCompile:~emitOne events.js:94
| | | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | | | http_parser_execute
| | | | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | | uv__read
| | | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | | uv_run
| | | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | | |
| | | | | | | | | | | | --22.22%-- LazyCompile:~ /home/gireesh/node/down.js:32
| | | | | | | | | | | | |
| | | | | | | | | | | | |--50.00%-- LazyCompile:*emit events.js:136
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | | | http_parser_execute
| | | | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | | | | LazyCompile:*emit events.js:136
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | | uv__read
| | | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | | uv_run
| | | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | | |
| | | | | | | | | | | | --50.00%-- LazyCompile:*emitOne events.js:94
| | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | | http_parser_execute
| | | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | uv__read
| | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | uv_run
| | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | |
| | | | | | | | | | | --18.18%-- LazyCompile:~inspect util.js:166
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:~ /home/gireesh/node/down.js:32
| | | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:~readableAddChunk _stream_readable.js:147
| | | | | | | | | | | LazyCompile:*Readable.push _stream_readable.js:123
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:~parserOnBody _http_common.js:110
| | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | http_parser_execute
| | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | v8::internal::FunctionCallbackArguments::Call(void (*)(v8::FunctionCallbackInfo<v8::Value> const&))
| | | | | | | | | | | v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal::Isolate*, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::FunctionTemplateInfo>, v8::internal::Handle<v8::internal::Object>, v8::internal::BuiltinArguments)
| | | | | | | | | | | v8::internal::Builtin_HandleApiCall(int, v8::internal::Object**, v8::internal::Isolate*)
| | | | | | | | | | | Stub:CEntryStub
| | | | | | | | | | | LazyCompile:~socketOnData _http_client.js:418
| | | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:~readableAddChunk _stream_readable.js:147
| | | | | | | | | | | LazyCompile:*Readable.push _stream_readable.js:123
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:~onread net.js:533
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | uv__read
| | | | | | | | | | | uv__stream_io
| | | | | | | | | | | uv__io_poll
| | | | | | | | | | | uv_run
| | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | __libc_start_main
| | | | | | | | | | |
| | | | | | | | | | --47.62%-- v8::internal::ParserBase<v8::internal::Parser>::ParseStatementList(v8::internal::ZoneList<v8::internal::Statement*>*, int, bool, bool*)
| | | | | | | | | | v8::internal::Parser::ParseEagerFunctionBody(v8::internal::AstRawString const*, int, v8::internal::ParserFormalParameters const&, v8::internal::FunctionKind, v8::internal::FunctionLiteral::FunctionType, bool*)
| | | | | | | | | | v8::internal::Parser::ParseFunctionLiteral(v8::internal::AstRawString const*, v8::internal::Scanner::Location, v8::internal::FunctionNameValidity, v8::internal::FunctionKind, int, v8::internal::FunctionLiteral::FunctionType, v8::internal::LanguageMode, bool*)
| | | | | | | | | | v8::internal::Parser::DoParseLazy(v8::internal::ParseInfo*, v8::internal::AstRawString const*, v8::internal::Utf16CharacterStream*)
| | | | | | | | | | v8::internal::Parser::ParseLazy(v8::internal::Isolate*, v8::internal::ParseInfo*)
| | | | | | | | | | v8::internal::Parser::Parse(v8::internal::ParseInfo*)
| | | | | | | | | | v8::internal::Parser::ParseStatic(v8::internal::ParseInfo*)
| | | | | | | | | | v8::internal::(anonymous namespace)::RenderCallSite(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>)
| | | | | | | | | | v8::internal::Runtime_ThrowCalledNonCallable(int, v8::internal::Object**, v8::internal::Isolate*)
| | | | | | | | | | Stub:CEntryStub
| | | | | | | | | | Builtin:Call_ReceiverIsNotNullOrUndefined
| | | | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | | | LazyCompile:*formatProperty util.js:769
| | | | | | | | | | LazyCompile:* util.js:654
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:*map native array.js:833
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:*formatObject util.js:653
| | | | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | | | LazyCompile:*formatProperty util.js:769
| | | | | | | | | | LazyCompile:* util.js:654
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:*map native array.js:833
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:*formatObject util.js:653
| | | | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | | | |
| | | | | | | | | | |--90.00%-- LazyCompile:~_storeHeader _http_outgoing.js:180
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | |
| | | | | | | | | | | |--88.89%-- LazyCompile:* /home/gireesh/node/down.js:32
| | | | | | | | | | | | |
| | | | | | | | | | | | |--50.00%-- LazyCompile:*emit events.js:136
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | | | http_parser_execute
| | | | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | | | | LazyCompile:*emit events.js:136
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | | uv__read
| | | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | | uv_run
| | | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | | |
| | | | | | | | | | | | |--37.50%-- LazyCompile:*emitOne events.js:94
| | | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |--66.67%-- LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | | | | http_parser_execute
| | | | | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | | | uv__read
| | | | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | | | uv_run
| | | | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | | | |
| | | | | | | | | | | | | --33.33%-- LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | | | http_parser_execute
| | | | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | | | LazyCompile:*socketOnData _http_client.js:418
| | | | | | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | | uv__read
| | | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | | uv_run
| | | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | | |
| | | | | | | | | | | | --12.50%-- LazyCompile:~emitOne events.js:94
| | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | | http_parser_execute
| | | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | LazyCompile:*Readable.push _stream_readable.js:123
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | LazyCompile:~onread net.js:533
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | uv__read
| | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | uv_run
| | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | |
| | | | | | | | | | | --11.11%-- LazyCompile:~ /home/gireesh/node/down.js:32
| | | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | http_parser_execute
| | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | uv__read
| | | | | | | | | | | uv__stream_io
| | | | | | | | | | | uv__io_poll
| | | | | | | | | | | uv_run
| | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | __libc_start_main
| | | | | | | | | | |
| | | | | | | | | | --10.00%-- LazyCompile:~inspect util.js:166
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:~ /home/gireesh/node/down.js:32
| | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:~readableAddChunk _stream_readable.js:147
| | | | | | | | | | LazyCompile:*Readable.push _stream_readable.js:123
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:~parserOnBody _http_common.js:110
| | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | http_parser_execute
| | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | v8::internal::FunctionCallbackArguments::Call(void (*)(v8::FunctionCallbackInfo<v8::Value> const&))
| | | | | | | | | | v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal::Isolate*, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::FunctionTemplateInfo>, v8::internal::Handle<v8::internal::Object>, v8::internal::BuiltinArguments)
| | | | | | | | | | v8::internal::Builtin_HandleApiCall(int, v8::internal::Object**, v8::internal::Isolate*)
| | | | | | | | | | Stub:CEntryStub
| | | | | | | | | | LazyCompile:~socketOnData _http_client.js:418
| | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:~readableAddChunk _stream_readable.js:147
| | | | | | | | | | LazyCompile:*Readable.push _stream_readable.js:123
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:~onread net.js:533
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | uv__read
| | | | | | | | | | uv__stream_io
| | | | | | | | | | uv__io_poll
| | | | | | | | | | uv_run
| | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | __libc_start_main
| | | | | | | | | |
| | | | | | | | | --41.67%-- v8::internal::ParserBase<v8::internal::Parser>::ParseStatementList(v8::internal::ZoneList<v8::internal::Statement*>*, int, bool, bool*)
| | | | | | | | | v8::internal::Parser::ParseEagerFunctionBody(v8::internal::AstRawString const*, int, v8::internal::ParserFormalParameters const&, v8::internal::FunctionKind, v8::internal::FunctionLiteral::FunctionType, bool*)
| | | | | | | | | v8::internal::Parser::ParseFunctionLiteral(v8::internal::AstRawString const*, v8::internal::Scanner::Location, v8::internal::FunctionNameValidity, v8::internal::FunctionKind, int, v8::internal::FunctionLiteral::FunctionType, v8::internal::LanguageMode, bool*)
| | | | | | | | | v8::internal::Parser::DoParseLazy(v8::internal::ParseInfo*, v8::internal::AstRawString const*, v8::internal::Utf16CharacterStream*)
| | | | | | | | | v8::internal::Parser::ParseLazy(v8::internal::Isolate*, v8::internal::ParseInfo*)
| | | | | | | | | v8::internal::Parser::Parse(v8::internal::ParseInfo*)
| | | | | | | | | v8::internal::Parser::ParseStatic(v8::internal::ParseInfo*)
| | | | | | | | | v8::internal::(anonymous namespace)::RenderCallSite(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>)
| | | | | | | | | v8::internal::Runtime_ThrowCalledNonCallable(int, v8::internal::Object**, v8::internal::Isolate*)
| | | | | | | | | Stub:CEntryStub
| | | | | | | | | Builtin:Call_ReceiverIsNotNullOrUndefined
| | | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | | LazyCompile:*formatProperty util.js:769
| | | | | | | | | LazyCompile:* util.js:654
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | LazyCompile:*map native array.js:833
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | LazyCompile:*formatObject util.js:653
| | | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | | LazyCompile:*formatProperty util.js:769
| | | | | | | | | LazyCompile:* util.js:654
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | LazyCompile:*map native array.js:833
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | LazyCompile:*formatObject util.js:653
| | | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | | LazyCompile:~_storeHeader _http_outgoing.js:180
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | |
| | | | | | | | | |--73.33%-- LazyCompile:* /home/gireesh/node/down.js:32
| | | | | | | | | | |
| | | | | | | | | | |--45.45%-- LazyCompile:*emitOne events.js:94
| | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | |
| | | | | | | | | | | |--80.00%-- LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | | http_parser_execute
| | | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | | |
| | | | | | | | | | | | |--75.00%-- Stub:CallApiCallbackStub
| | | | | | | | | | | | | LazyCompile:*socketOnData _http_client.js:418
| | | | | | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | | uv__read
| | | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | | uv_run
| | | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | | |
| | | | | | | | | | | | --25.00%-- v8::internal::FunctionCallbackArguments::Call(void (*)(v8::FunctionCallbackInfo<v8::Value> const&))
| | | | | | | | | | | | v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal::Isolate*, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::FunctionTemplateInfo>, v8::internal::Handle<v8::internal::Object>, v8::internal::BuiltinArguments)
| | | | | | | | | | | | v8::internal::Builtin_HandleApiCall(int, v8::internal::Object**, v8::internal::Isolate*)
| | | | | | | | | | | | Stub:CEntryStub
| | | | | | | | | | | | LazyCompile:~socketOnData _http_client.js:418
| | | | | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | uv__read
| | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | uv_run
| | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | |
| | | | | | | | | | | --20.00%-- LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | http_parser_execute
| | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | uv__read
| | | | | | | | | | | uv__stream_io
| | | | | | | | | | | uv__io_poll
| | | | | | | | | | | uv_run
| | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | __libc_start_main
| | | | | | | | | | |
| | | | | | | | | | |--27.27%-- LazyCompile:~emitOne events.js:94
| | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | http_parser_execute
| | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | |
| | | | | | | | | | | |--33.33%-- LazyCompile:~isInvalidPath _http_client.js:27
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | uv__read
| | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | uv_run
| | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | |
| | | | | | | | | | | |--33.33%-- LazyCompile:*Readable.push _stream_readable.js:123
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | LazyCompile:~onread net.js:533
| | | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | | uv__read
| | | | | | | | | | | | uv__stream_io
| | | | | | | | | | | | uv__io_poll
| | | | | | | | | | | | uv_run
| | | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | | __libc_start_main
| | | | | | | | | | | |
| | | | | | | | | | | --33.33%-- LazyCompile:*onread net.js:533
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | uv__read
| | | | | | | | | | | uv__stream_io
| | | | | | | | | | | uv__io_poll
| | | | | | | | | | | uv_run
| | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | __libc_start_main
| | | | | | | | | | |
| | | | | | | | | | --27.27%-- LazyCompile:*emit events.js:136
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | http_parser_execute
| | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | LazyCompile:*emit events.js:136
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | uv__read
| | | | | | | | | | uv__stream_io
| | | | | | | | | | uv__io_poll
| | | | | | | | | | uv_run
| | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | __libc_start_main
| | | | | | | | | |
| | | | | | | | | --26.67%-- LazyCompile:~ /home/gireesh/node/down.js:32
| | | | | | | | | |
| | | | | | | | | |--75.00%-- LazyCompile:~emitOne events.js:94
| | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | http_parser_execute
| | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | uv__read
| | | | | | | | | | uv__stream_io
| | | | | | | | | | uv__io_poll
| | | | | | | | | | uv_run
| | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | __libc_start_main
| | | | | | | | | |
| | | | | | | | | --25.00%-- LazyCompile:*emitOne events.js:94
| | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | Stub:JSEntryStub
| | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | http_parser_execute
| | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | LazyCompile:*socketOnData _http_client.js:418
| | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | Stub:JSEntryStub
| | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | uv__read
| | | | | | | | | uv__stream_io
| | | | | | | | | uv__io_poll
| | | | | | | | | uv_run
| | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | node::Start(int, char**)
| | | | | | | | | __libc_start_main
| | | | | | | | |
| | | | | | | | --10.00%-- v8::internal::ParserBase<v8::internal::Parser>::ParseStatementList(v8::internal::ZoneList<v8::internal::Statement*>*, int, bool, bool*)
| | | | | | | | v8::internal::Parser::ParseEagerFunctionBody(v8::internal::AstRawString const*, int, v8::internal::ParserFormalParameters const&, v8::internal::FunctionKind, v8::internal::FunctionLiteral::FunctionType, bool*)
| | | | | | | | v8::internal::Parser::ParseFunctionLiteral(v8::internal::AstRawString const*, v8::internal::Scanner::Location, v8::internal::FunctionNameValidity, v8::internal::FunctionKind, int, v8::internal::FunctionLiteral::FunctionType, v8::internal::LanguageMode, bool*)
| | | | | | | | v8::internal::Parser::DoParseLazy(v8::internal::ParseInfo*, v8::internal::AstRawString const*, v8::internal::Utf16CharacterStream*)
| | | | | | | | v8::internal::Parser::ParseLazy(v8::internal::Isolate*, v8::internal::ParseInfo*)
| | | | | | | | v8::internal::Parser::Parse(v8::internal::ParseInfo*)
| | | | | | | | v8::internal::Parser::ParseStatic(v8::internal::ParseInfo*)
| | | | | | | | v8::internal::(anonymous namespace)::RenderCallSite(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>)
| | | | | | | | v8::internal::Runtime_ThrowCalledNonCallable(int, v8::internal::Object**, v8::internal::Isolate*)
| | | | | | | | Stub:CEntryStub
| | | | | | | | Builtin:Call_ReceiverIsNotNullOrUndefined
| | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | LazyCompile:*formatProperty util.js:769
| | | | | | | | LazyCompile:* util.js:654
| | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | LazyCompile:*map native array.js:833
| | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | LazyCompile:*formatObject util.js:653
| | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | LazyCompile:*formatProperty util.js:769
| | | | | | | | LazyCompile:* util.js:654
| | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | LazyCompile:*map native array.js:833
| | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | LazyCompile:*formatObject util.js:653
| | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | LazyCompile:~_storeHeader _http_outgoing.js:180
| | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | |
| | | | | | | | |--50.00%-- LazyCompile:* /home/gireesh/node/down.js:32
| | | | | | | | | |
| | | | | | | | | |--50.00%-- LazyCompile:~emitOne events.js:94
| | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | http_parser_execute
| | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | v8::internal::FunctionCallbackArguments::Call(void (*)(v8::FunctionCallbackInfo<v8::Value> const&))
| | | | | | | | | | v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal::Isolate*, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::FunctionTemplateInfo>, v8::internal::Handle<v8::internal::Object>, v8::internal::BuiltinArguments)
| | | | | | | | | | v8::internal::Builtin_HandleApiCall(int, v8::internal::Object**, v8::internal::Isolate*)
| | | | | | | | | | Stub:CEntryStub
| | | | | | | | | | LazyCompile:~socketOnData _http_client.js:418
| | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | LazyCompile:*Readable.push _stream_readable.js:123
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:~onread net.js:533
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | uv__read
| | | | | | | | | | uv__stream_io
| | | | | | | | | | uv__io_poll
| | | | | | | | | | uv_run
| | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | __libc_start_main
| | | | | | | | | |
| | | | | | | | | --50.00%-- LazyCompile:*emitOne events.js:94
| | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | Stub:JSEntryStub
| | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | http_parser_execute
| | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | LazyCompile:*socketOnData _http_client.js:418
| | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | Stub:JSEntryStub
| | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | uv__read
| | | | | | | | | uv__stream_io
| | | | | | | | | uv__io_poll
| | | | | | | | | uv_run
| | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | node::Start(int, char**)
| | | | | | | | | __libc_start_main
| | | | | | | | |
| | | | | | | | --50.00%-- LazyCompile:~ /home/gireesh/node/down.js:32
| | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | |
| | | | | | | | |--50.00%-- LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | Stub:JSEntryStub
| | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | http_parser_execute
| | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | Stub:JSEntryStub
| | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | uv__read
| | | | | | | | | uv__stream_io
| | | | | | | | | uv__io_poll
| | | | | | | | | uv_run
| | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | node::Start(int, char**)
| | | | | | | | | __libc_start_main
| | | | | | | | |
| | | | | | | | --50.00%-- LazyCompile:~readableAddChunk _stream_readable.js:147
| | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | Stub:JSEntryStub
| | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | http_parser_execute
| | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | v8::internal::FunctionCallbackArguments::Call(void (*)(v8::FunctionCallbackInfo<v8::Value> const&))
| | | | | | | | v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal::Isolate*, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::FunctionTemplateInfo>, v8::internal::Handle<v8::internal::Object>, v8::internal::BuiltinArguments)
| | | | | | | | v8::internal::Builtin_HandleApiCall(int, v8::internal::Object**, v8::internal::Isolate*)
| | | | | | | | Stub:CEntryStub
| | | | | | | | LazyCompile:~socketOnData _http_client.js:418
| | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | LazyCompile:~readableAddChunk _stream_readable.js:147
| | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | Stub:JSEntryStub
| | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | uv__read
| | | | | | | | uv__stream_io
| | | | | | | | uv__io_poll
| | | | | | | | uv_run
| | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | node::Start(int, char**)
| | | | | | | | __libc_start_main
| | | | | | | |
| | | | | | | |--20.97%-- v8::internal::ParserBase<v8::internal::Parser>::ParseStatementList(v8::internal::ZoneList<v8::internal::Statement*>*, int, bool, bool*)
| | | | | | | | v8::internal::Parser::ParseEagerFunctionBody(v8::internal::AstRawString const*, int, v8::internal::ParserFormalParameters const&, v8::internal::FunctionKind, v8::internal::FunctionLiteral::FunctionType, bool*)
| | | | | | | | v8::internal::Parser::ParseFunctionLiteral(v8::internal::AstRawString const*, v8::internal::Scanner::Location, v8::internal::FunctionNameValidity, v8::internal::FunctionKind, int, v8::internal::FunctionLiteral::FunctionType, v8::internal::LanguageMode, bool*)
| | | | | | | | v8::internal::Parser::DoParseLazy(v8::internal::ParseInfo*, v8::internal::AstRawString const*, v8::internal::Utf16CharacterStream*)
| | | | | | | | v8::internal::Parser::ParseLazy(v8::internal::Isolate*, v8::internal::ParseInfo*)
| | | | | | | | v8::internal::Parser::Parse(v8::internal::ParseInfo*)
| | | | | | | | v8::internal::Parser::ParseStatic(v8::internal::ParseInfo*)
| | | | | | | | v8::internal::(anonymous namespace)::RenderCallSite(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>)
| | | | | | | | v8::internal::Runtime_ThrowCalledNonCallable(int, v8::internal::Object**, v8::internal::Isolate*)
| | | | | | | | Stub:CEntryStub
| | | | | | | | Builtin:Call_ReceiverIsNotNullOrUndefined
| | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | LazyCompile:*formatProperty util.js:769
| | | | | | | | LazyCompile:* util.js:654
| | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | LazyCompile:*map native array.js:833
| | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | LazyCompile:*formatObject util.js:653
| | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | LazyCompile:*formatProperty util.js:769
| | | | | | | | LazyCompile:* util.js:654
| | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | LazyCompile:*map native array.js:833
| | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | LazyCompile:*formatObject util.js:653
| | | | | | | | LazyCompile:*formatValue util.js:302
| | | | | | | | LazyCompile:~_storeHeader _http_outgoing.js:180
| | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | |
| | | | | | | | |--92.31%-- LazyCompile:* /home/gireesh/node/down.js:32
| | | | | | | | | |
| | | | | | | | | |--50.00%-- LazyCompile:*emitOne events.js:94
| | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | |
| | | | | | | | | | |--50.00%-- LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | | http_parser_execute
| | | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | uv__read
| | | | | | | | | | | uv__stream_io
| | | | | | | | | | | uv__io_poll
| | | | | | | | | | | uv_run
| | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | __libc_start_main
| | | | | | | | | | |
| | | | | | | | | | --50.00%-- LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | http_parser_execute
| | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | LazyCompile:*socketOnData _http_client.js:418
| | | | | | | | | | LazyCompile:*emitOne events.js:94
| | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | uv__read
| | | | | | | | | | uv__stream_io
| | | | | | | | | | uv__io_poll
| | | | | | | | | | uv_run
| | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | __libc_start_main
| | | | | | | | | |
| | | | | | | | | |--41.67%-- LazyCompile:~emitOne events.js:94
| | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | | http_parser_execute
| | | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | | LazyCompile:~emitOne events.js:94
| | | | | | | | | | LazyCompile:~emit events.js:136
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | | |
| | | | | | | | | | |--60.00%-- LazyCompile:*Readable.push _stream_readable.js:123
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | LazyCompile:~onread net.js:533
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | uv__read
| | | | | | | | | | | uv__stream_io
| | | | | | | | | | | uv__io_poll
| | | | | | | | | | | uv_run
| | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | __libc_start_main
| | | | | | | | | | |
| | | | | | | | | | |--20.00%-- LazyCompile:~isInvalidPath _http_client.js:27
| | | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | | uv__read
| | | | | | | | | | | uv__stream_io
| | | | | | | | | | | uv__io_poll
| | | | | | | | | | | uv_run
| | | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | | __libc_start_main
| | | | | | | | | | |
| | | | | | | | | | --20.00%-- LazyCompile:*onread net.js:533
| | | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | | Stub:JSEntryStub
| | | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | | uv__read
| | | | | | | | | | uv__stream_io
| | | | | | | | | | uv__io_poll
| | | | | | | | | | uv_run
| | | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | | node::Start(int, char**)
| | | | | | | | | | __libc_start_main
| | | | | | | | | |
| | | | | | | | | --8.33%-- LazyCompile:*emit events.js:136
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | Stub:JSEntryStub
| | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | | http_parser_execute
| | | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | | LazyCompile:*emit events.js:136
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | | Stub:JSEntryStub
| | | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | | uv__read
| | | | | | | | | uv__stream_io
| | | | | | | | | uv__io_poll
| | | | | | | | | uv_run
| | | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | | node::Start(int, char**)
| | | | | | | | | __libc_start_main
| | | | | | | | |
| | | | | | | | --7.69%-- LazyCompile:~ /home/gireesh/node/down.js:32
| | | | | | | | LazyCompile:*emit events.js:136
| | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | LazyCompile:*parserOnBody _http_common.js:110
| | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | Stub:JSEntryStub
| | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | node::Parser::on_body(http_parser*, char const*, unsigned long)
| | | | | | | | http_parser_execute
| | | | | | | | node::Parser::Execute(v8::FunctionCallbackInfo<v8::Value> const&)
| | | | | | | | Stub:CallApiCallbackStub
| | | | | | | | LazyCompile:*once events.js:303
| | | | | | | | LazyCompile:*emit events.js:136
| | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | LazyCompile:*readableAddChunk _stream_readable.js:147
| | | | | | | | LazyCompile:*onread net.js:533
| | | | | | | | Builtin:ArgumentsAdaptorTrampoline
| | | | | | | | Builtin:JSEntryTrampoline
| | | | | | | | Stub:JSEntryStub
| | | | | | | | v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
| | | | | | | | v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | v8::Function::Call(v8::Local<v8::Value>, int, v8::Local<v8::Value>*)
| | | | | | | | node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*)
| | | | | | | | node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>)
| | | | | | | | node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*)
| | | | | | | | node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*)
| | | | | | | | uv__read
| | | | | | | | uv__stream_io
| | | | | | | | uv__io_poll
| | | | | | | | uv_run
| | | | | | | | node::Start(uv_loop_s*, int, char const* const*, int, char const* const*)
| | | | | | | | node::Start(int, char**)
| | | | | | | | __libc_start_main
| | | | | | | |
| | | | | | | --14.52%-- v8::internal::ParserBase<v8::internal::Parser>::ParseBlock(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool*)
| | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, v8::internal::AllowLabelledFunctionStatement, bool*)
| | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseScopedStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool, bool*)
| | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseIfStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool*)
| | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, v8::internal::AllowLabelledFunctionStatement, bool*)
| | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseBlock(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool*)
| | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, v8::internal::AllowLabelledFunctionStatement, bool*)
| | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseScopedStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool, bool*)
| | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseIfStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool*)
| | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, v8::internal::AllowLabelledFunctionStatement, bool*)
| | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseScopedStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool, bool*)
| | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseIfStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool*)
| | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, v8::internal::AllowLabelledFunctionStatement, bool*)
| | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseScopedStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool, bool*)
| | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseIfStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool*)
| | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, v8::internal::AllowLabelledFunctionStatement, bool*)
| | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseScopedStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool, bool*)
| | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseIfStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool*)
| | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, v8::internal::AllowLabelledFunctionStatement, bool*)
| | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseScopedStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool, bool*)
| | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseIfStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool*)
| | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, v8::internal::AllowLabelledFunctionStatement, bool*)
| | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseScopedStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool, bool*)
| | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseIfStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool*)
| | | | | | | v8::internal::ParserBase<v8::internal::Parser>::ParseStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, v8::internal::AllowLabelledFunctionStatement, bool*)
View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment