Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: src/x64/assembler-x64.cc

Issue 113837: Change the register allocator so that it no longer tracks references... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698