Searched defs:Constraints (Results 1 - 23 of 23) sorted by relevance

/external/llvm/include/llvm/CodeGen/
H A DPBQPRAConstraint.h49 /// Constraints added to this list will be applied, in the order that they are
54 for (auto &C : Constraints)
60 Constraints.push_back(std::move(C));
63 std::vector<std::unique_ptr<PBQPRAConstraint>> Constraints; member in class:llvm::PBQPRAConstraintList
/external/clang/lib/CodeGen/
H A DTargetInfo.h136 std::string &Constraints, std::vector<llvm::Type *> &ResultRegTypes,
134 addReturnRegisterOutputs( CodeGen::CodeGenFunction &CGF, CodeGen::LValue ReturnValue, std::string &Constraints, std::vector<llvm::Type *> &ResultRegTypes, std::vector<llvm::Type *> &ResultTruncRegTypes, std::vector<CodeGen::LValue> &ResultRegDests, std::string &AsmString, unsigned NumOutputs) const argument
H A DCGStmt.cpp1836 std::string Constraints; local
1866 if (!Constraints.empty())
1867 Constraints += ',';
1872 Constraints += "=" + OutputConstraint;
1911 Constraints += "=*";
1912 Constraints += OutputConstraint;
1946 *this, ReturnSlot, Constraints, ResultRegTypes, ResultTruncRegTypes,
1957 if (!Constraints.empty())
1958 Constraints += ',';
1969 llvm::Value *Arg = EmitAsmInput(Info, InputExpr, Constraints);
[all...]
H A DTargetInfo.cpp659 std::string &Constraints,
725 CodeGenFunction &CGF, LValue ReturnSlot, std::string &Constraints,
734 if (!Constraints.empty())
735 Constraints += ',';
737 Constraints += "={eax}";
741 Constraints += "=A";
724 addReturnRegisterOutputs( CodeGenFunction &CGF, LValue ReturnSlot, std::string &Constraints, std::vector<llvm::Type *> &ResultRegTypes, std::vector<llvm::Type *> &ResultTruncRegTypes, std::vector<LValue> &ResultRegDests, std::string &AsmString, unsigned NumOutputs) const argument
/external/guava/guava/src/com/google/common/collect/
H A DConstraints.java49 public final class Constraints { class
50 private Constraints() {} method in class:Constraints
93 /** @see Constraints#constrainedCollection */
132 /** @see Constraints#constrainedSet */
170 /** @see Constraints#constrainedSortedSet */
222 /** @see Constraints#constrainedList */
267 /** @see Constraints#constrainedList */
290 /** @see Constraints#constrainedListIterator */
344 /** @see Constraints#constrainedMultiset */
/external/llvm/lib/IR/
H A DInlineAsm.cpp29 StringRef Constraints, bool hasSideEffects,
31 InlineAsmKeyType Key(AsmString, Constraints, hasSideEffects, isAlignStack,
41 AsmString(asmString), Constraints(constraints),
209 InlineAsm::ParseConstraints(StringRef Constraints) { argument
213 for (StringRef::iterator I = Constraints.begin(),
214 E = Constraints.end(); I != E; ) {
248 ConstraintInfoVector Constraints = ParseConstraints(ConstStr);
251 if (Constraints.empty() && !ConstStr.empty()) return false;
256 for (unsigned i = 0, e = Constraints.size(); i != e; ++i) {
257 switch (Constraints[
28 get(FunctionType *Ty, StringRef AsmString, StringRef Constraints, bool hasSideEffects, bool isAlignStack, AsmDialect asmDialect) argument
[all...]
H A DConstantsContext.h377 StringRef Constraints; member in struct:llvm::InlineAsmKeyType
382 InlineAsmKeyType(StringRef AsmString, StringRef Constraints, argument
385 : AsmString(AsmString), Constraints(Constraints),
389 : AsmString(Asm->getAsmString()), Constraints(Asm->getConstraintString()),
396 AsmString == X.AsmString && Constraints == X.Constraints;
403 Constraints == Asm->getConstraintString();
406 return hash_combine(AsmString, Constraints, HasSideEffects, IsAlignStack,
412 return new InlineAsm(Ty, AsmString, Constraints, HasSideEffect
[all...]
H A DCore.cpp1315 const char *Constraints,
1319 Constraints, HasSideEffects, IsAlignStack));
1314 LLVMConstInlineAsm(LLVMTypeRef Ty, const char *AsmString, const char *Constraints, LLVMBool HasSideEffects, LLVMBool IsAlignStack) argument
/external/clang/lib/Parse/
H A DParseStmtAsm.cpp551 SmallVector<std::string, 4> Constraints;
554 NumInputs, OpExprs, Constraints, Clobbers,
580 ConstraintRefs[i] = StringRef(Constraints[i]);
654 ExprVector Constraints; local
663 Constraints, Exprs, AsmString.get(),
674 if (!AteExtraColon && ParseAsmOperandsOpt(Names, Constraints, Exprs))
690 if (!AteExtraColon && ParseAsmOperandsOpt(Names, Constraints, Exprs))
694 assert(Names.size() == Constraints.size() &&
695 Constraints.size() == Exprs.size() && "Input operand size mismatch!");
723 Constraints, Expr
739 ParseAsmOperandsOpt(SmallVectorImpl<IdentifierInfo *> &Names, SmallVectorImpl<Expr *> &Constraints, SmallVectorImpl<Expr *> &Exprs) argument
[all...]
/external/llvm/include/llvm/IR/
H A DInlineAsm.h46 std::string AsmString, Constraints; member in class:llvm::InlineAsm
52 const std::string &Constraints, bool hasSideEffects,
64 StringRef Constraints, bool hasSideEffects,
83 const std::string &getConstraintString() const { return Constraints; }
89 static bool Verify(FunctionType *Ty, StringRef Constraints);
181 return ParseConstraints(Constraints);
/external/clang/lib/Sema/
H A DSemaStmtAsm.cpp117 StringLiteral **Constraints = local
139 StringLiteral *Literal = Constraints[i];
214 StringLiteral *Literal = Constraints[i];
311 NumInputs, Names, Constraints, Exprs.data(),
348 StringLiteral *Literal = Constraints[ConstraintIdx];
609 ArrayRef<StringRef> Constraints,
618 Constraints, Exprs, AsmString,
605 ActOnMSAsmStmt(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
H A DTreeTransform.h1244 MultiExprArg Constraints, MultiExprArg Exprs,
1248 NumInputs, Names, Constraints, Exprs,
1260 ArrayRef<StringRef> Constraints,
1266 Constraints, Clobbers, Exprs, EndLoc);
6085 SmallVector<Expr*, 8> Constraints; local
6099 Constraints.push_back(S->getOutputConstraintLiteral(I));
6117 Constraints.push_back(S->getInputConstraintLiteral(I));
6142 Constraints, Exprs, AsmString.get(),
1241 RebuildGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple, bool IsVolatile, unsigned NumOutputs, unsigned NumInputs, IdentifierInfo **Names, MultiExprArg Constraints, MultiExprArg Exprs, Expr *AsmString, MultiExprArg Clobbers, SourceLocation RParenLoc) argument
1256 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
/external/llvm/utils/TableGen/
H A DCodeGenInstruction.h105 std::vector<ConstraintInfo> Constraints; member in struct:llvm::CGIOperandList::OperandInfo
118 for (unsigned j = 0, e = Constraints.size(); j != e; ++j) {
119 const CGIOperandList::ConstraintInfo &CI = Constraints[j];
/external/llvm/include/llvm/MC/
H A DMCInstrDesc.h75 uint32_t Constraints; member in class:llvm::MCOperandInfo
163 (OpInfo[OpNum].Constraints & (1 << Constraint))) {
165 return (int)(OpInfo[OpNum].Constraints >> Pos) & 0xf;
/external/clang/lib/AST/
H A DStmt.cpp421 StringLiteral **Constraints,
441 C.Deallocate(this->Constraints);
442 this->Constraints = new (C) StringLiteral*[NumExprs];
443 std::copy(Constraints, Constraints + NumExprs, this->Constraints);
705 Constraints = new (C) StringLiteral*[NumExprs];
706 std::copy(constraints, constraints + NumExprs, Constraints);
755 Constraints = new (C) StringRef[NumExprs];
757 Constraints[
419 setOutputsAndInputsAndClobbers(const ASTContext &C, IdentifierInfo **Names, StringLiteral **Constraints, Stmt **Exprs, unsigned NumOutputs, unsigned NumInputs, StringLiteral **Clobbers, unsigned NumClobbers) argument
[all...]
/external/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp412 // of the Constraints X and Y. Returns true if X has changed.
2999 SmallVectorImpl<Constraint> &Constraints,
3004 DEBUG(Constraints[LI].dump(dbgs()));
3005 if (Constraints[LI].isDistance())
3006 Result |= propagateDistance(Src, Dst, Constraints[LI], Consistent);
3007 else if (Constraints[LI].isLine())
3008 Result |= propagateLine(Src, Dst, Constraints[LI], Consistent);
3009 else if (Constraints[LI].isPoint())
3010 Result |= propagatePoint(Src, Dst, Constraints[LI]);
3550 SmallVector<Constraint, 4> Constraints(MaxLevel
2996 propagate(const SCEV *&Src, const SCEV *&Dst, SmallBitVector &Loops, SmallVectorImpl<Constraint> &Constraints, bool &Consistent) argument
[all...]
/external/clang/include/clang/AST/
H A DStmt.h1550 StringLiteral **Constraints; member in class:clang::GCCAsmStmt
1565 Constraints(nullptr), Clobbers(nullptr), Names(nullptr) { }
1649 return Constraints[i];
1652 return Constraints[i];
1677 return Constraints[i + NumOutputs];
1680 return Constraints[i + NumOutputs];
1693 StringLiteral **Constraints,
1731 StringRef *Constraints; member in class:clang::MSAsmStmt
1746 NumAsmToks(0), AsmToks(nullptr), Constraints(nullptr), Clobbers(nullptr) { }
1768 return Constraints[
[all...]
/external/clang/lib/Serialization/
H A DASTReaderStmt.cpp320 SmallVector<StringLiteral*, 16> Constraints; local
324 Constraints.push_back(cast_or_null<StringLiteral>(Reader.ReadSubStmt()));
328 // Constraints
334 Names.data(), Constraints.data(),
370 SmallVector<StringRef, 16> Constraints; local
373 Constraints.reserve(NumOperands);
377 Constraints.push_back(ConstraintsData.back());
381 Constraints, Exprs, Clobbers);
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c919 value Constraints, value HasSideEffects,
921 return LLVMConstInlineAsm(Ty, String_val(Asm), String_val(Constraints),
918 llvm_const_inline_asm(LLVMTypeRef Ty, value Asm, value Constraints, value HasSideEffects, value IsAlignStack) argument
/external/llvm/lib/MC/MCParser/
H A DAsmParser.cpp220 SmallVectorImpl<std::string> &Constraints,
4544 SmallVectorImpl<std::string> &Constraints,
4643 Constraints.resize(NumExprs);
4646 Constraints[i] = OutputConstraints[i];
4650 Constraints[j] = InputConstraints[i];
4541 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
/external/vogar/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/annotations/ ...
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...

Completed in 6355 milliseconds