| 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 550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 561 return NULL; | 561 return NULL; |
| 562 } | 562 } |
| 563 | 563 |
| 564 Object* LoadStubCompiler::CompileLoadInterceptor(JSObject* a, | 564 Object* LoadStubCompiler::CompileLoadInterceptor(JSObject* a, |
| 565 JSObject* b, | 565 JSObject* b, |
| 566 String* c) { | 566 String* c) { |
| 567 UNIMPLEMENTED(); | 567 UNIMPLEMENTED(); |
| 568 return NULL; | 568 return NULL; |
| 569 } | 569 } |
| 570 | 570 |
| 571 bool RegisterAllocator::IsReserved(int a) { | |
| 572 UNIMPLEMENTED(); | |
| 573 return false; | |
| 574 } | |
| 575 | |
| 576 RegisterFile RegisterAllocator::Reserved() { | |
| 577 UNIMPLEMENTED(); | |
| 578 return RegisterFile(); | |
| 579 } | |
| 580 | |
| 581 const int RelocInfo::kApplyMask = -1; | 571 const int RelocInfo::kApplyMask = -1; |
| 582 | 572 |
| 583 StackFrame::Type StackFrame::ComputeType(StackFrame::State* a) { | 573 StackFrame::Type StackFrame::ComputeType(StackFrame::State* a) { |
| 584 UNIMPLEMENTED(); | 574 UNIMPLEMENTED(); |
| 585 return NONE; | 575 return NONE; |
| 586 } | 576 } |
| 587 | 577 |
| 588 Object* StoreStubCompiler::CompileStoreCallback(JSObject* a, | 578 Object* StoreStubCompiler::CompileStoreCallback(JSObject* a, |
| 589 AccessorInfo* b, | 579 AccessorInfo* b, |
| 590 String* c) { | 580 String* c) { |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 702 UNIMPLEMENTED(); | 692 UNIMPLEMENTED(); |
| 703 return NULL; | 693 return NULL; |
| 704 } | 694 } |
| 705 | 695 |
| 706 byte* JavaScriptFrame::GetCallerStackPointer() const { | 696 byte* JavaScriptFrame::GetCallerStackPointer() const { |
| 707 UNIMPLEMENTED(); | 697 UNIMPLEMENTED(); |
| 708 return NULL; | 698 return NULL; |
| 709 } | 699 } |
| 710 | 700 |
| 711 } } // namespace v8::internal | 701 } } // namespace v8::internal |
| OLD | NEW |