HomeSort by relevance Sort by last modified time
    Searched refs:SharedFunctionInfo (Results 1 - 25 of 38) sorted by null

1 2

  /external/v8/src/
compiler.h 90 // Lazy compilation based on SharedFunctionInfo.
91 explicit CompilationInfo(Handle<SharedFunctionInfo> shared_info)
117 // We can get a SharedFunctionInfo from a JSFunction or if we actually
119 Handle<SharedFunctionInfo> shared_info() {
121 return Handle<SharedFunctionInfo>(closure()->shared());
193 Handle<SharedFunctionInfo> shared_info_;
accessors.cc 359 Handle<SharedFunctionInfo> eval_from_shared(
360 SharedFunctionInfo::cast(Script::cast(script)->eval_from_shared()));
395 Handle<Code> code(SharedFunctionInfo::cast(
416 Handle<SharedFunctionInfo> shared(SharedFunctionInfo::cast(
496 Handle<SharedFunctionInfo> shared(function->shared());
objects-inl.h     [all...]
debug.h 227 static void SetBreakPoint(Handle<SharedFunctionInfo> shared,
232 static void FloodWithOneShot(Handle<SharedFunctionInfo> shared);
239 static Handle<DebugInfo> GetDebugInfo(Handle<SharedFunctionInfo> shared);
240 static bool HasDebugInfo(Handle<SharedFunctionInfo> shared);
243 static bool EnsureDebugInfo(Handle<SharedFunctionInfo> shared);
260 Handle<SharedFunctionInfo> shared);
handles.h 305 void SetExpectedNofPropertiesFromEstimate(Handle<SharedFunctionInfo> shared,
323 bool EnsureCompiled(Handle<SharedFunctionInfo> shared,
326 bool CompileLazyShared(Handle<SharedFunctionInfo> shared,
debug.cc 830 Handle<SharedFunctionInfo> shared =
831 Handle<SharedFunctionInfo>(JSFunction::cast(frame->function())->shared());
963 bool Debug::HasDebugInfo(Handle<SharedFunctionInfo> shared) {
970 Handle<DebugInfo> Debug::GetDebugInfo(Handle<SharedFunctionInfo> shared) {
976 void Debug::SetBreakPoint(Handle<SharedFunctionInfo> shared,
    [all...]
factory.h 280 Handle<SharedFunctionInfo> shared, Handle<Object> prototype);
337 static Handle<SharedFunctionInfo> NewSharedFunctionInfo(Handle<String> name);
345 static Handle<DebugInfo> NewDebugInfo(Handle<SharedFunctionInfo> shared);
log.cc     [all...]
factory.cc 515 Handle<SharedFunctionInfo> shared = NewSharedFunctionInfo(name);
684 Handle<SharedFunctionInfo> Factory::NewSharedFunctionInfo(Handle<String> name) {
686 SharedFunctionInfo);
705 Handle<SharedFunctionInfo> function_share = NewSharedFunctionInfo(name);
733 Handle<DebugInfo> Factory::NewDebugInfo(Handle<SharedFunctionInfo> shared) {
    [all...]
compiler.cc 96 Handle<SharedFunctionInfo> shared = info->shared_info();
359 Handle<SharedFunctionInfo> shared = info->shared_info();
objects-debug.cc 176 SharedFunctionInfo::cast(this)->SharedFunctionInfoPrint();
282 SharedFunctionInfo::cast(this)->SharedFunctionInfoVerify();
738 void SharedFunctionInfo::SharedFunctionInfoPrint() {
739 HeapObject::PrintHeader("SharedFunctionInfo");
766 void SharedFunctionInfo::SharedFunctionInfoVerify() {
    [all...]
handles.cc 170 void SetExpectedNofPropertiesFromEstimate(Handle<SharedFunctionInfo> shared,
685 bool EnsureCompiled(Handle<SharedFunctionInfo> shared,
702 bool CompileLazyShared(Handle<SharedFunctionInfo> shared,
objects.cc     [all...]
heap.h 489 SharedFunctionInfo* shared,
540 // Allocates a new SharedFunctionInfo object.
    [all...]
runtime.cc     [all...]
  /external/v8/test/cctest/
test-func-name-inference.cc 44 using ::v8::internal::SharedFunctionInfo;
76 // Obtain SharedFunctionInfo for the function.
80 Handle<SharedFunctionInfo> shared_func_info(
81 SharedFunctionInfo::cast(shared_func_info_ptr));
test-mark-compact.cc 173 SharedFunctionInfo* function_share =
174 SharedFunctionInfo::cast(Heap::AllocateSharedFunctionInfo(func_name));
test-heap.cc 210 SharedFunctionInfo* function_share =
211 SharedFunctionInfo::cast(Heap::AllocateSharedFunctionInfo(func_name));
513 SharedFunctionInfo* function_share =
514 SharedFunctionInfo::cast(Heap::AllocateSharedFunctionInfo(name));
603 SharedFunctionInfo* function_share =
604 SharedFunctionInfo::cast(Heap::AllocateSharedFunctionInfo(name));
  /external/v8/src/arm/
builtins-arm.cc 496 __ ldr(r2, FieldMemOperand(r2, SharedFunctionInfo::kConstructStubOffset));
    [all...]
macro-assembler-arm.cc 444 const int sentinel = SharedFunctionInfo::kDontAdaptArgumentsSentinel;
538 SharedFunctionInfo::kFormalParameterCountOffset));
540 MemOperand(code_reg, SharedFunctionInfo::kCodeOffset - kHeapObjectTag));
    [all...]
stub-cache-arm.cc     [all...]
  /external/v8/src/ia32/
builtins-ia32.cc 89 __ mov(ebx, FieldOperand(ebx, SharedFunctionInfo::kConstructStubOffset));
548 FieldOperand(edx, SharedFunctionInfo::kFormalParameterCountOffset));
549 __ mov(edx, FieldOperand(edx, SharedFunctionInfo::kCodeOffset));
    [all...]
macro-assembler-ia32.cc     [all...]
  /external/v8/src/mips/
stub-cache-mips.cc 375 SharedFunctionInfo* shared) {
  /external/v8/src/x64/
builtins-x64.cc 118 __ cmpq(rbx, Immediate(SharedFunctionInfo::kDontAdaptArgumentsSentinel));
308 FieldOperand(rdx, SharedFunctionInfo::kFormalParameterCountOffset));
309 __ movq(rdx, FieldOperand(rdx, SharedFunctionInfo::kCodeOffset));
895 __ movq(rbx, FieldOperand(rbx, SharedFunctionInfo::kConstructStubOffset));
    [all...]

Completed in 713 milliseconds

1 2