@@ -3193,7 +3193,7 @@ class AsmStmt : public Stmt {
3193
3193
// / getOutputConstraint - Return the constraint string for the specified
3194
3194
// / output operand. All output constraints are known to be non-empty (either
3195
3195
// / '=' or '+').
3196
- StringRef getOutputConstraint (unsigned i) const ;
3196
+ std::string getOutputConstraint (unsigned i) const ;
3197
3197
3198
3198
// / isOutputPlusConstraint - Return true if the specified output constraint
3199
3199
// / is a "+" constraint (which is both an input and an output) or false if it
@@ -3214,14 +3214,14 @@ class AsmStmt : public Stmt {
3214
3214
3215
3215
// / getInputConstraint - Return the specified input constraint. Unlike output
3216
3216
// / constraints, these can be empty.
3217
- StringRef getInputConstraint (unsigned i) const ;
3217
+ std::string getInputConstraint (unsigned i) const ;
3218
3218
3219
3219
const Expr *getInputExpr (unsigned i) const ;
3220
3220
3221
3221
// ===--- Other ---===//
3222
3222
3223
3223
unsigned getNumClobbers () const { return NumClobbers; }
3224
- StringRef getClobber (unsigned i) const ;
3224
+ std::string getClobber (unsigned i) const ;
3225
3225
3226
3226
static bool classof (const Stmt *T) {
3227
3227
return T->getStmtClass () == GCCAsmStmtClass ||
@@ -3302,21 +3302,20 @@ class GCCAsmStmt : public AsmStmt {
3302
3302
friend class ASTStmtReader ;
3303
3303
3304
3304
SourceLocation RParenLoc;
3305
- StringLiteral *AsmStr;
3305
+ Expr *AsmStr;
3306
3306
3307
3307
// FIXME: If we wanted to, we could allocate all of these in one big array.
3308
- StringLiteral **Constraints = nullptr ;
3309
- StringLiteral **Clobbers = nullptr ;
3308
+ Expr **Constraints = nullptr ;
3309
+ Expr **Clobbers = nullptr ;
3310
3310
IdentifierInfo **Names = nullptr ;
3311
3311
unsigned NumLabels = 0 ;
3312
3312
3313
3313
public:
3314
3314
GCCAsmStmt (const ASTContext &C, SourceLocation asmloc, bool issimple,
3315
3315
bool isvolatile, unsigned numoutputs, unsigned numinputs,
3316
- IdentifierInfo **names, StringLiteral **constraints, Expr **exprs,
3317
- StringLiteral *asmstr, unsigned numclobbers,
3318
- StringLiteral **clobbers, unsigned numlabels,
3319
- SourceLocation rparenloc);
3316
+ IdentifierInfo **names, Expr **constraints, Expr **exprs,
3317
+ Expr *asmstr, unsigned numclobbers, Expr **clobbers,
3318
+ unsigned numlabels, SourceLocation rparenloc);
3320
3319
3321
3320
// / Build an empty inline-assembly statement.
3322
3321
explicit GCCAsmStmt (EmptyShell Empty) : AsmStmt(GCCAsmStmtClass, Empty) {}
@@ -3326,9 +3325,11 @@ class GCCAsmStmt : public AsmStmt {
3326
3325
3327
3326
// ===--- Asm String Analysis ---===//
3328
3327
3329
- const StringLiteral *getAsmString () const { return AsmStr; }
3330
- StringLiteral *getAsmString () { return AsmStr; }
3331
- void setAsmString (StringLiteral *E) { AsmStr = E; }
3328
+ const Expr *getAsmStringExpr () const { return AsmStr; }
3329
+ Expr *getAsmStringExpr () { return AsmStr; }
3330
+ void setAsmStringExpr (Expr *E) { AsmStr = E; }
3331
+
3332
+ std::string getAsmString () const ;
3332
3333
3333
3334
// / AsmStringPiece - this is part of a decomposed asm string specification
3334
3335
// / (for use with the AnalyzeAsmString function below). An asm string is
@@ -3397,14 +3398,12 @@ class GCCAsmStmt : public AsmStmt {
3397
3398
return {};
3398
3399
}
3399
3400
3400
- StringRef getOutputConstraint (unsigned i) const ;
3401
+ std::string getOutputConstraint (unsigned i) const ;
3401
3402
3402
- const StringLiteral *getOutputConstraintLiteral (unsigned i) const {
3403
- return Constraints[i];
3404
- }
3405
- StringLiteral *getOutputConstraintLiteral (unsigned i) {
3403
+ const Expr *getOutputConstraintExpr (unsigned i) const {
3406
3404
return Constraints[i];
3407
3405
}
3406
+ Expr *getOutputConstraintExpr (unsigned i) { return Constraints[i]; }
3408
3407
3409
3408
Expr *getOutputExpr (unsigned i);
3410
3409
@@ -3425,12 +3424,12 @@ class GCCAsmStmt : public AsmStmt {
3425
3424
return {};
3426
3425
}
3427
3426
3428
- StringRef getInputConstraint (unsigned i) const ;
3427
+ std::string getInputConstraint (unsigned i) const ;
3429
3428
3430
- const StringLiteral * getInputConstraintLiteral (unsigned i) const {
3429
+ const Expr * getInputConstraintExpr (unsigned i) const {
3431
3430
return Constraints[i + NumOutputs];
3432
3431
}
3433
- StringLiteral * getInputConstraintLiteral (unsigned i) {
3432
+ Expr * getInputConstraintExpr (unsigned i) {
3434
3433
return Constraints[i + NumOutputs];
3435
3434
}
3436
3435
@@ -3441,6 +3440,8 @@ class GCCAsmStmt : public AsmStmt {
3441
3440
return const_cast <GCCAsmStmt*>(this )->getInputExpr (i);
3442
3441
}
3443
3442
3443
+ static std::string ExtractStringFromGCCAsmStmtComponent (const Expr *E);
3444
+
3444
3445
// ===--- Labels ---===//
3445
3446
3446
3447
bool isAsmGoto () const {
@@ -3489,12 +3490,9 @@ class GCCAsmStmt : public AsmStmt {
3489
3490
private:
3490
3491
void setOutputsAndInputsAndClobbers (const ASTContext &C,
3491
3492
IdentifierInfo **Names,
3492
- StringLiteral **Constraints,
3493
- Stmt **Exprs,
3494
- unsigned NumOutputs,
3495
- unsigned NumInputs,
3496
- unsigned NumLabels,
3497
- StringLiteral **Clobbers,
3493
+ Expr **Constraints, Stmt **Exprs,
3494
+ unsigned NumOutputs, unsigned NumInputs,
3495
+ unsigned NumLabels, Expr **Clobbers,
3498
3496
unsigned NumClobbers);
3499
3497
3500
3498
public:
@@ -3505,12 +3503,10 @@ class GCCAsmStmt : public AsmStmt {
3505
3503
// / This returns -1 if the operand name is invalid.
3506
3504
int getNamedOperand (StringRef SymbolicName) const ;
3507
3505
3508
- StringRef getClobber (unsigned i) const ;
3506
+ std::string getClobber (unsigned i) const ;
3509
3507
3510
- StringLiteral *getClobberStringLiteral (unsigned i) { return Clobbers[i]; }
3511
- const StringLiteral *getClobberStringLiteral (unsigned i) const {
3512
- return Clobbers[i];
3513
- }
3508
+ Expr *getClobberExpr (unsigned i) { return Clobbers[i]; }
3509
+ const Expr *getClobberExpr (unsigned i) const { return Clobbers[i]; }
3514
3510
3515
3511
SourceLocation getBeginLoc () const LLVM_READONLY { return AsmLoc; }
3516
3512
SourceLocation getEndLoc () const LLVM_READONLY { return RParenLoc; }
0 commit comments