Home | History | Annotate | Download | only in cctest

Lines Matching refs:fun

50 void TestSeeds(Handle<JSFunction> fun,
60 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
62 CHECK(fun->IsOptimized());
89 Handle<JSFunction> fun(JSFunction::cast(fun_object->ToObjectChecked()));
92 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
93 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
94 if (!fun->IsOptimized()) fun->MarkForLazyRecompilation();
97 TestSeeds(fun, context, 0xC0C0AFFE, 0x31415926);
98 TestSeeds(fun, context, 0x01020304, 0xFFFFFFFF);
99 TestSeeds(fun, context, 0x00000001, 0x00000000);
104 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
106 CHECK(fun->IsOptimized());