| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |