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

Side by Side Diff: src/compiler/code-generator.cc

Issue 533473002: Fix non-TF targets after r23547. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 3 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/compiler/code-generator.h" 5 #include "src/compiler/code-generator.h"
6 6
7 #include "src/compiler/code-generator-impl.h" 7 #include "src/compiler/code-generator-impl.h"
8 #include "src/compiler/linkage.h" 8 #include "src/compiler/linkage.h"
9 #include "src/compiler/pipeline.h" 9 #include "src/compiler/pipeline.h"
10 10
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after
395 UNIMPLEMENTED(); 395 UNIMPLEMENTED();
396 } 396 }
397 397
398 398
399 void CodeGenerator::AssembleArchBoolean(Instruction* instr, 399 void CodeGenerator::AssembleArchBoolean(Instruction* instr,
400 FlagsCondition condition) { 400 FlagsCondition condition) {
401 UNIMPLEMENTED(); 401 UNIMPLEMENTED();
402 } 402 }
403 403
404 404
405 void CodeGenerator::AssembleDeoptimizerCall(int deoptimization_id) {
406 UNIMPLEMENTED();
407 }
408
409
405 void CodeGenerator::AssemblePrologue() { UNIMPLEMENTED(); } 410 void CodeGenerator::AssemblePrologue() { UNIMPLEMENTED(); }
406 411
407 412
408 void CodeGenerator::AssembleReturn() { UNIMPLEMENTED(); } 413 void CodeGenerator::AssembleReturn() { UNIMPLEMENTED(); }
409 414
410 415
411 void CodeGenerator::AssembleMove(InstructionOperand* source, 416 void CodeGenerator::AssembleMove(InstructionOperand* source,
412 InstructionOperand* destination) { 417 InstructionOperand* destination) {
413 UNIMPLEMENTED(); 418 UNIMPLEMENTED();
414 } 419 }
415 420
416 421
417 void CodeGenerator::AssembleSwap(InstructionOperand* source, 422 void CodeGenerator::AssembleSwap(InstructionOperand* source,
418 InstructionOperand* destination) { 423 InstructionOperand* destination) {
419 UNIMPLEMENTED(); 424 UNIMPLEMENTED();
420 } 425 }
421 426
422 427
423 void CodeGenerator::AddNopForSmiCodeInlining() { UNIMPLEMENTED(); } 428 void CodeGenerator::AddNopForSmiCodeInlining() { UNIMPLEMENTED(); }
424 429
425 #endif // !V8_TURBOFAN_BACKEND 430 #endif // !V8_TURBOFAN_BACKEND
426 431
427 } // namespace compiler 432 } // namespace compiler
428 } // namespace internal 433 } // namespace internal
429 } // namespace v8 434 } // namespace v8
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698