File: asm-gcc.cpp

package info (click to toggle)
ldc 1%3A1.30.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 59,248 kB
  • sloc: cpp: 61,598; ansic: 14,545; sh: 1,014; makefile: 972; asm: 510; objc: 135; exp: 48; python: 12
file content (251 lines) | stat: -rw-r--r-- 6,882 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
//===-- asm-gcc.cpp -------------------------------------------------------===//
//
//                         LDC – the LLVM D compiler
//
// Converts a GDC/GCC-style inline assembly statement to an LLVM inline
// assembler expression.
//
//===----------------------------------------------------------------------===//

#include "dmd/errors.h"
#include "dmd/expression.h"
#include "dmd/statement.h"
#include "gen/irstate.h"
#include "gen/llvm.h"
#include "gen/llvmhelpers.h"
#include "gen/logger.h"

namespace {
llvm::StringRef peekString(StringExp *se) {
  DString slice = se->peekString();
  return {slice.ptr, slice.length};
}

// Translates a GCC inline asm template string to LLVM's expected format.
std::string translateTemplate(GccAsmStatement *stmt) {
  const auto insn = peekString(stmt->insn->isStringExp());
  const auto N = insn.size();

  std::string result;
  result.reserve(static_cast<size_t>(N * 1.2));

  for (size_t i = 0; i < N; ++i) {
    const char c = insn[i];
    switch (c) {
    case '$':
      result += "$$"; // escape for LLVM: $ => $$
      break;
    case '%':
      if (i < N - 1 && insn[i + 1] == '%') { // unescape for LLVM: %% => %
        result += '%';
        ++i;
      } else {
        result += '$'; // e.g., %0 => $0
      }
      break;
    default:
      result += c;
      break;
    }
  }

  return result;
}

class ConstraintsBuilder {
  bool isAnyX86;
  std::ostringstream str; // LLVM constraints string being built
  LLSmallVector<bool, 8> _isIndirectOperand;

  // Appends a constraint string expression with an optional prefix.
  // Returns true if the string describes an indirect operand.
  bool append(Expression *e, char prefix = 0) {
    auto se = e->isStringExp();
    assert(se);
    llvm::StringRef code = peekString(se);
    assert(!code.empty());

    // commit prefix and strip from `code`, if present
    if (prefix) {
      str << prefix;
      if (code[0] == prefix)
        code = code.substr(1);
    }

    // commit any modifier and strip from `code`
    bool isIndirect = false;
    if (code.startswith("&")) { // early clobber
      str << '&';
      code = code.substr(1);
    } else if (code.startswith("*")) { // indirect in/output
      isIndirect = true; // delay the commit
      code = code.substr(1);
    }

    const std::string name = translateName(code, isIndirect);

    if (isIndirect)
      str << '*';
    str << name;
    str << ',';

    return isIndirect;
  }

  // Might set `isIndirect` to true (but never resets to false).
  std::string translateName(llvm::StringRef gccName, bool &isIndirect) const {
    // clang translates GCC `m` to LLVM `*m` (indirect operand)
    if (gccName == "m") {
      isIndirect = true;
      return "m";
    }

    // some variable-width x86[_64] GCC register names aren't supported by LLVM
    // directly
    if (isAnyX86 && gccName.size() == 1) {
      switch (gccName[0]) {
      case 'a':
        return "{ax}";
      case 'b':
        return "{bx}";
      case 'c':
        return "{cx}";
      case 'd':
        return "{dx}";
      case 'S':
        return "{si}";
      case 'D':
        return "{di}";
      default:
        break;
      }
    }

    return needsCurlyBraces(gccName) ? ("{" + gccName + "}").str()
                                     : gccName.str();
  }

  // Register names need to be enclosed in curly braces for LLVM.
  bool needsCurlyBraces(llvm::StringRef gccName) const {
    auto N = gccName.size();
    if (N == 1 || (N == 3 && gccName[0] == '^'))
      return false;
    return !gccName.contains('{');
  }

public:
  ConstraintsBuilder() {
    auto arch = global.params.targetTriple->getArch();
    isAnyX86 = (arch == llvm::Triple::x86 || arch == llvm::Triple::x86_64);
  }

  // Returns the final constraints string for LLVM for a GCC-style asm
  // statement.
  std::string build(GccAsmStatement *stmt) {
    str.clear();
    _isIndirectOperand.clear();

    if (auto c = stmt->constraints) {
      _isIndirectOperand.reserve(c->length);
      for (size_t i = 0; i < c->length; ++i) {
        bool isOutput = (i < stmt->outputargs);
        bool isIndirect = append((*c)[i], isOutput ? '=' : 0);
        _isIndirectOperand.push_back(isIndirect);
      }
    }

    if (stmt->clobbers) {
      for (auto e : *stmt->clobbers) {
        append(e, '~');
      }
    }

    // remove excessive comma
    std::string result = str.str();
    if (auto size = result.size())
      result.resize(size - 1);

    return result;
  }

  bool isIndirectOperand(size_t operandIndex) const {
    return _isIndirectOperand[operandIndex];
  }
};
}

void GccAsmStatement_toIR(GccAsmStatement *stmt, IRState *irs) {
  IF_LOG Logger::println("GccAsmStatement::toIR(): %s", stmt->loc.toChars());
  LOG_SCOPE;

  if (stmt->labels) {
    stmt->error(
        "goto labels for GCC-style asm statements are not supported yet");
    fatal();
  }
  if (stmt->names) {
    for (Identifier *name : *stmt->names) {
      if (name) {
        stmt->error("symbolic names for operands in GCC-style assembly are not "
                    "supported yet");
        fatal();
      }
    }
  }

  const std::string insn = translateTemplate(stmt);

  ConstraintsBuilder constraintsBuilder;
  const std::string constraints = constraintsBuilder.build(stmt);

  LLSmallVector<LLValue *, 8> outputLVals;
  LLSmallVector<LLType *, 8> outputTypes;
  LLSmallVector<LLValue *, 8> operands;
  if (stmt->args) {
    for (size_t i = 0; i < stmt->args->length; ++i) {
      Expression *e = (*stmt->args)[i];
      const bool isOutput = (i < stmt->outputargs);
      const bool isIndirect = constraintsBuilder.isIndirectOperand(i);

      if (isOutput) {
        assert(e->isLvalue() && "should have been caught by front-end");
        LLValue *lval = DtoLVal(e);
        if (isIndirect) {
          operands.push_back(lval);
        } else {
          outputLVals.push_back(lval);
          outputTypes.push_back(lval->getType()->getPointerElementType());
        }
      } else {
        if (isIndirect && !e->isLvalue()) {
          error(e->loc,
                "indirect `\"m\"` input operands require an lvalue, but `%s` "
                "is an rvalue",
                e->toChars());
          fatal();
        }

        LLValue *inputVal = isIndirect ? DtoLVal(e) : DtoRVal(e);
        operands.push_back(inputVal);
      }
    }
  }

  const size_t N = outputTypes.size();
  LLType *returnType =
      N == 0 ? llvm::Type::getVoidTy(irs->context())
             : N == 1 ? outputTypes[0]
                      : LLStructType::get(irs->context(), outputTypes);

  LLValue *rval =
      DtoInlineAsmExpr(stmt->loc, insn, constraints, operands, returnType);

  if (N == 1) {
    DtoStore(rval, outputLVals[0]);
  } else {
    for (size_t i = 0; i < N; ++i) {
      auto element = DtoExtractValue(rval, i);
      DtoStore(element, outputLVals[i]);
    }
  }
}