/external/clang/lib/Sema/ |
D | SemaStmtAsm.cpp | 87 StringLiteral **Clobbers = reinterpret_cast<StringLiteral**>(clobbers.data()); in ActOnGCCAsmStmt() local 192 StringLiteral *Literal = Clobbers[i]; in ActOnGCCAsmStmt() 207 AsmString, NumClobbers, Clobbers, RParenLoc); in ActOnGCCAsmStmt() 477 ArrayRef<StringRef> Clobbers, in ActOnMSAsmStmt() argument 485 Clobbers, EndLoc); in ActOnMSAsmStmt()
|
D | TreeTransform.h | 1195 Expr *AsmString, MultiExprArg Clobbers, in RebuildGCCAsmStmt() argument 1199 AsmString, Clobbers, RParenLoc); in RebuildGCCAsmStmt() 1211 ArrayRef<StringRef> Clobbers, in RebuildMSAsmStmt() argument 1216 Constraints, Clobbers, Exprs, EndLoc); in RebuildMSAsmStmt() 5686 SmallVector<Expr*, 8> Clobbers; in TransformGCCAsmStmt() local 5731 Clobbers.push_back(S->getClobberStringLiteral(I)); in TransformGCCAsmStmt() 5739 Clobbers, S->getRParenLoc()); in TransformGCCAsmStmt()
|
/external/clang/lib/AST/ |
D | Stmt.cpp | 394 StringLiteral **Clobbers, in setOutputsAndInputsAndClobbers() argument 414 C.Deallocate(this->Clobbers); in setOutputsAndInputsAndClobbers() 415 this->Clobbers = new (C) StringLiteral*[NumClobbers]; in setOutputsAndInputsAndClobbers() 416 std::copy(Clobbers, Clobbers + NumClobbers, this->Clobbers); in setOutputsAndInputsAndClobbers() 648 Clobbers = new (C) StringLiteral*[NumClobbers]; in GCCAsmStmt() 649 std::copy(clobbers, clobbers + NumClobbers, Clobbers); in GCCAsmStmt() 701 Clobbers = new (C) StringRef[NumClobbers]; in initialize() 704 Clobbers[i] = copyIntoContext(C, clobbers[i]); in initialize()
|
/external/llvm/lib/CodeGen/ |
D | MachineInstrBundle.cpp | 292 PRI.Clobbers = true; // Regmask clobbers Reg. in analyzePhysReg() 323 PRI.Clobbers = true; // Reg or an overlapping reg is defined. in analyzePhysReg()
|
D | MachineBasicBlock.cpp | 1166 if (Analysis.Kills || Analysis.Clobbers) in computeRegisterLiveness() 1204 else if (Analysis.Clobbers || Analysis.Defines) in computeRegisterLiveness()
|
/external/llvm/include/llvm/CodeGen/ |
D | MachineInstrBundle.h | 172 bool Clobbers; member
|
/external/clang/include/clang/AST/ |
D | Stmt.h | 1503 StringLiteral **Clobbers; variable 1517 Constraints(0), Clobbers(0), Names(0) { } in GCCAsmStmt() 1644 StringLiteral **Clobbers, 1656 StringLiteral *getClobberStringLiteral(unsigned i) { return Clobbers[i]; } in getClobberStringLiteral() 1658 return Clobbers[i]; in getClobberStringLiteral() 1679 StringRef *Clobbers; variable 1693 NumAsmToks(0), AsmToks(0), Constraints(0), Clobbers(0) { } in MSAsmStmt() 1744 return ArrayRef<StringRef>(Clobbers, NumClobbers); in getClobbers() 1759 ArrayRef<StringRef> Clobbers);
|
/external/llvm/include/llvm/MC/MCParser/ |
D | MCAsmParser.h | 116 SmallVectorImpl<std::string> &Clobbers,
|
/external/clang/lib/Parse/ |
D | ParseStmt.cpp | 2135 SmallVector<std::string, 4> Clobbers; in ParseMicrosoftAsmStatement() local 2138 Clobbers, MII, IP, Callback)) in ParseMicrosoftAsmStatement() 2142 unsigned NumClobbers = Clobbers.size(); in ParseMicrosoftAsmStatement() 2145 ClobberRefs[i] = StringRef(Clobbers[i]); in ParseMicrosoftAsmStatement() 2232 ExprVector Clobbers; in ParseAsmStatement() local 2240 Clobbers, T.getCloseLocation()); in ParseAsmStatement() 2292 Clobbers.push_back(Clobber.release()); in ParseAsmStatement() 2303 AsmString.take(), Clobbers, in ParseAsmStatement()
|
/external/llvm/test/Transforms/EarlyCSE/ |
D | basic.ll | 69 ; Clobbers V1
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 329 SmallVector<StringLiteral*, 16> Clobbers; in VisitGCCAsmStmt() local 331 Clobbers.push_back(cast_or_null<StringLiteral>(Reader.ReadSubStmt())); in VisitGCCAsmStmt() 336 Clobbers.data(), NumClobbers); in VisitGCCAsmStmt() 358 SmallVector<StringRef, 16> Clobbers; in VisitMSAsmStmt() local 360 Clobbers.reserve(S->NumClobbers); in VisitMSAsmStmt() 363 Clobbers.push_back(ClobbersData.back()); in VisitMSAsmStmt() 381 Constraints, Exprs, Clobbers); in VisitMSAsmStmt()
|
/external/llvm/lib/MC/MCParser/ |
D | AsmParser.cpp | 227 SmallVectorImpl<std::string> &Clobbers, 4098 SmallVectorImpl<std::string> &Clobbers, in parseMSInlineAsm() argument 4182 Clobbers.assign(ClobberRegs.size(), std::string()); in parseMSInlineAsm() 4184 raw_string_ostream OS(Clobbers[I]); in parseMSInlineAsm()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 2903 Expr *AsmString, MultiExprArg Clobbers, 2918 ArrayRef<StringRef> Clobbers,
|