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

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

Issue 444503003: Cleanup V8_TURBOFAN_TARGET definition. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 4 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/compiler/arm64/instruction-selector-arm64.cc ('k') | src/compiler/instruction-selector.cc » ('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 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
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
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
OLDNEW
« no previous file with comments | « src/compiler/arm64/instruction-selector-arm64.cc ('k') | src/compiler/instruction-selector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698