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

Side by Side Diff: src/codegen.cc

Issue 661171: Merge r3962 to trunk (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
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 | Annotate | Revision Log
« no previous file with comments | « src/arm/virtual-frame-arm.cc ('k') | src/codegen-inl.h » ('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 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 21 matching lines...) Expand all
32 #include "compiler.h" 32 #include "compiler.h"
33 #include "debug.h" 33 #include "debug.h"
34 #include "liveedit.h" 34 #include "liveedit.h"
35 #include "oprofile-agent.h" 35 #include "oprofile-agent.h"
36 #include "prettyprinter.h" 36 #include "prettyprinter.h"
37 #include "register-allocator-inl.h" 37 #include "register-allocator-inl.h"
38 #include "rewriter.h" 38 #include "rewriter.h"
39 #include "runtime.h" 39 #include "runtime.h"
40 #include "scopeinfo.h" 40 #include "scopeinfo.h"
41 #include "stub-cache.h" 41 #include "stub-cache.h"
42 #include "virtual-frame-inl.h"
42 43
43 namespace v8 { 44 namespace v8 {
44 namespace internal { 45 namespace internal {
45 46
46 #define __ ACCESS_MASM(masm_) 47 #define __ ACCESS_MASM(masm_)
47 48
48 #ifdef DEBUG 49 #ifdef DEBUG
49 50
50 Comment::Comment(MacroAssembler* masm, const char* msg) 51 Comment::Comment(MacroAssembler* masm, const char* msg)
51 : masm_(masm), msg_(msg) { 52 : masm_(masm), msg_(msg) {
(...skipping 472 matching lines...) Expand 10 before | Expand all | Expand 10 after
524 } 525 }
525 } 526 }
526 527
527 528
528 void ApiGetterEntryStub::SetCustomCache(Code* value) { 529 void ApiGetterEntryStub::SetCustomCache(Code* value) {
529 info()->set_load_stub_cache(value); 530 info()->set_load_stub_cache(value);
530 } 531 }
531 532
532 533
533 } } // namespace v8::internal 534 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/arm/virtual-frame-arm.cc ('k') | src/codegen-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698