Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 1 | //===-- WebAssemblyMCAsmInfo.cpp - WebAssembly asm properties -------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | /// |
| 10 | /// \file |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 11 | /// This file contains the declarations of the WebAssemblyMCAsmInfo |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 12 | /// properties. |
| 13 | /// |
| 14 | //===----------------------------------------------------------------------===// |
| 15 | |
| 16 | #include "WebAssemblyMCAsmInfo.h" |
| 17 | #include "llvm/ADT/Triple.h" |
Sam Clegg | cf2a9e2 | 2018-07-16 23:09:29 +0000 | [diff] [blame^] | 18 | |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 19 | using namespace llvm; |
| 20 | |
| 21 | #define DEBUG_TYPE "wasm-mc-asm-info" |
| 22 | |
Dan Gohman | 18eafb6 | 2017-02-22 01:23:18 +0000 | [diff] [blame] | 23 | WebAssemblyMCAsmInfo::~WebAssemblyMCAsmInfo() {} |
| 24 | |
| 25 | WebAssemblyMCAsmInfo::WebAssemblyMCAsmInfo(const Triple &T) { |
Benjamin Kramer | 54c781a | 2017-04-17 19:08:41 +0000 | [diff] [blame] | 26 | CodePointerSize = CalleeSaveStackSlotSize = T.isArch64Bit() ? 8 : 4; |
Dan Gohman | 18eafb6 | 2017-02-22 01:23:18 +0000 | [diff] [blame] | 27 | |
| 28 | // TODO: What should MaxInstLength be? |
| 29 | |
| 30 | UseDataRegionDirectives = true; |
| 31 | |
| 32 | // Use .skip instead of .zero because .zero is confusing when used with two |
| 33 | // arguments (it doesn't actually zero things out). |
| 34 | ZeroDirective = "\t.skip\t"; |
| 35 | |
| 36 | Data8bitsDirective = "\t.int8\t"; |
| 37 | Data16bitsDirective = "\t.int16\t"; |
| 38 | Data32bitsDirective = "\t.int32\t"; |
| 39 | Data64bitsDirective = "\t.int64\t"; |
| 40 | |
| 41 | AlignmentIsInBytes = false; |
| 42 | COMMDirectiveAlignmentIsInBytes = false; |
| 43 | LCOMMDirectiveAlignmentType = LCOMM::Log2Alignment; |
| 44 | |
| 45 | SupportsDebugInformation = true; |
| 46 | |
Dan Gohman | 18eafb6 | 2017-02-22 01:23:18 +0000 | [diff] [blame] | 47 | // TODO: UseIntegratedAssembler? |
| 48 | } |