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

Side by Side Diff: src/compiler/mips/code-generator-mips.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
« no previous file with comments | « src/compiler/machine-operator.cc ('k') | src/compiler/mips/instruction-selector-mips.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 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 1306 matching lines...) Expand 10 before | Expand all | Expand 10 after
1317 case kCheckedStoreFloat32: 1317 case kCheckedStoreFloat32:
1318 ASSEMBLE_CHECKED_STORE_FLOAT(Single, swc1); 1318 ASSEMBLE_CHECKED_STORE_FLOAT(Single, swc1);
1319 break; 1319 break;
1320 case kCheckedStoreFloat64: 1320 case kCheckedStoreFloat64:
1321 ASSEMBLE_CHECKED_STORE_FLOAT(Double, sdc1); 1321 ASSEMBLE_CHECKED_STORE_FLOAT(Double, sdc1);
1322 break; 1322 break;
1323 case kCheckedLoadWord64: 1323 case kCheckedLoadWord64:
1324 case kCheckedStoreWord64: 1324 case kCheckedStoreWord64:
1325 UNREACHABLE(); // currently unsupported checked int64 load/store. 1325 UNREACHABLE(); // currently unsupported checked int64 load/store.
1326 break; 1326 break;
1327 case kAtomicLoadInt8:
1328 case kAtomicLoadUint8:
1329 case kAtomicLoadInt16:
1330 case kAtomicLoadUint16:
1331 case kAtomicLoadWord32:
1332 UNIMPLEMENTED();
1333 break;
1327 } 1334 }
1328 } // NOLINT(readability/fn_size) 1335 } // NOLINT(readability/fn_size)
1329 1336
1330 1337
1331 #define UNSUPPORTED_COND(opcode, condition) \ 1338 #define UNSUPPORTED_COND(opcode, condition) \
1332 OFStream out(stdout); \ 1339 OFStream out(stdout); \
1333 out << "Unsupported " << #opcode << " condition: \"" << condition << "\""; \ 1340 out << "Unsupported " << #opcode << " condition: \"" << condition << "\""; \
1334 UNIMPLEMENTED(); 1341 UNIMPLEMENTED();
1335 1342
1336 static bool convertCondition(FlagsCondition condition, Condition& cc) { 1343 static bool convertCondition(FlagsCondition condition, Condition& cc) {
(...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after
1931 padding_size -= v8::internal::Assembler::kInstrSize; 1938 padding_size -= v8::internal::Assembler::kInstrSize;
1932 } 1939 }
1933 } 1940 }
1934 } 1941 }
1935 1942
1936 #undef __ 1943 #undef __
1937 1944
1938 } // namespace compiler 1945 } // namespace compiler
1939 } // namespace internal 1946 } // namespace internal
1940 } // namespace v8 1947 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/machine-operator.cc ('k') | src/compiler/mips/instruction-selector-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698