| OLD | NEW |
| 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 367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 378 } | 378 } |
| 379 int literal_id = DefineDeoptimizationLiteral(constant_object); | 379 int literal_id = DefineDeoptimizationLiteral(constant_object); |
| 380 translation->StoreLiteral(literal_id); | 380 translation->StoreLiteral(literal_id); |
| 381 } else { | 381 } else { |
| 382 UNREACHABLE(); | 382 UNREACHABLE(); |
| 383 } | 383 } |
| 384 } | 384 } |
| 385 | 385 |
| 386 #if !V8_TURBOFAN_BACKEND | 386 #if !V8_TURBOFAN_BACKEND |
| 387 | 387 |
| 388 void CodeGenerator::AssembleDeoptimizerCall(int deoptimization_id) { |
| 389 UNIMPLEMENTED(); |
| 390 } |
| 391 |
| 392 |
| 388 void CodeGenerator::AssembleArchInstruction(Instruction* instr) { | 393 void CodeGenerator::AssembleArchInstruction(Instruction* instr) { |
| 389 UNIMPLEMENTED(); | 394 UNIMPLEMENTED(); |
| 390 } | 395 } |
| 391 | 396 |
| 392 | 397 |
| 393 void CodeGenerator::AssembleArchBranch(Instruction* instr, | 398 void CodeGenerator::AssembleArchBranch(Instruction* instr, |
| 394 FlagsCondition condition) { | 399 FlagsCondition condition) { |
| 395 UNIMPLEMENTED(); | 400 UNIMPLEMENTED(); |
| 396 } | 401 } |
| 397 | 402 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 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 |
| OLD | NEW |