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

Side by Side Diff: src/ic/handler-compiler.cc

Issue 496283004: Move "slow handler" compiler code to handler-compiler (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 4 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/ic/handler-compiler.h ('k') | src/ic/ia32/handler-compiler-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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/v8.h" 5 #include "src/v8.h"
6 6
7 #include "src/ic/call-optimization.h" 7 #include "src/ic/call-optimization.h"
8 #include "src/ic/handler-compiler.h" 8 #include "src/ic/handler-compiler.h"
9 #include "src/ic/ic-inl.h" 9 #include "src/ic/ic-inl.h"
10 10
(...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 cached_stub = isolate()->builtins()->KeyedLoadIC_SloppyArguments(); 381 cached_stub = isolate()->builtins()->KeyedLoadIC_SloppyArguments();
382 } else { 382 } else {
383 DCHECK(elements_kind == DICTIONARY_ELEMENTS); 383 DCHECK(elements_kind == DICTIONARY_ELEMENTS);
384 cached_stub = LoadDictionaryElementStub(isolate()).GetCode(); 384 cached_stub = LoadDictionaryElementStub(isolate()).GetCode();
385 } 385 }
386 } 386 }
387 387
388 handlers->Add(cached_stub); 388 handlers->Add(cached_stub);
389 } 389 }
390 } 390 }
391
392
393 void ElementHandlerCompiler::GenerateStoreDictionaryElement(
394 MacroAssembler* masm) {
395 KeyedStoreIC::GenerateSlow(masm);
396 }
397 } 391 }
398 } // namespace v8::internal 392 } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/ic/handler-compiler.h ('k') | src/ic/ia32/handler-compiler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698