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

Side by Side Diff: src/x64/stub-cache-x64.cc

Issue 155344: Re-enable ICs for loads and calls that skips a global object during... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years, 5 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
« src/objects-inl.h ('K') | « src/stub-cache.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2009 the V8 project authors. All rights reserved. 1 // Copyright 2009 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 24 matching lines...) Expand all
35 35
36 namespace v8 { 36 namespace v8 {
37 namespace internal { 37 namespace internal {
38 38
39 #define __ ACCESS_MASM((&masm_)) 39 #define __ ACCESS_MASM((&masm_))
40 40
41 41
42 Object* CallStubCompiler::CompileCallConstant(Object* a, 42 Object* CallStubCompiler::CompileCallConstant(Object* a,
43 JSObject* b, 43 JSObject* b,
44 JSFunction* c, 44 JSFunction* c,
45 StubCompiler::CheckType d) { 45 String* d,
46 StubCompiler::CheckType e) {
46 UNIMPLEMENTED(); 47 UNIMPLEMENTED();
47 return NULL; 48 return NULL;
48 } 49 }
49 50
50 Object* CallStubCompiler::CompileCallField(Object* a, 51 Object* CallStubCompiler::CompileCallField(Object* a,
51 JSObject* b, 52 JSObject* b,
52 int c, 53 int c,
53 String* d) { 54 String* d) {
54 UNIMPLEMENTED(); 55 UNIMPLEMENTED();
55 return NULL; 56 return NULL;
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 __ lea(rcx, FieldOperand(rax, Code::kHeaderSize)); 172 __ lea(rcx, FieldOperand(rax, Code::kHeaderSize));
172 __ jmp(rcx); 173 __ jmp(rcx);
173 174
174 return GetCodeWithFlags(flags, "LazyCompileStub"); 175 return GetCodeWithFlags(flags, "LazyCompileStub");
175 } 176 }
176 177
177 #undef __ 178 #undef __
178 179
179 180
180 } } // namespace v8::internal 181 } } // namespace v8::internal
OLDNEW
« src/objects-inl.h ('K') | « src/stub-cache.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698