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

Side by Side Diff: runtime/vm/assembler.h

Issue 1858283002: Initial SIMDBC interpreter. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: 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 | « runtime/tests/vm/vm.status ('k') | runtime/vm/assembler_dbc.h » ('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 (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 #ifndef VM_ASSEMBLER_H_ 5 #ifndef VM_ASSEMBLER_H_
6 #define VM_ASSEMBLER_H_ 6 #define VM_ASSEMBLER_H_
7 7
8 #include "platform/assert.h" 8 #include "platform/assert.h"
9 #include "vm/allocation.h" 9 #include "vm/allocation.h"
10 #include "vm/globals.h" 10 #include "vm/globals.h"
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 #if defined(TARGET_ARCH_IA32) 333 #if defined(TARGET_ARCH_IA32)
334 #include "vm/assembler_ia32.h" 334 #include "vm/assembler_ia32.h"
335 #elif defined(TARGET_ARCH_X64) 335 #elif defined(TARGET_ARCH_X64)
336 #include "vm/assembler_x64.h" 336 #include "vm/assembler_x64.h"
337 #elif defined(TARGET_ARCH_ARM) 337 #elif defined(TARGET_ARCH_ARM)
338 #include "vm/assembler_arm.h" 338 #include "vm/assembler_arm.h"
339 #elif defined(TARGET_ARCH_ARM64) 339 #elif defined(TARGET_ARCH_ARM64)
340 #include "vm/assembler_arm64.h" 340 #include "vm/assembler_arm64.h"
341 #elif defined(TARGET_ARCH_MIPS) 341 #elif defined(TARGET_ARCH_MIPS)
342 #include "vm/assembler_mips.h" 342 #include "vm/assembler_mips.h"
343 #elif defined(TARGET_ARCH_DBC)
344 #include "vm/assembler_dbc.h"
343 #else 345 #else
344 #error Unknown architecture. 346 #error Unknown architecture.
345 #endif 347 #endif
346 348
347 #endif // VM_ASSEMBLER_H_ 349 #endif // VM_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « runtime/tests/vm/vm.status ('k') | runtime/vm/assembler_dbc.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698