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

Side by Side Diff: runtime/vm/intermediate_language_mips.cc

Issue 345563007: Add Uint32 representation (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 5 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
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_MIPS. 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_MIPS.
6 #if defined(TARGET_ARCH_MIPS) 6 #if defined(TARGET_ARCH_MIPS)
7 7
8 #include "vm/intermediate_language.h" 8 #include "vm/intermediate_language.h"
9 9
10 #include "vm/dart_entry.h" 10 #include "vm/dart_entry.h"
(...skipping 4442 matching lines...) Expand 10 before | Expand all | Expand 10 after
4453 UNIMPLEMENTED(); 4453 UNIMPLEMENTED();
4454 return NULL; 4454 return NULL;
4455 } 4455 }
4456 4456
4457 4457
4458 void UnaryMintOpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 4458 void UnaryMintOpInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
4459 UNIMPLEMENTED(); 4459 UNIMPLEMENTED();
4460 } 4460 }
4461 4461
4462 4462
4463 LocationSummary* BinaryUint32OpInstr::MakeLocationSummary(Isolate* isolate,
4464 bool opt) const {
4465 UNIMPLEMENTED();
4466 return NULL;
4467 }
4468
4469
4470 void BinaryUint32OpInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
4471 }
4472
4473
4474 LocationSummary* ShiftUint32OpInstr::MakeLocationSummary(Isolate* isolate,
4475 bool opt) const {
4476 UNIMPLEMENTED();
4477 return NULL;
4478 }
4479
4480
4481 void ShiftUint32OpInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
4482 }
4483
4484
4485 LocationSummary* UnaryUint32OpInstr::MakeLocationSummary(Isolate* isolate,
4486 bool opt) const {
4487 UNIMPLEMENTED();
4488 return NULL;
4489 }
4490
4491
4492 void UnaryUint32OpInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
4493 }
4494
4495
4496 LocationSummary* UnboxUint32Instr::MakeLocationSummary(Isolate* isolate,
4497 bool opt) const {
4498 UNIMPLEMENTED();
4499 return NULL;
4500 }
4501
4502
4503 void UnboxUint32Instr::EmitNativeCode(FlowGraphCompiler* compiler) {
4504 }
4505
4506
4507 LocationSummary* BoxUint32Instr::MakeLocationSummary(Isolate* isolate,
4508 bool opt) const {
4509 UNIMPLEMENTED();
4510 return NULL;
4511 }
4512
4513
4514 void BoxUint32Instr::EmitNativeCode(FlowGraphCompiler* compiler) {
4515 }
4516
4517
4463 LocationSummary* ThrowInstr::MakeLocationSummary(Isolate* isolate, 4518 LocationSummary* ThrowInstr::MakeLocationSummary(Isolate* isolate,
4464 bool opt) const { 4519 bool opt) const {
4465 return new(isolate) LocationSummary(isolate, 0, 0, LocationSummary::kCall); 4520 return new(isolate) LocationSummary(isolate, 0, 0, LocationSummary::kCall);
4466 } 4521 }
4467 4522
4468 4523
4469 4524
4470 void ThrowInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 4525 void ThrowInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
4471 compiler->GenerateRuntimeCall(token_pos(), 4526 compiler->GenerateRuntimeCall(token_pos(),
4472 deopt_id(), 4527 deopt_id(),
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
4697 compiler->GenerateCall(token_pos(), &label, stub_kind_, locs()); 4752 compiler->GenerateCall(token_pos(), &label, stub_kind_, locs());
4698 #if defined(DEBUG) 4753 #if defined(DEBUG)
4699 __ LoadImmediate(S4, kInvalidObjectPointer); 4754 __ LoadImmediate(S4, kInvalidObjectPointer);
4700 __ LoadImmediate(S5, kInvalidObjectPointer); 4755 __ LoadImmediate(S5, kInvalidObjectPointer);
4701 #endif 4756 #endif
4702 } 4757 }
4703 4758
4704 } // namespace dart 4759 } // namespace dart
4705 4760
4706 #endif // defined TARGET_ARCH_MIPS 4761 #endif // defined TARGET_ARCH_MIPS
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698