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

Side by Side Diff: src/ia32/code-stubs-ia32.cc

Issue 11659022: Generate the TransitionElementsStub using Crankshaft (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address review feedback Created 7 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 | Annotate | Revision Log
« no previous file with comments | « src/ia32/assembler-ia32.h ('k') | src/ia32/codegen-ia32.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 16 matching lines...) Expand all
27 27
28 #include "v8.h" 28 #include "v8.h"
29 29
30 #if defined(V8_TARGET_ARCH_IA32) 30 #if defined(V8_TARGET_ARCH_IA32)
31 31
32 #include "bootstrapper.h" 32 #include "bootstrapper.h"
33 #include "code-stubs.h" 33 #include "code-stubs.h"
34 #include "isolate.h" 34 #include "isolate.h"
35 #include "jsregexp.h" 35 #include "jsregexp.h"
36 #include "regexp-macro-assembler.h" 36 #include "regexp-macro-assembler.h"
37 #include "runtime.h"
37 #include "stub-cache.h" 38 #include "stub-cache.h"
38 #include "codegen.h" 39 #include "codegen.h"
39 40
40 namespace v8 { 41 namespace v8 {
41 namespace internal { 42 namespace internal {
42 43
43 44
44 void KeyedLoadFastElementStub::InitializeInterfaceDescriptor( 45 void KeyedLoadFastElementStub::InitializeInterfaceDescriptor(
45 Isolate* isolate, 46 Isolate* isolate,
46 CodeStubInterfaceDescriptor* descriptor) { 47 CodeStubInterfaceDescriptor* descriptor) {
47 static Register registers[] = { edx, ecx }; 48 static Register registers[] = { edx, ecx };
48 descriptor->register_param_count_ = 2; 49 descriptor->register_param_count_ = 2;
49 descriptor->register_params_ = registers; 50 descriptor->register_params_ = registers;
50 descriptor->deoptimization_handler_ = 51 descriptor->deoptimization_handler_ =
51 FUNCTION_ADDR(KeyedLoadIC_MissFromStubFailure); 52 FUNCTION_ADDR(KeyedLoadIC_MissFromStubFailure);
52 } 53 }
53 54
54 55
56 void TransitionElementsKindStub::InitializeInterfaceDescriptor(
57 Isolate* isolate,
58 CodeStubInterfaceDescriptor* descriptor) {
59 static Register registers[] = { eax, ebx };
60 descriptor->register_param_count_ = 2;
61 descriptor->register_params_ = registers;
62 descriptor->deoptimization_handler_ =
63 Runtime::FunctionForId(Runtime::kTransitionElementsKind)->entry;
64 }
65
66
55 #define __ ACCESS_MASM(masm) 67 #define __ ACCESS_MASM(masm)
56 68
57 void ToNumberStub::Generate(MacroAssembler* masm) { 69 void ToNumberStub::Generate(MacroAssembler* masm) {
58 // The ToNumber stub takes one argument in eax. 70 // The ToNumber stub takes one argument in eax.
59 Label check_heap_number, call_builtin; 71 Label check_heap_number, call_builtin;
60 __ JumpIfNotSmi(eax, &check_heap_number, Label::kNear); 72 __ JumpIfNotSmi(eax, &check_heap_number, Label::kNear);
61 __ ret(0); 73 __ ret(0);
62 74
63 __ bind(&check_heap_number); 75 __ bind(&check_heap_number);
64 __ mov(ebx, FieldOperand(eax, HeapObject::kMapOffset)); 76 __ mov(ebx, FieldOperand(eax, HeapObject::kMapOffset));
(...skipping 7603 matching lines...) Expand 10 before | Expand all | Expand 10 after
7668 // Restore ecx. 7680 // Restore ecx.
7669 __ pop(ecx); 7681 __ pop(ecx);
7670 __ ret(0); 7682 __ ret(0);
7671 } 7683 }
7672 7684
7673 #undef __ 7685 #undef __
7674 7686
7675 } } // namespace v8::internal 7687 } } // namespace v8::internal
7676 7688
7677 #endif // V8_TARGET_ARCH_IA32 7689 #endif // V8_TARGET_ARCH_IA32
OLDNEW
« no previous file with comments | « src/ia32/assembler-ia32.h ('k') | src/ia32/codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698