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

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

Issue 6321012: Version 3.0.9... (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
Patch Set: Created 9 years, 11 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
« no previous file with comments | « src/x64/code-stubs-x64.h ('k') | src/x64/frames-x64.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 23 matching lines...) Expand all
34 #include "full-codegen.h" 34 #include "full-codegen.h"
35 #include "safepoint-table.h" 35 #include "safepoint-table.h"
36 36
37 namespace v8 { 37 namespace v8 {
38 namespace internal { 38 namespace internal {
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(); 44 // UNIMPLEMENTED, for now just return.
45 return;
45 } 46 }
46 47
47 48
48 void Deoptimizer::PatchStackCheckCode(RelocInfo* rinfo, 49 void Deoptimizer::PatchStackCheckCode(RelocInfo* rinfo,
49 Code* replacement_code) { 50 Code* replacement_code) {
50 UNIMPLEMENTED(); 51 UNIMPLEMENTED();
51 } 52 }
52 53
53 54
54 void Deoptimizer::RevertStackCheckCode(RelocInfo* rinfo, Code* check_code) { 55 void Deoptimizer::RevertStackCheckCode(RelocInfo* rinfo, Code* check_code) {
55 UNIMPLEMENTED(); 56 UNIMPLEMENTED();
56 } 57 }
57 58
58 59
59 void Deoptimizer::DoComputeOsrOutputFrame() { 60 void Deoptimizer::DoComputeOsrOutputFrame() {
60 UNIMPLEMENTED(); 61 UNIMPLEMENTED();
61 } 62 }
62 63
63 64
64 void Deoptimizer::DoComputeFrame(TranslationIterator* iterator, 65 void Deoptimizer::DoComputeFrame(TranslationIterator* iterator,
65 int frame_index) { 66 int frame_index) {
66 UNIMPLEMENTED(); 67 UNIMPLEMENTED();
67 } 68 }
68 69
69 70
70 void Deoptimizer::EntryGenerator::Generate() { 71 void Deoptimizer::EntryGenerator::Generate() {
71 UNIMPLEMENTED(); 72 // UNIMPLEMENTED, for now just return.
73 return;
72 } 74 }
73 75
74 76
75 void Deoptimizer::TableEntryGenerator::GeneratePrologue() { 77 void Deoptimizer::TableEntryGenerator::GeneratePrologue() {
76 UNIMPLEMENTED(); 78 UNIMPLEMENTED();
77 } 79 }
78 80
79 } } // namespace v8::internal 81 } } // namespace v8::internal
80 82
81 #endif // V8_TARGET_ARCH_X64 83 #endif // V8_TARGET_ARCH_X64
OLDNEW
« no previous file with comments | « src/x64/code-stubs-x64.h ('k') | src/x64/frames-x64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698