Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(36)

Side by Side Diff: src/accessors.cc

Issue 7740021: Changed computation of func.caller to skip some built-in functions. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address review comment. Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | test/mjsunit/function-caller.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 662 matching lines...) Expand 10 before | Expand all | Expand 10 after
673 DisableAssertNoAllocation enable_allocation; 673 DisableAssertNoAllocation enable_allocation;
674 if (caller->shared()->strict_mode()) { 674 if (caller->shared()->strict_mode()) {
675 return isolate->Throw( 675 return isolate->Throw(
676 *isolate->factory()->NewTypeError("strict_caller", 676 *isolate->factory()->NewTypeError("strict_caller",
677 HandleVector<Object>(NULL, 0))); 677 HandleVector<Object>(NULL, 0)));
678 } 678 }
679 return caller; 679 return caller;
680 } 680 }
681 681
682 682
683 class FrameFunctionIterator {
684 public:
685 FrameFunctionIterator(Isolate* isolate, const AssertNoAllocation& promise)
686 : frame_iterator_(isolate),
687 functions_(2),
688 index_(0) {
689 GetFunctions();
690 }
691 JSFunction* next() {
692 if (functions_.length() == 0) return NULL;
693 JSFunction* next_function = functions_[index_];
694 index_--;
695 if (index_ < 0) {
696 GetFunctions();
697 }
698 return next_function;
699 }
700
701 // Iterate through functions until the first occurence of 'function'.
702 // Returns true if 'function' is found, and false if the iterator ends
703 // without finding it.
704 bool Find(JSFunction* function) {
705 JSFunction* next_function;
706 do {
707 next_function = next();
708 if (next_function == function) return true;
709 } while (next_function != NULL);
710 return false;
711 }
712 private:
713 void GetFunctions() {
714 functions_.Rewind(0);
715 if (frame_iterator_.done()) return;
716 JavaScriptFrame* frame = frame_iterator_.frame();
717 frame->GetFunctions(&functions_);
718 ASSERT(functions_.length() > 0);
719 frame_iterator_.Advance();
720 index_ = functions_.length() - 1;
721 }
722 JavaScriptFrameIterator frame_iterator_;
723 List<JSFunction*> functions_;
724 int index_;
725 };
726
727
683 MaybeObject* Accessors::FunctionGetCaller(Object* object, void*) { 728 MaybeObject* Accessors::FunctionGetCaller(Object* object, void*) {
684 Isolate* isolate = Isolate::Current(); 729 Isolate* isolate = Isolate::Current();
685 HandleScope scope(isolate); 730 HandleScope scope(isolate);
686 AssertNoAllocation no_alloc; 731 AssertNoAllocation no_alloc;
687 bool found_it = false; 732 bool found_it = false;
688 JSFunction* holder = FindInPrototypeChain<JSFunction>(object, &found_it); 733 JSFunction* holder = FindInPrototypeChain<JSFunction>(object, &found_it);
689 if (!found_it) return isolate->heap()->undefined_value(); 734 if (!found_it) return isolate->heap()->undefined_value();
690 Handle<JSFunction> function(holder, isolate); 735 Handle<JSFunction> function(holder, isolate);
691 736
692 List<JSFunction*> functions(2); 737 FrameFunctionIterator it(isolate, no_alloc);
693 for (JavaScriptFrameIterator it(isolate); !it.done(); it.Advance()) { 738
694 JavaScriptFrame* frame = it.frame(); 739 // Find the function from the frames.
695 frame->GetFunctions(&functions); 740 if (!it.Find(*function)) {
696 for (int i = functions.length() - 1; i >= 0; i--) { 741 // No frame corresponding to the given function found. Return null.
697 if (functions[i] == *function) { 742 return isolate->heap()->null_value();
698 // Once we have found the frame, we need to go to the caller
699 // frame. This may require skipping through a number of top-level
700 // frames, e.g. frames for scripts not functions.
701 if (i > 0) {
702 ASSERT(!functions[i - 1]->shared()->is_toplevel());
703 return CheckNonStrictCallerOrThrow(isolate, functions[i - 1]);
704 } else {
705 for (it.Advance(); !it.done(); it.Advance()) {
706 frame = it.frame();
707 functions.Rewind(0);
708 frame->GetFunctions(&functions);
709 if (!functions.last()->shared()->is_toplevel()) {
710 return CheckNonStrictCallerOrThrow(isolate, functions.last());
711 }
712 ASSERT(functions.length() == 1);
713 }
714 if (it.done()) return isolate->heap()->null_value();
715 break;
716 }
717 }
718 }
719 functions.Rewind(0);
720 } 743 }
721 744
722 // No frame corresponding to the given function found. Return null. 745 // Find previously called non-toplevel function.
723 return isolate->heap()->null_value(); 746 JSFunction* caller;
747 do {
748 caller = it.next();
749 if (caller == NULL) return isolate->heap()->null_value();
750 } while (caller->shared()->is_toplevel());
751
752 // If caller is a built-in function and caller's caller is also built-in,
753 // use that instead.
754 JSFunction* potential_caller = caller;
755 while (potential_caller != NULL && potential_caller->IsBuiltin()) {
756 caller = potential_caller;
757 potential_caller = it.next();
758 }
759
760 return CheckNonStrictCallerOrThrow(isolate, caller);
724 } 761 }
725 762
726 763
727 const AccessorDescriptor Accessors::FunctionCaller = { 764 const AccessorDescriptor Accessors::FunctionCaller = {
728 FunctionGetCaller, 765 FunctionGetCaller,
729 ReadOnlySetAccessor, 766 ReadOnlySetAccessor,
730 0 767 0
731 }; 768 };
732 769
733 770
(...skipping 21 matching lines...) Expand all
755 } 792 }
756 793
757 794
758 const AccessorDescriptor Accessors::ObjectPrototype = { 795 const AccessorDescriptor Accessors::ObjectPrototype = {
759 ObjectGetPrototype, 796 ObjectGetPrototype,
760 ObjectSetPrototype, 797 ObjectSetPrototype,
761 0 798 0
762 }; 799 };
763 800
764 } } // namespace v8::internal 801 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « no previous file | test/mjsunit/function-caller.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698