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

Side by Side Diff: src/stub-cache.h

Issue 594055: Change the interface of CallStubCompiler::CompileCallInterceptor. (Closed)
Patch Set: Created 10 years, 10 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
« no previous file with comments | « src/ia32/stub-cache-ia32.cc ('k') | src/stub-cache.cc » ('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 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 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 543 matching lines...) Expand 10 before | Expand all | Expand 10 after
554 554
555 Object* CompileCallField(Object* object, 555 Object* CompileCallField(Object* object,
556 JSObject* holder, 556 JSObject* holder,
557 int index, 557 int index,
558 String* name); 558 String* name);
559 Object* CompileCallConstant(Object* object, 559 Object* CompileCallConstant(Object* object,
560 JSObject* holder, 560 JSObject* holder,
561 JSFunction* function, 561 JSFunction* function,
562 String* name, 562 String* name,
563 CheckType check); 563 CheckType check);
564 Object* CompileCallInterceptor(Object* object, 564 Object* CompileCallInterceptor(JSObject* object,
565 JSObject* holder, 565 JSObject* holder,
566 String* name); 566 String* name);
567 Object* CompileCallGlobal(JSObject* object, 567 Object* CompileCallGlobal(JSObject* object,
568 GlobalObject* holder, 568 GlobalObject* holder,
569 JSGlobalPropertyCell* cell, 569 JSGlobalPropertyCell* cell,
570 JSFunction* function, 570 JSFunction* function,
571 String* name); 571 String* name);
572 572
573 private: 573 private:
574 const ParameterCount arguments_; 574 const ParameterCount arguments_;
(...skipping 12 matching lines...) Expand all
587 Object* CompileConstructStub(SharedFunctionInfo* shared); 587 Object* CompileConstructStub(SharedFunctionInfo* shared);
588 588
589 private: 589 private:
590 Object* GetCode(); 590 Object* GetCode();
591 }; 591 };
592 592
593 593
594 } } // namespace v8::internal 594 } } // namespace v8::internal
595 595
596 #endif // V8_STUB_CACHE_H_ 596 #endif // V8_STUB_CACHE_H_
OLDNEW
« no previous file with comments | « src/ia32/stub-cache-ia32.cc ('k') | src/stub-cache.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698