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

Side by Side Diff: src/compiler/machine-operator.cc

Issue 2258073002: [Turbofan]: Use new MachineTypes in access-builder. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: A bit of refactoring. Created 4 years, 3 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/linkage.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/compiler/machine-operator.h" 5 #include "src/compiler/machine-operator.h"
6 6
7 #include "src/base/lazy-instance.h" 7 #include "src/base/lazy-instance.h"
8 #include "src/compiler/opcodes.h" 8 #include "src/compiler/opcodes.h"
9 #include "src/compiler/operator.h" 9 #include "src/compiler/operator.h"
10 10
(...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after
415 V(Simd128) \ 415 V(Simd128) \
416 V(Int8) \ 416 V(Int8) \
417 V(Uint8) \ 417 V(Uint8) \
418 V(Int16) \ 418 V(Int16) \
419 V(Uint16) \ 419 V(Uint16) \
420 V(Int32) \ 420 V(Int32) \
421 V(Uint32) \ 421 V(Uint32) \
422 V(Int64) \ 422 V(Int64) \
423 V(Uint64) \ 423 V(Uint64) \
424 V(Pointer) \ 424 V(Pointer) \
425 V(TaggedSigned) \
426 V(TaggedPointer) \
425 V(AnyTagged) 427 V(AnyTagged)
426 428
427 #define MACHINE_REPRESENTATION_LIST(V) \ 429 #define MACHINE_REPRESENTATION_LIST(V) \
428 V(kFloat32) \ 430 V(kFloat32) \
429 V(kFloat64) \ 431 V(kFloat64) \
430 V(kSimd128) \ 432 V(kSimd128) \
431 V(kWord8) \ 433 V(kWord8) \
432 V(kWord16) \ 434 V(kWord16) \
433 V(kWord32) \ 435 V(kWord32) \
434 V(kWord64) \ 436 V(kWord64) \
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
790 } 792 }
791 ATOMIC_REPRESENTATION_LIST(STORE) 793 ATOMIC_REPRESENTATION_LIST(STORE)
792 #undef STORE 794 #undef STORE
793 UNREACHABLE(); 795 UNREACHABLE();
794 return nullptr; 796 return nullptr;
795 } 797 }
796 798
797 } // namespace compiler 799 } // namespace compiler
798 } // namespace internal 800 } // namespace internal
799 } // namespace v8 801 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/linkage.cc ('k') | src/compiler/mips/instruction-selector-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698