OLD | NEW |
1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 28 matching lines...) Expand all Loading... |
39 | 39 |
40 | 40 |
41 int Deoptimizer::table_entry_size_ = 10; | 41 int Deoptimizer::table_entry_size_ = 10; |
42 | 42 |
43 void Deoptimizer::DeoptimizeFunction(JSFunction* function) { | 43 void Deoptimizer::DeoptimizeFunction(JSFunction* function) { |
44 // UNIMPLEMENTED, for now just return. | 44 // UNIMPLEMENTED, for now just return. |
45 return; | 45 return; |
46 } | 46 } |
47 | 47 |
48 | 48 |
49 void Deoptimizer::PatchStackCheckCode(RelocInfo* rinfo, | 49 void Deoptimizer::PatchStackCheckCode(Code* unoptimized_code, |
| 50 Code* check_code, |
50 Code* replacement_code) { | 51 Code* replacement_code) { |
51 UNIMPLEMENTED(); | 52 UNIMPLEMENTED(); |
52 } | 53 } |
53 | 54 |
54 | 55 |
55 void Deoptimizer::RevertStackCheckCode(RelocInfo* rinfo, Code* check_code) { | 56 void Deoptimizer::RevertStackCheckCode(Code* unoptimized_code, |
| 57 Code* check_code, |
| 58 Code* replacement_code) { |
56 UNIMPLEMENTED(); | 59 UNIMPLEMENTED(); |
57 } | 60 } |
58 | 61 |
59 | 62 |
60 void Deoptimizer::DoComputeOsrOutputFrame() { | 63 void Deoptimizer::DoComputeOsrOutputFrame() { |
61 UNIMPLEMENTED(); | 64 UNIMPLEMENTED(); |
62 } | 65 } |
63 | 66 |
64 | 67 |
65 void Deoptimizer::DoComputeFrame(TranslationIterator* iterator, | 68 void Deoptimizer::DoComputeFrame(TranslationIterator* iterator, |
66 int frame_index) { | 69 int frame_index) { |
67 UNIMPLEMENTED(); | 70 UNIMPLEMENTED(); |
68 } | 71 } |
69 | 72 |
70 | 73 |
71 void Deoptimizer::EntryGenerator::Generate() { | 74 void Deoptimizer::EntryGenerator::Generate() { |
72 // UNIMPLEMENTED, for now just return. | 75 // UNIMPLEMENTED, for now just return. |
73 return; | 76 return; |
74 } | 77 } |
75 | 78 |
76 | 79 |
77 void Deoptimizer::TableEntryGenerator::GeneratePrologue() { | 80 void Deoptimizer::TableEntryGenerator::GeneratePrologue() { |
78 UNIMPLEMENTED(); | 81 UNIMPLEMENTED(); |
79 } | 82 } |
80 | 83 |
81 } } // namespace v8::internal | 84 } } // namespace v8::internal |
82 | 85 |
83 #endif // V8_TARGET_ARCH_X64 | 86 #endif // V8_TARGET_ARCH_X64 |
OLD | NEW |