| 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 } | 98 } |
| 99 | 99 |
| 100 void Assembler::bind(Label* a) { | 100 void Assembler::bind(Label* a) { |
| 101 UNIMPLEMENTED(); | 101 UNIMPLEMENTED(); |
| 102 } | 102 } |
| 103 | 103 |
| 104 Assembler::~Assembler() { | 104 Assembler::~Assembler() { |
| 105 UNIMPLEMENTED(); | 105 UNIMPLEMENTED(); |
| 106 } | 106 } |
| 107 | 107 |
| 108 |
| 109 void Assembler::nop() { |
| 110 UNIMPLEMENTED(); |
| 111 } |
| 112 |
| 113 |
| 108 void BreakLocationIterator::ClearDebugBreakAtReturn() { | 114 void BreakLocationIterator::ClearDebugBreakAtReturn() { |
| 109 UNIMPLEMENTED(); | 115 UNIMPLEMENTED(); |
| 110 } | 116 } |
| 111 | 117 |
| 112 bool BreakLocationIterator::IsDebugBreakAtReturn() { | 118 bool BreakLocationIterator::IsDebugBreakAtReturn() { |
| 113 UNIMPLEMENTED(); | 119 UNIMPLEMENTED(); |
| 114 return false; | 120 return false; |
| 115 } | 121 } |
| 116 | 122 |
| 117 void BreakLocationIterator::SetDebugBreakAtReturn() { | 123 void BreakLocationIterator::SetDebugBreakAtReturn() { |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 } | 351 } |
| 346 | 352 |
| 347 void CodeGenerator::VisitThisFunction(ThisFunction* a) { | 353 void CodeGenerator::VisitThisFunction(ThisFunction* a) { |
| 348 UNIMPLEMENTED(); | 354 UNIMPLEMENTED(); |
| 349 } | 355 } |
| 350 | 356 |
| 351 void CpuFeatures::Probe() { | 357 void CpuFeatures::Probe() { |
| 352 UNIMPLEMENTED(); | 358 UNIMPLEMENTED(); |
| 353 } | 359 } |
| 354 | 360 |
| 361 |
| 362 bool Debug::IsDebugBreakAtReturn(v8::internal::RelocInfo*) { |
| 363 UNIMPLEMENTED(); |
| 364 return false; |
| 365 } |
| 366 |
| 355 void Debug::GenerateCallICDebugBreak(MacroAssembler* a) { | 367 void Debug::GenerateCallICDebugBreak(MacroAssembler* a) { |
| 356 UNIMPLEMENTED(); | 368 UNIMPLEMENTED(); |
| 357 } | 369 } |
| 358 | 370 |
| 359 void Debug::GenerateConstructCallDebugBreak(MacroAssembler* a) { | 371 void Debug::GenerateConstructCallDebugBreak(MacroAssembler* a) { |
| 360 UNIMPLEMENTED(); | 372 UNIMPLEMENTED(); |
| 361 } | 373 } |
| 362 | 374 |
| 363 void Debug::GenerateKeyedLoadICDebugBreak(MacroAssembler* a) { | 375 void Debug::GenerateKeyedLoadICDebugBreak(MacroAssembler* a) { |
| 364 UNIMPLEMENTED(); | 376 UNIMPLEMENTED(); |
| (...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 764 UNIMPLEMENTED(); | 776 UNIMPLEMENTED(); |
| 765 return NULL; | 777 return NULL; |
| 766 } | 778 } |
| 767 | 779 |
| 768 byte* JavaScriptFrame::GetCallerStackPointer() const { | 780 byte* JavaScriptFrame::GetCallerStackPointer() const { |
| 769 UNIMPLEMENTED(); | 781 UNIMPLEMENTED(); |
| 770 return NULL; | 782 return NULL; |
| 771 } | 783 } |
| 772 | 784 |
| 773 } } // namespace v8::internal | 785 } } // namespace v8::internal |
| OLD | NEW |