OLD | NEW |
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 12 matching lines...) Expand all Loading... |
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | 27 |
28 | 28 |
29 #ifndef V8_CODEGEN_INL_H_ | 29 #ifndef V8_CODEGEN_INL_H_ |
30 #define V8_CODEGEN_INL_H_ | 30 #define V8_CODEGEN_INL_H_ |
31 | 31 |
32 #include "codegen.h" | 32 #include "codegen.h" |
| 33 #include "register-allocator-inl.h" |
33 | 34 |
34 namespace v8 { namespace internal { | 35 namespace v8 { namespace internal { |
35 | 36 |
36 | 37 |
| 38 void DeferredCode::SetEntryFrame(Result* arg) { |
| 39 ASSERT(generator()->has_valid_frame()); |
| 40 generator()->frame()->Push(arg); |
| 41 enter()->set_entry_frame(new VirtualFrame(generator()->frame())); |
| 42 *arg = generator()->frame()->Pop(); |
| 43 } |
| 44 |
| 45 |
37 // ----------------------------------------------------------------------------- | 46 // ----------------------------------------------------------------------------- |
38 // Support for "structured" code comments. | 47 // Support for "structured" code comments. |
39 // | 48 // |
40 // By selecting matching brackets in disassembler output, | 49 // By selecting matching brackets in disassembler output, |
41 // code segments can be identified more easily. | 50 // code segments can be identified more easily. |
42 | 51 |
43 #ifdef DEBUG | 52 #ifdef DEBUG |
44 | 53 |
45 class Comment BASE_EMBEDDED { | 54 class Comment BASE_EMBEDDED { |
46 public: | 55 public: |
(...skipping 19 matching lines...) Expand all Loading... |
66 public: | 75 public: |
67 Comment(MacroAssembler*, const char*) {} | 76 Comment(MacroAssembler*, const char*) {} |
68 }; | 77 }; |
69 | 78 |
70 #endif // DEBUG | 79 #endif // DEBUG |
71 | 80 |
72 | 81 |
73 } } // namespace v8::internal | 82 } } // namespace v8::internal |
74 | 83 |
75 #endif // V8_CODEGEN_INL_H_ | 84 #endif // V8_CODEGEN_INL_H_ |
OLD | NEW |