Re: [v8-users] Trace inline cache miss

2015-03-14 Thread 이원준
> > hmi done 'gdbjit=on' option and on d8 --gdbjit flags. but, IC miss call location is nothing. -- -- v8-users mailing list v8-users@googlegroups.com http://groups.google.com/group/v8-users --- You received this message because you are subscribed to the Google Groups "v8-users" group.

Re: [v8-users] Trace inline cache miss

2015-03-14 Thread Ben Noordhuis
On Fri, Mar 13, 2015 at 8:53 PM, 이원준 wrote: > hello ~ :) > > i want to find function that call inline cache miss ( at most first ) > > so, i find inline cache miss function > RUNTIME_FUNCTION(StoreIC_Miss) { > TimerEventScope timer(isolate); > > HandleScope scope(isolate); > DCHECK(args.len

[v8-users] Trace inline cache miss

2015-03-13 Thread 이원준
hello ~ :) i want to find function that call inline cache miss ( at most first ) so, i find inline cache miss function RUNTIME_FUNCTION(StoreIC_Miss) { TimerEventScope timer(isolate); HandleScope scope(isolate); DCHECK(args.length() == 3); StoreIC ic(IC::NO_EXTRA_FRAME, isolate); Hand