/external/llvm/lib/CodeGen/ |
D | LivePhysRegs.cpp | 31 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()
|
D | IfConversion.cpp | 1051 SmallVector<std::pair<unsigned, const MachineOperand*>, 4> Clobbers; in UpdatePredRedefs() local 1052 Redefs.stepForward(MI, Clobbers); in UpdatePredRedefs() 1055 for (auto Reg : Clobbers) { in UpdatePredRedefs()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | LivePhysRegs.cpp | 32 SmallVectorImpl<std::pair<unsigned, const MachineOperand*>> *Clobbers) { in removeRegsInMask() argument 36 if (Clobbers) in removeRegsInMask() 37 Clobbers->push_back(std::make_pair(*LRI, &MO)); in removeRegsInMask() 86 SmallVectorImpl<std::pair<unsigned, const MachineOperand*>> &Clobbers) { in stepForward() argument 96 Clobbers.push_back(std::make_pair(Reg, &*O)); in stepForward() 104 removeRegsInMask(*O, &Clobbers); in stepForward() 108 for (auto Reg : Clobbers) { in stepForward()
|
/external/clang/lib/Parse/ |
D | ParseStmtAsm.cpp | 612 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/ |
D | LivePhysRegs.h | 93 SmallVectorImpl<std::pair<unsigned, const MachineOperand*>> *Clobbers); 118 SmallVectorImpl<std::pair<unsigned, const MachineOperand*>> &Clobbers);
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/ |
D | HexagonBlockRanges.cpp | 314 RegisterSet Defs, Clobbers; in computeInitialLiveRanges() local 336 Clobbers.clear(); in computeInitialLiveRanges() 345 Clobbers.insert(S); in computeInitialLiveRanges() 367 Clobbers.insert(R); in computeInitialLiveRanges() 373 Clobbers.erase(R); in computeInitialLiveRanges() 385 for (RegisterRef S : Clobbers) { in computeInitialLiveRanges()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/ |
D | LivePhysRegs.h | 98 SmallVectorImpl<std::pair<unsigned, const MachineOperand*>> *Clobbers = 129 SmallVectorImpl<std::pair<unsigned, const MachineOperand*>> &Clobbers);
|
/external/clang/lib/AST/ |
D | Stmt.cpp | 427 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/ |
D | SemaStmtAsm.cpp | 151 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/ |
D | Stmt.h | 1571 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-7.0/llvm/lib/Target/AMDGPU/ |
D | SIFixSGPRCopies.cpp | 454 SmallVector<MachineInstr*, 8> Clobbers; in hoistAndMergeSGPRInits() local 470 Clobbers.push_back(&MI); in hoistAndMergeSGPRInits() 508 return (llvm::any_of(Clobbers, interferes)) || in hoistAndMergeSGPRInits()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/ |
D | PPCExpandISEL.cpp | 395 SmallVector<std::pair<unsigned, const MachineOperand *>, 2> Clobbers; in reorganizeBlockLayout() local 397 LPR.stepForward(MI, Clobbers); in reorganizeBlockLayout()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | MemorySSA.cpp | 787 SmallVector<TerminatedPath, 4> Clobbers; in tryOptimizePhi() local 791 Clobbers.push_back({WR.Result, Paused}); in tryOptimizePhi() 811 Clobbers.push_back(TP); in tryOptimizePhi() 817 if (!Clobbers.empty()) { in tryOptimizePhi() 818 MoveDominatedPathToEnd(Clobbers); in tryOptimizePhi() 819 TerminatedPath Result = Clobbers.pop_back_val(); in tryOptimizePhi() 820 return {Result, std::move(Clobbers)}; in tryOptimizePhi()
|
/external/llvm/include/llvm/MC/MCParser/ |
D | MCAsmParser.h | 121 SmallVectorImpl<std::string> &Clobbers, const MCInstrInfo *MII,
|
/external/swiftshader/third_party/LLVM/test/Transforms/EarlyCSE/ |
D | basic.ll | 69 ; Clobbers V1
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/MCParser/ |
D | MCAsmParser.h | 182 SmallVectorImpl<std::string> &Clobbers, const MCInstrInfo *MII,
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/COFF/ |
D | cv-fpo-setframe.s | 36 # Clobbers
|
D | cv-fpo-csrs.s | 32 # Clobbers
|
/external/gemmlowp/meta/generators/ |
D | zip_Nx8_neon.py | 281 registers.Clobbers() + ['cc', 'memory'])
|
D | mul_1x8_Mx8_neon.py | 274 registers.Clobbers() + ['cc', 'memory'])
|
D | neon_emitter.py | 142 def Clobbers(self): member in _NeonRegisters32Bit 265 self.EmitClobbers(registers.Clobbers() + ['cc', 'memory'])
|
D | qnt_Nx8_neon.py | 331 registers.Clobbers() + ['cc', 'memory'])
|
/external/boringssl/linux-aarch64/crypto/fipsmodule/ |
D | vpaes-armv8.S | 138 ## Clobbers %xmm1-%xmm5, %r9, %r10, %r11, %rax 849 ## Clobbers %xmm1-%xmm4, %r11. 905 ## Clobbers %xmm1, %xmm2 941 ## Clobbers xmm1-xmm5
|
/external/boringssl/ios-aarch64/crypto/fipsmodule/ |
D | vpaes-armv8.S | 137 ## Clobbers %xmm1-%xmm5, %r9, %r10, %r11, %rax 848 ## Clobbers %xmm1-%xmm4, %r11. 904 ## Clobbers %xmm1, %xmm2 940 ## Clobbers xmm1-xmm5
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 333 SmallVector<StringLiteral*, 16> Clobbers; in VisitGCCAsmStmt() local 335 Clobbers.push_back(cast_or_null<StringLiteral>(Reader.ReadSubStmt())); in VisitGCCAsmStmt() 340 Clobbers.data(), NumClobbers); in VisitGCCAsmStmt() 362 SmallVector<StringRef, 16> Clobbers; in VisitMSAsmStmt() local 364 Clobbers.reserve(S->NumClobbers); in VisitMSAsmStmt() 367 Clobbers.push_back(ClobbersData.back()); in VisitMSAsmStmt() 385 Constraints, Exprs, Clobbers); in VisitMSAsmStmt()
|