Searched defs:clobbers (Results 1 - 4 of 4) sorted by relevance

/external/clang/test/PCH/
H A Dasm.h10 void clobbers() { function
/external/clang/test/Sema/
H A Dasm.c23 void clobbers() { function
/external/clang/lib/Sema/
H A DSemaStmtAsm.cpp81 Expr *asmString, MultiExprArg clobbers,
83 unsigned NumClobbers = clobbers.size();
87 StringLiteral **Clobbers = reinterpret_cast<StringLiteral**>(clobbers.data());
190 // Check that the clobbers are valid.
77 ActOnGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple, bool IsVolatile, unsigned NumOutputs, unsigned NumInputs, IdentifierInfo **Names, MultiExprArg constraints, MultiExprArg Exprs, Expr *asmString, MultiExprArg clobbers, SourceLocation RParenLoc) argument
/external/clang/lib/AST/
H A DStmt.cpp633 StringLiteral **clobbers, SourceLocation rparenloc)
649 std::copy(clobbers, clobbers + NumClobbers, Clobbers);
657 StringRef asmstr, ArrayRef<StringRef> clobbers,
660 numinputs, clobbers.size()), LBraceLoc(lbraceloc),
663 initialize(C, asmstr, asmtoks, constraints, exprs, clobbers);
677 ArrayRef<StringRef> clobbers) {
679 assert(NumClobbers == clobbers.size());
703 Clobbers[i] = copyIntoContext(C, clobbers[i]);
628 GCCAsmStmt(const ASTContext &C, SourceLocation asmloc, bool issimple, bool isvolatile, unsigned numoutputs, unsigned numinputs, IdentifierInfo **names, StringLiteral **constraints, Expr **exprs, StringLiteral *asmstr, unsigned numclobbers, StringLiteral **clobbers, SourceLocation rparenloc) argument
652 MSAsmStmt(const ASTContext &C, SourceLocation asmloc, SourceLocation lbraceloc, bool issimple, bool isvolatile, ArrayRef<Token> asmtoks, unsigned numoutputs, unsigned numinputs, ArrayRef<StringRef> constraints, ArrayRef<Expr*> exprs, StringRef asmstr, ArrayRef<StringRef> clobbers, SourceLocation endloc) argument
673 initialize(const ASTContext &C, StringRef asmstr, ArrayRef<Token> asmtoks, ArrayRef<StringRef> constraints, ArrayRef<Expr*> exprs, ArrayRef<StringRef> clobbers) argument

Completed in 265 milliseconds