>
> 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.
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
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