Searched refs:Clobbers (Results 1 - 19 of 19) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DLivePhysRegs.cpp32 SmallVectorImpl<std::pair<MCPhysReg, const MachineOperand*>> *Clobbers) {
36 if (Clobbers)
37 Clobbers->push_back(std::make_pair(*LRI, &MO));
81 SmallVectorImpl<std::pair<MCPhysReg, const MachineOperand*>> &Clobbers) {
91 Clobbers.push_back(std::make_pair(Reg, &*O));
99 removeRegsInMask(*O, &Clobbers);
103 for (auto Reg : Clobbers) {
31 removeRegsInMask(const MachineOperand &MO, SmallVectorImpl<std::pair<MCPhysReg, const MachineOperand*>> *Clobbers) argument
80 stepForward(const MachineInstr &MI, SmallVectorImpl<std::pair<MCPhysReg, const MachineOperand*>> &Clobbers) argument
H A DIfConversion.cpp1492 SmallVector<std::pair<MCPhysReg, const MachineOperand*>, 4> Clobbers; local
1493 Redefs.stepForward(MI, Clobbers);
1496 for (auto Clobber : Clobbers) {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DLivePhysRegs.h98 SmallVectorImpl<std::pair<MCPhysReg, const MachineOperand*>> *Clobbers =
129 SmallVectorImpl<std::pair<MCPhysReg, const MachineOperand*>> &Clobbers);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmtAsm.cpp212 StringLiteral **Clobbers, int NumClobbers,
228 StringRef Clobber = Clobbers[i]->getString();
236 return Clobbers[i]->getBeginLoc();
252 StringLiteral **Clobbers = reinterpret_cast<StringLiteral**>(clobbers.data()); local
279 NumClobbers, Clobbers, NumLabels, RParenLoc);
340 NumClobbers, Clobbers, NumLabels, RParenLoc);
362 NumClobbers, Clobbers, NumLabels, RParenLoc);
444 StringLiteral *Literal = Clobbers[i];
455 NumClobbers, Clobbers, NumLabels, RParenLoc);
462 AsmString, NumClobbers, Clobbers, NumLabel
211 getClobberConflictLocation(MultiExprArg Exprs, StringLiteral **Constraints, StringLiteral **Clobbers, int NumClobbers, unsigned NumLabels, const TargetInfo &Target, ASTContext &Cont) argument
[all...]
H A DTreeTransform.h1397 Expr *AsmString, MultiExprArg Clobbers,
1402 AsmString, Clobbers, NumLabels, RParenLoc);
1414 ArrayRef<StringRef> Clobbers,
1419 Constraints, Clobbers, Exprs, EndLoc);
7193 SmallVector<Expr*, 8> Clobbers; local
7248 Clobbers.push_back(S->getClobberStringLiteral(I));
7256 Clobbers, S->getNumLabels(),
1393 RebuildGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple, bool IsVolatile, unsigned NumOutputs, unsigned NumInputs, IdentifierInfo **Names, MultiExprArg Constraints, MultiExprArg Exprs, Expr *AsmString, MultiExprArg Clobbers, unsigned NumLabels, SourceLocation RParenLoc) argument
1409 RebuildMSAsmStmt(SourceLocation AsmLoc, SourceLocation LBraceLoc, ArrayRef<Token> AsmToks, StringRef AsmString, unsigned NumOutputs, unsigned NumInputs, ArrayRef<StringRef> Constraints, ArrayRef<StringRef> Clobbers, ArrayRef<Expr*> Exprs, SourceLocation EndLoc) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonBlockRanges.cpp313 RegisterSet Defs, Clobbers; local
335 Clobbers.clear();
344 Clobbers.insert(S);
366 Clobbers.insert(R);
372 Clobbers.erase(R);
384 for (RegisterRef S : Clobbers) {
385 // Clobbers should already be expanded into subregs.
H A DHexagonFrameLowering.cpp1775 SmallVector<std::pair<MCPhysReg, const MachineOperand*>,2> Clobbers; local
1777 Clobbers.clear();
1778 LPR.stepForward(*R, Clobbers);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseStmtAsm.cpp648 SmallVector<std::string, 4> Clobbers;
650 NumInputs, OpExprs, Constraints, Clobbers,
656 llvm::erase_if(Clobbers, [](const std::string &C) {
661 ClobberRefs.insert(ClobberRefs.end(), Clobbers.begin(), Clobbers.end());
765 ExprVector Clobbers;
773 Clobbers, /*NumLabels*/ 0,
831 Clobbers.push_back(Clobber.get());
879 Constraints, Exprs, AsmString.get(), Clobbers, NumLabels,
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DStmt.cpp480 StringLiteral **Clobbers,
503 C.Deallocate(this->Clobbers);
504 this->Clobbers = new (C) StringLiteral*[NumClobbers];
505 std::copy(Clobbers, Clobbers + NumClobbers, this->Clobbers);
776 Clobbers = new (C) StringLiteral*[NumClobbers];
777 std::copy(clobbers, clobbers + NumClobbers, Clobbers);
822 Clobbers = new (C) StringRef[NumClobbers];
824 std::transform(clobbers.begin(), clobbers.end(), Clobbers,
473 setOutputsAndInputsAndClobbers(const ASTContext &C, IdentifierInfo **Names, StringLiteral **Constraints, Stmt **Exprs, unsigned NumOutputs, unsigned NumInputs, unsigned NumLabels, StringLiteral **Clobbers, unsigned NumClobbers) argument
[all...]
H A DASTImporter.cpp5869 SmallVector<StringLiteral *, 4> Clobbers; local
5872 Clobbers.push_back(*ClobberOrErr);
5928 Clobbers.data(),
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCExpandISEL.cpp394 SmallVector<std::pair<MCPhysReg, const MachineOperand *>, 2> Clobbers; local
396 LPR.stepForward(MI, Clobbers);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCParser/
H A DMCAsmParser.h176 SmallVectorImpl<std::string> &Clobbers, const MCInstrInfo *MII,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIFixSGPRCopies.cpp431 SmallVector<MachineInstr*, 8> Clobbers;
450 Clobbers.push_back(&MI);
488 return (llvm::any_of(Clobbers, interferes)) ||
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h2901 StringLiteral **Clobbers = nullptr; member in class:clang::GCCAsmStmt
3089 StringLiteral **Clobbers,
3102 StringLiteral *getClobberStringLiteral(unsigned i) { return Clobbers[i]; }
3104 return Clobbers[i];
3126 StringRef *Clobbers = nullptr; member in class:clang::MSAsmStmt
3189 return llvm::makeArrayRef(Clobbers, NumClobbers);
3202 ArrayRef<Expr*> Exprs, ArrayRef<StringRef> Clobbers);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DMemorySSA.cpp861 SmallVector<TerminatedPath, 4> Clobbers; local
865 Clobbers.push_back({WR.Result, Paused});
886 Clobbers.push_back(TP);
892 if (!Clobbers.empty()) {
893 MoveDominatedPathToEnd(Clobbers);
894 TerminatedPath Result = Clobbers.pop_back_val();
895 return {Result, std::move(Clobbers)};
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp383 SmallVector<StringLiteral*, 16> Clobbers; local
385 Clobbers.push_back(cast_or_null<StringLiteral>(Record.readSubStmt()));
395 Clobbers.data(), NumClobbers);
417 SmallVector<StringRef, 16> Clobbers; local
419 Clobbers.reserve(S->NumClobbers);
422 Clobbers.push_back(ClobbersData.back());
440 Constraints, Exprs, Clobbers);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmParser.cpp243 SmallVectorImpl<std::string> &Clobbers,
5764 SmallVectorImpl<std::string> &Clobbers, const MCInstrInfo *MII,
5869 Clobbers.assign(ClobberRegs.size(), std::string());
5871 raw_string_ostream OS(Clobbers[I]);
5760 parseMSInlineAsm( void *AsmLoc, std::string &AsmString, unsigned &NumOutputs, unsigned &NumInputs, SmallVectorImpl<std::pair<void *, bool>> &OpDecls, SmallVectorImpl<std::string> &Constraints, SmallVectorImpl<std::string> &Clobbers, const MCInstrInfo *MII, const MCInstPrinter *IP, MCAsmParserSemaCallback &SI) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrInfo.cpp2472 SmallVector<std::pair<MCPhysReg, const MachineOperand *>, 8> Clobbers; local
2473 LiveRegs.stepForward(*MIB, Clobbers);
2474 for (const auto &C : Clobbers) {
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h4299 Expr *AsmString, MultiExprArg Clobbers,
4318 ArrayRef<StringRef> Clobbers,

Completed in 580 milliseconds