HomeSort by relevance Sort by last modified time
    Searched refs:Clobbers (Results 1 - 16 of 16) sorted by null

  /external/llvm/lib/CodeGen/
LivePhysRegs.cpp 27 /// The clobbers set will be the list of live registers clobbered
30 SmallVectorImpl<std::pair<unsigned, const MachineOperand*>> *Clobbers) {
34 if (Clobbers)
35 Clobbers->push_back(std::make_pair(*LRI, &MO));
74 SmallVectorImpl<std::pair<unsigned, const MachineOperand*>> &Clobbers) {
84 Clobbers.push_back(std::make_pair(Reg, &*O));
92 removeRegsInMask(*O, &Clobbers);
96 for (auto Reg : Clobbers) {
IfConversion.cpp     [all...]
  /external/llvm/include/llvm/CodeGen/
LivePhysRegs.h 97 SmallVectorImpl<std::pair<unsigned, const MachineOperand*>> *Clobbers);
113 /// The clobbers set will be the list of registers either defined or clobbered
117 SmallVectorImpl<std::pair<unsigned, const MachineOperand*>> &Clobbers);
  /external/clang/lib/Parse/
ParseStmtAsm.cpp 574 SmallVector<std::string, 4> Clobbers;
576 NumInputs, OpExprs, Constraints, Clobbers,
581 // fpsr as clobbers.
582 auto End = std::remove(Clobbers.begin(), Clobbers.end(), "fpsw");
583 Clobbers.erase(End, Clobbers.end());
586 ClobberRefs.insert(ClobberRefs.end(), Clobbers.begin(), Clobbers.end());
625 /// ':' asm-clobbers
    [all...]
  /external/clang/lib/AST/
Stmt.cpp 427 StringLiteral **Clobbers,
447 C.Deallocate(this->Clobbers);
448 this->Clobbers = new (C) StringLiteral*[NumClobbers];
449 std::copy(Clobbers, Clobbers + NumClobbers, this->Clobbers);
689 StringLiteral **clobbers, SourceLocation rparenloc)
704 Clobbers = new (C) StringLiteral*[NumClobbers];
705 std::copy(clobbers, clobbers + NumClobbers, Clobbers)
    [all...]
  /external/llvm/include/llvm/MC/MCParser/
MCAsmParser.h 121 SmallVectorImpl<std::string> &Clobbers, const MCInstrInfo *MII,
  /external/clang/lib/Sema/
SemaStmtAsm.cpp 145 Expr *asmString, MultiExprArg clobbers,
147 unsigned NumClobbers = clobbers.size();
151 StringLiteral **Clobbers = reinterpret_cast<StringLiteral**>(clobbers.data());
163 Constraints, Exprs.data(), AsmString, NumClobbers, Clobbers, RParenLoc);
335 // Check that the clobbers are valid.
337 StringLiteral *Literal = Clobbers[i];
350 AsmString, NumClobbers, Clobbers, RParenLoc);
724 ArrayRef<StringRef> Clobbers,
733 Clobbers, EndLoc)
    [all...]
TreeTransform.h     [all...]
  /external/clang/include/clang/AST/
Stmt.h     [all...]
  /external/gemmlowp/meta/generators/
zip_Nx8_neon.py 306 registers.Clobbers() + ['cc', 'memory'])
neon_emitter.py 85 def Clobbers(self):
205 def EmitAsmEnd(self, outputs, inputs, clobbers):
208 self.EmitClobbers(clobbers)
qnt_Nx8_neon.py 388 registers.Clobbers() + ['cc', 'memory'])
mul_Nx8_Mx8_neon.py 419 registers.Clobbers() + ['cc', 'memory'])
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 329 SmallVector<StringLiteral*, 16> Clobbers;
331 Clobbers.push_back(cast_or_null<StringLiteral>(Reader.ReadSubStmt()));
336 Clobbers.data(), NumClobbers);
356 // Read the clobbers.
358 SmallVector<StringRef, 16> Clobbers;
360 Clobbers.reserve(S->NumClobbers);
363 Clobbers.push_back(ClobbersData.back());
381 Constraints, Exprs, Clobbers);
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 230 SmallVectorImpl<std::string> &Clobbers,
    [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 236 milliseconds