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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
280 0); | 280 0); |
281 int undefined_literal_id = | 281 int undefined_literal_id = |
282 DefineDeoptimizationLiteral(isolate()->factory()->undefined_value()); | 282 DefineDeoptimizationLiteral(isolate()->factory()->undefined_value()); |
283 translation.StoreLiteral(undefined_literal_id); | 283 translation.StoreLiteral(undefined_literal_id); |
284 | 284 |
285 deoptimization_states_[deoptimization_id] = | 285 deoptimization_states_[deoptimization_id] = |
286 new (zone()) DeoptimizationState(translation.index()); | 286 new (zone()) DeoptimizationState(translation.index()); |
287 } | 287 } |
288 | 288 |
289 | 289 |
290 #if !V8_TURBOFAN_TARGET | 290 #if !V8_TURBOFAN_BACKEND |
| 291 |
291 void CodeGenerator::AssembleArchInstruction(Instruction* instr) { | 292 void CodeGenerator::AssembleArchInstruction(Instruction* instr) { |
292 UNIMPLEMENTED(); | 293 UNIMPLEMENTED(); |
293 } | 294 } |
294 | 295 |
295 | 296 |
296 void CodeGenerator::AssembleArchBranch(Instruction* instr, | 297 void CodeGenerator::AssembleArchBranch(Instruction* instr, |
297 FlagsCondition condition) { | 298 FlagsCondition condition) { |
298 UNIMPLEMENTED(); | 299 UNIMPLEMENTED(); |
299 } | 300 } |
300 | 301 |
(...skipping 26 matching lines...) Expand all Loading... |
327 | 328 |
328 | 329 |
329 #ifdef DEBUG | 330 #ifdef DEBUG |
330 bool CodeGenerator::IsNopForSmiCodeInlining(Handle<Code> code, int start_pc, | 331 bool CodeGenerator::IsNopForSmiCodeInlining(Handle<Code> code, int start_pc, |
331 int end_pc) { | 332 int end_pc) { |
332 UNIMPLEMENTED(); | 333 UNIMPLEMENTED(); |
333 return false; | 334 return false; |
334 } | 335 } |
335 #endif | 336 #endif |
336 | 337 |
337 #endif | 338 #endif // !V8_TURBOFAN_BACKEND |
338 | 339 |
339 | 340 |
340 } // namespace compiler | 341 } // namespace compiler |
341 } // namespace internal | 342 } // namespace internal |
342 } // namespace v8 | 343 } // namespace v8 |
OLD | NEW |