Home
last modified time | relevance | path

Searched refs:Clobbers (Results 1 – 25 of 56) sorted by relevance

123

/external/llvm/lib/CodeGen/
DLivePhysRegs.cpp31 SmallVectorImpl<std::pair<unsigned, const MachineOperand*>> *Clobbers) { in removeRegsInMask() argument
35 if (Clobbers) in removeRegsInMask()
36 Clobbers->push_back(std::make_pair(*LRI, &MO)); in removeRegsInMask()
75 SmallVectorImpl<std::pair<unsigned, const MachineOperand*>> &Clobbers) { in stepForward() argument
85 Clobbers.push_back(std::make_pair(Reg, &*O)); in stepForward()
93 removeRegsInMask(*O, &Clobbers); in stepForward()
97 for (auto Reg : Clobbers) { in stepForward()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DLivePhysRegs.cpp32 SmallVectorImpl<std::pair<MCPhysReg, const MachineOperand*>> *Clobbers) { in removeRegsInMask() argument
36 if (Clobbers) in removeRegsInMask()
37 Clobbers->push_back(std::make_pair(*LRI, &MO)); in removeRegsInMask()
81 SmallVectorImpl<std::pair<MCPhysReg, const MachineOperand*>> &Clobbers) { in stepForward() argument
91 Clobbers.push_back(std::make_pair(Reg, &*O)); in stepForward()
99 removeRegsInMask(*O, &Clobbers); in stepForward()
103 for (auto Reg : Clobbers) { in stepForward()
/external/clang/lib/Parse/
DParseStmtAsm.cpp612 SmallVector<std::string, 4> Clobbers; in ParseMicrosoftAsmStatement() local
614 NumInputs, OpExprs, Constraints, Clobbers, in ParseMicrosoftAsmStatement()
620 auto End = std::remove(Clobbers.begin(), Clobbers.end(), "fpsw"); in ParseMicrosoftAsmStatement()
621 Clobbers.erase(End, Clobbers.end()); in ParseMicrosoftAsmStatement()
624 ClobberRefs.insert(ClobberRefs.end(), Clobbers.begin(), Clobbers.end()); in ParseMicrosoftAsmStatement()
728 ExprVector Clobbers; in ParseAsmStatement() local
736 Clobbers, T.getCloseLocation()); in ParseAsmStatement()
784 Clobbers.push_back(Clobber.get()); in ParseAsmStatement()
795 Constraints, Exprs, AsmString.get(), Clobbers, T.getCloseLocation()); in ParseAsmStatement()
/external/llvm/include/llvm/CodeGen/
DLivePhysRegs.h93 SmallVectorImpl<std::pair<unsigned, const MachineOperand*>> *Clobbers);
118 SmallVectorImpl<std::pair<unsigned, const MachineOperand*>> &Clobbers);
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonBlockRanges.cpp313 RegisterSet Defs, Clobbers; in computeInitialLiveRanges() local
335 Clobbers.clear(); in computeInitialLiveRanges()
344 Clobbers.insert(S); in computeInitialLiveRanges()
366 Clobbers.insert(R); in computeInitialLiveRanges()
372 Clobbers.erase(R); in computeInitialLiveRanges()
384 for (RegisterRef S : Clobbers) { in computeInitialLiveRanges()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DLivePhysRegs.h98 SmallVectorImpl<std::pair<MCPhysReg, const MachineOperand*>> *Clobbers =
129 SmallVectorImpl<std::pair<MCPhysReg, const MachineOperand*>> &Clobbers);
/external/clang/lib/AST/
DStmt.cpp427 StringLiteral **Clobbers, in setOutputsAndInputsAndClobbers() argument
447 C.Deallocate(this->Clobbers); in setOutputsAndInputsAndClobbers()
448 this->Clobbers = new (C) StringLiteral*[NumClobbers]; in setOutputsAndInputsAndClobbers()
449 std::copy(Clobbers, Clobbers + NumClobbers, this->Clobbers); in setOutputsAndInputsAndClobbers()
711 Clobbers = new (C) StringLiteral*[NumClobbers]; in GCCAsmStmt()
712 std::copy(clobbers, clobbers + NumClobbers, Clobbers); in GCCAsmStmt()
758 Clobbers = new (C) StringRef[NumClobbers]; in initialize()
760 std::transform(clobbers.begin(), clobbers.end(), Clobbers, in initialize()
/external/clang/lib/Sema/
DSemaStmtAsm.cpp151 StringLiteral **Clobbers = reinterpret_cast<StringLiteral**>(clobbers.data()); in ActOnGCCAsmStmt() local
163 Constraints, Exprs.data(), AsmString, NumClobbers, Clobbers, RParenLoc); in ActOnGCCAsmStmt()
337 StringLiteral *Literal = Clobbers[i]; in ActOnGCCAsmStmt()
350 AsmString, NumClobbers, Clobbers, RParenLoc); in ActOnGCCAsmStmt()
728 ArrayRef<StringRef> Clobbers, in ActOnMSAsmStmt() argument
737 Clobbers, EndLoc); in ActOnMSAsmStmt()
/external/clang/include/clang/AST/
DStmt.h1571 StringLiteral **Clobbers; variable
1585 Constraints(nullptr), Clobbers(nullptr), Names(nullptr) { } in GCCAsmStmt()
1717 StringLiteral **Clobbers,
1729 StringLiteral *getClobberStringLiteral(unsigned i) { return Clobbers[i]; } in getClobberStringLiteral()
1731 return Clobbers[i]; in getClobberStringLiteral()
1752 StringRef *Clobbers; variable
1766 NumAsmToks(0), AsmToks(nullptr), Constraints(nullptr), Clobbers(nullptr) { } in MSAsmStmt()
1817 return llvm::makeArrayRef(Clobbers, NumClobbers); in getClobbers()
1829 ArrayRef<Expr*> Exprs, ArrayRef<StringRef> Clobbers);
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCExpandISEL.cpp394 SmallVector<std::pair<MCPhysReg, const MachineOperand *>, 2> Clobbers; in reorganizeBlockLayout() local
396 LPR.stepForward(MI, Clobbers); in reorganizeBlockLayout()
/external/llvm/include/llvm/MC/MCParser/
DMCAsmParser.h121 SmallVectorImpl<std::string> &Clobbers, const MCInstrInfo *MII,
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DSIFixSGPRCopies.cpp431 SmallVector<MachineInstr*, 8> Clobbers; in hoistAndMergeSGPRInits() local
450 Clobbers.push_back(&MI); in hoistAndMergeSGPRInits()
488 return (llvm::any_of(Clobbers, interferes)) || in hoistAndMergeSGPRInits()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DMemorySSA.cpp861 SmallVector<TerminatedPath, 4> Clobbers; in tryOptimizePhi() local
865 Clobbers.push_back({WR.Result, Paused}); in tryOptimizePhi()
886 Clobbers.push_back(TP); in tryOptimizePhi()
892 if (!Clobbers.empty()) { in tryOptimizePhi()
893 MoveDominatedPathToEnd(Clobbers); in tryOptimizePhi()
894 TerminatedPath Result = Clobbers.pop_back_val(); in tryOptimizePhi()
895 return {Result, std::move(Clobbers)}; in tryOptimizePhi()
/external/rust/crates/ring/pregenerated/
Dvpaes-armv8-linux64.S117 ## Clobbers %xmm1-%xmm5, %r9, %r10, %r11, %rax
554 ## Clobbers %xmm1-%xmm4, %r11.
610 ## Clobbers %xmm1, %xmm2
646 ## Clobbers xmm1-xmm5
Dvpaes-armv7-linux32.S96 @@ Clobbers q1-q5, r8-r11
408 @@ Clobbers q1-q4, r11.
476 @@ Clobbers q1, q2, q14, q15
514 @@ Clobbers q1-q5
Dvpaes-armv8-ios64.S116 ## Clobbers %xmm1-%xmm5, %r9, %r10, %r11, %rax
553 ## Clobbers %xmm1-%xmm4, %r11.
609 ## Clobbers %xmm1, %xmm2
645 ## Clobbers xmm1-xmm5
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/MCParser/
DMCAsmParser.h176 SmallVectorImpl<std::string> &Clobbers, const MCInstrInfo *MII,
/external/gemmlowp/meta/generators/
Dzip_Nx8_neon.py281 registers.Clobbers() + ['cc', 'memory'])
Dmul_1x8_Mx8_neon.py274 registers.Clobbers() + ['cc', 'memory'])
/external/openscreen/third_party/boringssl/linux-aarch64/crypto/fipsmodule/
Dvpaes-armv8.S141 ## Clobbers %xmm1-%xmm5, %r9, %r10, %r11, %rax
858 ## Clobbers %xmm1-%xmm4, %r11.
914 ## Clobbers %xmm1, %xmm2
950 ## Clobbers xmm1-xmm5
/external/openscreen/third_party/boringssl/ios-aarch64/crypto/fipsmodule/
Dvpaes-armv8.S140 ## Clobbers %xmm1-%xmm5, %r9, %r10, %r11, %rax
857 ## Clobbers %xmm1-%xmm4, %r11.
913 ## Clobbers %xmm1, %xmm2
949 ## Clobbers xmm1-xmm5
/external/cronet/third_party/boringssl/apple-aarch64/crypto/fipsmodule/
Dvpaes-armv8-apple.S140 ## Clobbers %xmm1-%xmm5, %r9, %r10, %r11, %rax
857 ## Clobbers %xmm1-%xmm4, %r11.
913 ## Clobbers %xmm1, %xmm2
949 ## Clobbers xmm1-xmm5
/external/rust/crates/quiche/deps/boringssl/ios-aarch64/crypto/fipsmodule/
Dvpaes-armv8.S140 ## Clobbers %xmm1-%xmm5, %r9, %r10, %r11, %rax
857 ## Clobbers %xmm1-%xmm4, %r11.
913 ## Clobbers %xmm1, %xmm2
949 ## Clobbers xmm1-xmm5
/external/cronet/third_party/boringssl/linux-aarch64/crypto/fipsmodule/
Dvpaes-armv8-linux.S140 ## Clobbers %xmm1-%xmm5, %r9, %r10, %r11, %rax
857 ## Clobbers %xmm1-%xmm4, %r11.
913 ## Clobbers %xmm1, %xmm2
949 ## Clobbers xmm1-xmm5
/external/openscreen/third_party/boringssl/win-aarch64/crypto/fipsmodule/
Dvpaes-armv8.S143 ## Clobbers %xmm1-%xmm5, %r9, %r10, %r11, %rax
880 ## Clobbers %xmm1-%xmm4, %r11.
938 ## Clobbers %xmm1, %xmm2
976 ## Clobbers xmm1-xmm5

123