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

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

Issue 1891033002: [Atomics] Remove Atomics code stubs; use TF ops (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: remove s390 code stub Created 4 years, 8 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
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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/ast/scopes.h" 5 #include "src/ast/scopes.h"
6 #include "src/compiler/code-generator.h" 6 #include "src/compiler/code-generator.h"
7 #include "src/compiler/code-generator-impl.h" 7 #include "src/compiler/code-generator-impl.h"
8 #include "src/compiler/gap-resolver.h" 8 #include "src/compiler/gap-resolver.h"
9 #include "src/compiler/node-matchers.h" 9 #include "src/compiler/node-matchers.h"
10 #include "src/compiler/osr.h" 10 #include "src/compiler/osr.h"
(...skipping 1556 matching lines...) Expand 10 before | Expand all | Expand 10 after
1567 break; 1567 break;
1568 case kCheckedStoreWord64: 1568 case kCheckedStoreWord64:
1569 ASSEMBLE_CHECKED_STORE_INTEGER(sd); 1569 ASSEMBLE_CHECKED_STORE_INTEGER(sd);
1570 break; 1570 break;
1571 case kCheckedStoreFloat32: 1571 case kCheckedStoreFloat32:
1572 ASSEMBLE_CHECKED_STORE_FLOAT(Single, swc1); 1572 ASSEMBLE_CHECKED_STORE_FLOAT(Single, swc1);
1573 break; 1573 break;
1574 case kCheckedStoreFloat64: 1574 case kCheckedStoreFloat64:
1575 ASSEMBLE_CHECKED_STORE_FLOAT(Double, sdc1); 1575 ASSEMBLE_CHECKED_STORE_FLOAT(Double, sdc1);
1576 break; 1576 break;
1577 case kAtomicLoadInt8:
1578 case kAtomicLoadUint8:
1579 case kAtomicLoadInt16:
1580 case kAtomicLoadUint16:
1581 case kAtomicLoadWord32:
1582 UNIMPLEMENTED();
1583 break;
1577 } 1584 }
1578 } // NOLINT(readability/fn_size) 1585 } // NOLINT(readability/fn_size)
1579 1586
1580 1587
1581 #define UNSUPPORTED_COND(opcode, condition) \ 1588 #define UNSUPPORTED_COND(opcode, condition) \
1582 OFStream out(stdout); \ 1589 OFStream out(stdout); \
1583 out << "Unsupported " << #opcode << " condition: \"" << condition << "\""; \ 1590 out << "Unsupported " << #opcode << " condition: \"" << condition << "\""; \
1584 UNIMPLEMENTED(); 1591 UNIMPLEMENTED();
1585 1592
1586 static bool convertCondition(FlagsCondition condition, Condition& cc) { 1593 static bool convertCondition(FlagsCondition condition, Condition& cc) {
(...skipping 608 matching lines...) Expand 10 before | Expand all | Expand 10 after
2195 padding_size -= v8::internal::Assembler::kInstrSize; 2202 padding_size -= v8::internal::Assembler::kInstrSize;
2196 } 2203 }
2197 } 2204 }
2198 } 2205 }
2199 2206
2200 #undef __ 2207 #undef __
2201 2208
2202 } // namespace compiler 2209 } // namespace compiler
2203 } // namespace internal 2210 } // namespace internal
2204 } // namespace v8 2211 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/mips/instruction-selector-mips.cc ('k') | src/compiler/mips64/instruction-selector-mips64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698