HomeSort by relevance Sort by last modified time
    Searched defs:Predicate (Results 101 - 125 of 387) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Target/
TargetInstrInfo.h 103 /// predicate must return false if the instruction has any side effects other
221 /// not, return 0. This predicate must return 0 if the instruction has
248 /// not, return 0. This predicate must return 0 if the instruction has
547 /// Represents a predicate at the MachineFunction level. The control flow a
550 /// Reg <def>= LHS `Predicate` RHS == ConditionDef
560 ComparePredicate Predicate = PRED_INVALID;
660 /// Return true if it's profitable to predicate
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Analysis/
ScalarEvolution.h 203 /// Returns the estimated complexity of this predicate. This is roughly
207 /// Returns true if the predicate is always true. This means that no
211 /// Returns true if this predicate implies \p N.
214 /// Prints a textual representation of this predicate with an indentation of
218 /// Returns the SCEV to which this predicate applies, or nullptr if this is
282 /// count. This means that if we have a nusw predicate for i32 {0,+,1} with a
399 /// Adds a predicate to this union.
412 /// We estimate the complexity of a union predicate as the size number of
677 bool isLoopEntryGuardedByCond(const Loop *L, ICmpInst::Predicate Pred,
682 bool isLoopBackedgeGuardedByCond(const Loop *L, ICmpInst::Predicate Pred
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/IR/
InstrTypes.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/MC/
MCInstrDesc.h 41 enum OperandFlags { LookupPtrRegClass = 0, Predicate, OptionalDef };
94 /// \brief Set if this is one of the operands that made up of the predicate
96 bool isPredicate() const { return Flags & (1 << MCOI::Predicate); }
118 /// MCInstrDesc class. Clients should use the predicate methods on MCInstrDesc,
297 /// \brief Return true if this instruction has a predicate operand
300 /// control and modify the predicate in this instruction.
572 /// operand list that is used to represent the predicate. It returns -1 if
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Target/
TargetInstrInfo.h 103 /// predicate must return false if the instruction has any side effects other
221 /// not, return 0. This predicate must return 0 if the instruction has
248 /// not, return 0. This predicate must return 0 if the instruction has
547 /// Represents a predicate at the MachineFunction level. The control flow a
550 /// Reg <def>= LHS `Predicate` RHS == ConditionDef
560 ComparePredicate Predicate = PRED_INVALID;
660 /// Return true if it's profitable to predicate
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Analysis/
ScalarEvolution.h 203 /// Returns the estimated complexity of this predicate. This is roughly
207 /// Returns true if the predicate is always true. This means that no
211 /// Returns true if this predicate implies \p N.
214 /// Prints a textual representation of this predicate with an indentation of
218 /// Returns the SCEV to which this predicate applies, or nullptr if this is
282 /// count. This means that if we have a nusw predicate for i32 {0,+,1} with a
399 /// Adds a predicate to this union.
412 /// We estimate the complexity of a union predicate as the size number of
677 bool isLoopEntryGuardedByCond(const Loop *L, ICmpInst::Predicate Pred,
682 bool isLoopBackedgeGuardedByCond(const Loop *L, ICmpInst::Predicate Pred
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/IR/
InstrTypes.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/MC/
MCInstrDesc.h 41 enum OperandFlags { LookupPtrRegClass = 0, Predicate, OptionalDef };
94 /// \brief Set if this is one of the operands that made up of the predicate
96 bool isPredicate() const { return Flags & (1 << MCOI::Predicate); }
118 /// MCInstrDesc class. Clients should use the predicate methods on MCInstrDesc,
297 /// \brief Return true if this instruction has a predicate operand
300 /// control and modify the predicate in this instruction.
572 /// operand list that is used to represent the predicate. It returns -1 if
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Target/
TargetInstrInfo.h 103 /// predicate must return false if the instruction has any side effects other
221 /// not, return 0. This predicate must return 0 if the instruction has
248 /// not, return 0. This predicate must return 0 if the instruction has
547 /// Represents a predicate at the MachineFunction level. The control flow a
550 /// Reg <def>= LHS `Predicate` RHS == ConditionDef
560 ComparePredicate Predicate = PRED_INVALID;
660 /// Return true if it's profitable to predicate
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h     [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
IteratorsTest.java 28 import com.google.common.base.Predicate;
259 new Predicate<String>() {
273 Predicate<String> predicate = Predicates.equalTo("pants"); local
275 assertFalse(Iterators.any(list.iterator(), predicate)); local
277 assertFalse(Iterators.any(list.iterator(), predicate)); local
279 assertTrue(Iterators.any(list.iterator(), predicate)); local
284 Predicate<String> predicate = Predicates.equalTo("cool"); local
286 assertTrue(Iterators.all(list.iterator(), predicate)); local
288 assertTrue(Iterators.all(list.iterator(), predicate)); local
290 assertFalse(Iterators.all(list.iterator(), predicate)); local
    [all...]
  /external/llvm/include/llvm/IR/
PatternMatch.h 203 /// satisfy a specified predicate.
204 template <typename Predicate> struct cst_pred_ty : public Predicate {
217 /// satisfy a specified predicate, and bind them to an APInt.
218 template <typename Predicate> struct api_pred_ty : public Predicate {
701 PredicateTy &Predicate;
706 : Predicate(Pred), L(LHS), R(RHS) {}
711 Predicate = I->getPredicate();
719 inline CmpClass_match<LHS, RHS, CmpInst, CmpInst::Predicate>
    [all...]
  /external/llvm/lib/CodeGen/
IfConversion.cpp 93 /// instruction can clobber the 'would-be' predicate.
110 /// Predicate - Predicate used in the BB.
128 SmallVector<MachineOperand, 4> Predicate;
647 /// instruction which can clobber a predicate (e.g. condition code register).
653 bool AlreadyPredicated = !BBI.Predicate.empty();
738 // Predicate modification instruction should end the block (except for
740 // Predicate may have been modified, the subsequent (currently)
760 /// predicated by the specified predicate.
771 if (BBI.Predicate.size() && !BBI.IsBrAnalyzable
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
GVN.cpp 250 CmpInst::Predicate Predicate = C->getPredicate();
253 Predicate = CmpInst::getSwappedPredicate(Predicate);
255 e.opcode = (C->getOpcode() << 8) | Predicate;
266 CmpInst::Predicate Predicate,
278 Predicate = CmpInst::getSwappedPredicate(Predicate);
280 e.opcode = (Opcode << 8) | Predicate;
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMFastISel.cpp 251 // If the machine is predicable go ahead and add the predicate operands, if
260 // Do we use a predicate? or...
261 // Are we NEON in ARM mode and have a predicate operand? If so, I know
266 // Do we optionally set a predicate? Preds is size > 0 iff the predicate
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86FastISel.cpp     [all...]
  /external/swiftshader/third_party/subzero/src/
IceInstARM32.h 516 CondARM32::Cond Predicate)
517 : InstARM32(Func, Kind, Maxsrcs, Dest), Predicate(Predicate) {}
519 CondARM32::Cond getPredicate() const { return Predicate; }
520 void setPredicate(CondARM32::Cond Pred) { Predicate = Pred; }
522 static const char *predString(CondARM32::Cond Predicate);
540 CondARM32::Cond Predicate;
544 inline StreamType &operator<<(StreamType &Stream, CondARM32::Cond Predicate) {
545 Stream << InstARM32Pred::predString(Predicate);
558 CondARM32::Cond Predicate) {
    [all...]
IceInstMIPS32.h 845 CondMIPS32::Cond getPredicate() const { return Predicate; }
846 void setPredicate(CondMIPS32::Cond Pred) { Predicate = Pred; }
849 return Predicate == CondMIPS32::AL;
872 CondMIPS32::Cond Predicate;
    [all...]
  /external/testng/src/main/java/org/testng/internal/
Invoker.java 83 /** Predicate to filter methods */
84 private static Predicate<ITestNGMethod, IClass> CAN_RUN_FROM_CLASS = new CanRunFromClassPredicate();
85 /** Predicate to filter methods */
86 private static final Predicate<ITestNGMethod, IClass> SAME_CLASS = new SameClassNamePredicate();
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/ASTMatchers/
ASTMatchers.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
PatternMatch.h 216 /// satisfy a specified predicate.
217 template <typename Predicate> struct cst_pred_ty : public Predicate {
230 /// satisfy a specified predicate, and bind them to an APInt.
231 template <typename Predicate> struct api_pred_ty : public Predicate {
714 PredicateTy &Predicate;
719 : Predicate(Pred), L(LHS), R(RHS) {}
724 Predicate = I->getPredicate();
732 inline CmpClass_match<LHS, RHS, CmpInst, CmpInst::Predicate>
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/ASTMatchers/
ASTMatchers.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/IR/
PatternMatch.h 226 /// satisfy a specified predicate.
227 template <typename Predicate> struct cst_pred_ty : public Predicate {
240 /// satisfy a specified predicate, and bind them to an APInt.
241 template <typename Predicate> struct api_pred_ty : public Predicate {
731 PredicateTy &Predicate;
736 : Predicate(Pred), L(LHS), R(RHS) {}
741 Predicate = I->getPredicate();
749 inline CmpClass_match<LHS, RHS, CmpInst, CmpInst::Predicate>
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/ASTMatchers/
ASTMatchers.h     [all...]

Completed in 857 milliseconds

1 2 3 45 6 7 8 91011>>