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

Unified Diff: src/codegen-ia32.cc

Issue 2850: Generalize the Function.prototype.call hooks in the... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 12 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/codegen-arm.cc ('k') | src/objects.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/codegen-ia32.cc
===================================================================
--- src/codegen-ia32.cc (revision 310)
+++ src/codegen-ia32.cc (working copy)
@@ -320,16 +320,6 @@
void EnterJSFrame();
void ExitJSFrame();
- virtual void GenerateShiftDownAndTailCall(ZoneList<Expression*>* args);
- virtual void GenerateSetThisFunction(ZoneList<Expression*>* args);
- virtual void GenerateGetThisFunction(ZoneList<Expression*>* args);
- virtual void GenerateSetThis(ZoneList<Expression*>* args);
- virtual void GenerateGetArgumentsLength(ZoneList<Expression*>* args);
- virtual void GenerateSetArgumentsLength(ZoneList<Expression*>* args);
- virtual void GenerateTailCallWithArguments(ZoneList<Expression*>* args);
- virtual void GenerateSetArgument(ZoneList<Expression*>* args);
- virtual void GenerateSquashFrame(ZoneList<Expression*>* args);
- virtual void GenerateExpandFrame(ZoneList<Expression*>* args);
virtual void GenerateIsSmi(ZoneList<Expression*>* args);
virtual void GenerateIsNonNegativeSmi(ZoneList<Expression*>* args);
virtual void GenerateIsArray(ZoneList<Expression*>* args);
@@ -4035,70 +4025,6 @@
}
-void Ia32CodeGenerator::GenerateSetThisFunction(ZoneList<Expression*>* args) {
- // Not used on IA-32 anymore. Should go away soon.
- __ int3();
-}
-
-
-void Ia32CodeGenerator::GenerateGetThisFunction(ZoneList<Expression*>* args) {
- // Not used on IA-32 anymore. Should go away soon.
- __ int3();
-}
-
-
-void Ia32CodeGenerator::GenerateSetThis(ZoneList<Expression*>* args) {
- // Not used on IA-32 anymore. Should go away soon.
- __ int3();
-}
-
-
-void Ia32CodeGenerator::GenerateSetArgumentsLength(
- ZoneList<Expression*>* args) {
- // Not used on IA-32 anymore. Should go away soon.
- __ int3();
-}
-
-
-void Ia32CodeGenerator::GenerateGetArgumentsLength(
- ZoneList<Expression*>* args) {
- // Not used on IA-32 anymore. Should go away soon.
- __ int3();
-}
-
-
-void Ia32CodeGenerator::GenerateTailCallWithArguments(
- ZoneList<Expression*>* args) {
- // Not used on IA-32 anymore. Should go away soon.
- __ int3();
-}
-
-
-void Ia32CodeGenerator::GenerateSetArgument(ZoneList<Expression*>* args) {
- // Not used on IA-32 anymore. Should go away soon.
- __ int3();
-}
-
-
-void Ia32CodeGenerator::GenerateSquashFrame(ZoneList<Expression*>* args) {
- // Not used on IA-32 anymore. Should go away soon.
- __ int3();
-}
-
-
-void Ia32CodeGenerator::GenerateExpandFrame(ZoneList<Expression*>* args) {
- // Not used on IA-32 anymore. Should go away soon.
- __ int3();
-}
-
-
-void Ia32CodeGenerator::GenerateShiftDownAndTailCall(
- ZoneList<Expression*>* args) {
- // Not used on IA-32 anymore. Should go away soon.
- __ int3();
-}
-
-
void Ia32CodeGenerator::GenerateIsSmi(ZoneList<Expression*>* args) {
ASSERT(args->length() == 1);
Load(args->at(0));
« no previous file with comments | « src/codegen-arm.cc ('k') | src/objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698