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

/freebsd-13-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-13-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-13-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);
348 NumClobbers, Clobbers, NumLabels, RParenLoc);
370 NumClobbers, Clobbers, NumLabels, RParenLoc);
458 StringLiteral *Literal = Clobbers[i];
469 NumClobbers, Clobbers, NumLabels, RParenLoc);
476 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.h1424 Expr *AsmString, MultiExprArg Clobbers,
1429 AsmString, Clobbers, NumLabels, RParenLoc);
1441 ArrayRef<StringRef> Clobbers,
1446 Constraints, Clobbers, Exprs, EndLoc);
7500 SmallVector<Expr*, 8> Clobbers; local
7555 Clobbers.push_back(S->getClobberStringLiteral(I));
7563 Clobbers, S->getNumLabels(),
1420 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
1436 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-13-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.cpp1923 SmallVector<std::pair<MCPhysReg, const MachineOperand*>,2> Clobbers; local
1925 Clobbers.clear();
1926 LPR.stepForward(*R, Clobbers);
H A DHexagonInstrInfo.cpp794 SmallVector<std::pair<MCPhysReg, const MachineOperand*>,2> Clobbers; local
799 Clobbers.clear();
800 Regs.stepForward(*I, Clobbers);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseStmtAsm.cpp632 SmallVector<std::string, 4> Clobbers;
634 NumInputs, OpExprs, Constraints, Clobbers,
640 llvm::erase_if(Clobbers, [](const std::string &C) {
645 ClobberRefs.insert(ClobberRefs.end(), Clobbers.begin(), Clobbers.end());
757 ExprVector Clobbers;
765 AsmString.get(), Clobbers, /*NumLabels*/ 0, T.getCloseLocation());
816 Clobbers.push_back(Clobber.get());
864 AsmString.get(), Clobbers, NumLabels,
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DStmt.cpp479 StringLiteral **Clobbers,
502 C.Deallocate(this->Clobbers);
503 this->Clobbers = new (C) StringLiteral*[NumClobbers];
504 std::copy(Clobbers, Clobbers + NumClobbers, this->Clobbers);
775 Clobbers = new (C) StringLiteral*[NumClobbers];
776 std::copy(clobbers, clobbers + NumClobbers, Clobbers);
821 Clobbers = new (C) StringRef[NumClobbers];
823 std::transform(clobbers.begin(), clobbers.end(), Clobbers,
472 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.cpp5900 SmallVector<StringLiteral *, 4> Clobbers;
5903 Clobbers.push_back(*ClobberOrErr);
5959 Clobbers.data(),
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/MC/MCParser/
H A DMCAsmParser.h187 SmallVectorImpl<std::string> &Clobbers, const MCInstrInfo *MII,
/freebsd-13-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-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h2927 StringLiteral **Clobbers = nullptr; member in class:clang::GCCAsmStmt
3115 StringLiteral **Clobbers,
3128 StringLiteral *getClobberStringLiteral(unsigned i) { return Clobbers[i]; }
3130 return Clobbers[i];
3152 StringRef *Clobbers = nullptr; member in class:clang::MSAsmStmt
3215 return llvm::makeArrayRef(Clobbers, NumClobbers);
3228 ArrayRef<Expr*> Exprs, ArrayRef<StringRef> Clobbers);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DMemorySSA.cpp862 SmallVector<TerminatedPath, 4> Clobbers; local
866 Clobbers.push_back({WR.Result, Paused});
887 Clobbers.push_back(TP);
893 if (!Clobbers.empty()) {
894 MoveDominatedPathToEnd(Clobbers);
895 TerminatedPath Result = Clobbers.pop_back_val();
896 return {Result, std::move(Clobbers)};
/freebsd-13-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp387 SmallVector<StringLiteral*, 16> Clobbers; local
389 Clobbers.push_back(cast_or_null<StringLiteral>(Record.readSubStmt()));
399 Clobbers.data(), NumClobbers);
421 SmallVector<StringRef, 16> Clobbers; local
423 Clobbers.reserve(S->NumClobbers);
426 Clobbers.push_back(ClobbersData.back());
444 Constraints, Exprs, Clobbers);
/freebsd-13-stable/sys/crypto/openssl/aarch64/
H A Dvpaes-armv8.S123 ## Clobbers %xmm1-%xmm5, %r9, %r10, %r11, %rax
821 ## Clobbers %xmm1-%xmm4, %r11.
877 ## Clobbers %xmm1, %xmm2
913 ## Clobbers xmm1-xmm5
/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmParser.cpp241 SmallVectorImpl<std::string> &Clobbers,
5787 SmallVectorImpl<std::string> &Clobbers, const MCInstrInfo *MII,
5892 Clobbers.assign(ClobberRegs.size(), std::string());
5894 raw_string_ostream OS(Clobbers[I]);
5783 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
H A DMasmParser.cpp502 SmallVectorImpl<std::string> &Clobbers,
6608 SmallVectorImpl<std::string> &Clobbers, const MCInstrInfo *MII,
6713 Clobbers.assign(ClobberRegs.size(), std::string());
6715 raw_string_ostream OS(Clobbers[I]);
6604 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-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrInfo.cpp2945 SmallVector<std::pair<MCPhysReg, const MachineOperand *>, 8> Clobbers; local
2946 LiveRegs.stepForward(*MIB, Clobbers);
2947 for (const auto &C : Clobbers) {
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h4479 Expr *AsmString, MultiExprArg Clobbers,
4498 ArrayRef<StringRef> Clobbers,

Completed in 519 milliseconds