Searched refs:And (Results 1 - 25 of 96) sorted by relevance

1234

/freebsd-10.0-release/tools/regression/geom_uzip/etalon/
H A Detalon.txt13 And the mome raths outgrabe.
23 And stood awhile in thought.
25 And, as in uffish thought he stood,
28 And burbled as it came!
30 One, two! One, two! And through and through
35 "And, has thou slain the Jabberwock?
43 And the mome raths outgrabe.
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DOperatorPrecedence.h36 And = 8, // & enumerator in enum:clang::prec::Level
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Basic/
H A DOperatorPrecedence.cpp59 case tok::amp: return prec::And;
/freebsd-10.0-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp178 case Instruction::And:
360 case Instruction::And:
674 case Instruction::And:
691 (Opc == Instruction::And || Opc == Instruction::Or ||
815 Value *And = Builder->CreateAnd(A, AndConst, CSrc->getName()+".mask"); local
816 return new ZExtInst(And, CI.getType());
852 if (SrcI && SrcI->getOpcode() == Instruction::And && SrcI->hasOneUse())
865 if (BinaryOperator *And = dyn_cast<BinaryOperator>(SrcI->getOperand(0)))
866 if (And->getOpcode() == Instruction::And
[all...]
H A DInstCombineShifts.cpp108 case Instruction::And:
203 case Instruction::And:
394 Value *And = Builder->CreateAnd(NSh, local
399 return new TruncInst(And, I.getType());
411 case Instruction::And:
483 bool isValid = true; // Valid only for And, Or, Xor
495 case Instruction::And:
H A DInstCombineSimplifyDemanded.cpp158 if (I->getOpcode() == Instruction::And) {
234 case Instruction::And:
338 Instruction *And = BinaryOperator::CreateAnd(I->getOperand(0), AndC); local
339 return InsertNewInstWith(And, *I);
353 if (LHSInst->getOpcode() == Instruction::And && LHSInst->hasOneUse() &&
1187 case Instruction::And:
H A DInstCombineSelect.cpp88 case Instruction::And:
115 case Instruction::And:
546 Value *And = Builder->CreateAnd(AShr, C2->getValue()-C1->getValue());
547 return ReplaceInstUsesWith(SI, Builder->CreateAdd(And, C1));
H A DInstCombineAndOrXor.cpp144 Value *And = Builder->CreateAnd(X, AndRHS); local
145 And->takeName(Op);
146 return BinaryOperator::CreateXor(And, Together);
164 Value *And = Builder->CreateAnd(X, Together); local
165 And->takeName(Op);
166 return BinaryOperator::CreateOr(And, OpRHS);
354 case Instruction::And:
1345 if (I->getOpcode() == Instruction::And &&
1558 Value *And = Builder->CreateAnd(LHS->getOperand(0), NegCst); local
1559 return Builder->CreateICmp(ICmpInst::ICMP_EQ, And, LHSCs
1962 Value *And = Builder->CreateAnd(Op0NotVal, Op1NotVal, local
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp626 llvm::Instruction::BinaryOps And, Or; local
629 And = llvm::Instruction::Or;
630 Or = llvm::Instruction::And;
633 And = llvm::Instruction::And;
657 Res = Builder.CreateBinOp(And, Res, Cmp);
672 return Builder.CreateBinOp(And, Res, Cmp0, "memptr.cmp");
H A DItaniumCXXABI.cpp614 llvm::Instruction::BinaryOps And, Or; local
617 And = llvm::Instruction::Or;
618 Or = llvm::Instruction::And;
621 And = llvm::Instruction::And;
669 EqZero = Builder.CreateBinOp(And, EqZero, OrAdjAnd1EqZero);
674 Result = Builder.CreateBinOp(And, PtrEq, Result,
H A DCGAtomic.cpp263 PostOp = llvm::Instruction::And;
267 Op = llvm::AtomicRMWInst::And;
287 PostOp = llvm::Instruction::And;
/freebsd-10.0-release/contrib/llvm/lib/IR/
H A DInstruction.cpp212 case And: return "and";
474 /// In LLVM, the Add, Mul, And, Or, and Xor operators are associative.
477 return Opcode == And || Opcode == Or || Opcode == Xor ||
508 case And:
521 /// In LLVM, the And and Or operators are idempotent.
524 return Opcode == And || Opcode == Or;
/freebsd-10.0-release/contrib/llvm/lib/Transforms/Scalar/
H A DLowerAtomic.cpp58 case AtomicRMWInst::And:
H A DLoopRotation.cpp188 case Instruction::And:
/freebsd-10.0-release/usr.bin/make/
H A Dcond.c91 * will return And for '&' and '&&', Or for '|' and '||', Not for '!',
99 And, enumerator in enum:__anon11454
465 t = And;
939 if (o == And) {
/freebsd-10.0-release/contrib/llvm/include/llvm/MC/
H A DMCExpr.h330 And, ///< Bitwise and. enumerator in enum:llvm::MCBinaryExpr::Opcode
372 return Create(And, LHS, RHS, Ctx);
/freebsd-10.0-release/contrib/llvm/lib/Analysis/
H A DCostModel.cpp138 case Instruction::And:
H A DInstructionSimplify.cpp1419 /// SimplifyAndInst - Given operands for an And, see if we can
1426 return ConstantFoldInstOperands(Instruction::And, CLHS->getType(),
1476 if (Value *V = SimplifyAssociativeBinOp(Instruction::And, Op0, Op1, Q,
1480 // And distributes over Or. Try some generic simplifications based on this.
1481 if (Value *V = ExpandBinOp(Instruction::And, Op0, Op1, Instruction::Or,
1485 // And distributes over Xor. Try some generic simplifications based on this.
1486 if (Value *V = ExpandBinOp(Instruction::And, Op0, Op1, Instruction::Xor,
1490 // Or distributes over And. Try some generic simplifications based on this.
1491 if (Value *V = FactorizeBinOp(Instruction::And, Op0, Op1, Instruction::Or,
1498 if (Value *V = ThreadBinOpOverSelect(Instruction::And, Op
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Transforms/ObjCARC/
H A DObjCARCUtil.cpp171 // operands of interest. And ret is never followed by a release, so it's
220 case Instruction::And: case Instruction::Or: case Instruction::Xor:
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DStmtVisitor.h127 BINOP_FALLBACK(And) BINOP_FALLBACK(Xor) BINOP_FALLBACK(Or)
/freebsd-10.0-release/contrib/llvm/lib/MC/
H A DMCExpr.cpp110 case MCBinaryExpr::And: OS << '&'; break;
631 case MCBinaryExpr::And: Result = LHS & RHS; break;
/freebsd-10.0-release/contrib/llvm/include/llvm/ADT/
H A DAPSInt.h215 APSInt And(const APSInt& RHS) const { function in class:llvm::APSInt
/freebsd-10.0-release/contrib/llvm/lib/Transforms/Vectorize/
H A DVecUtils.cpp358 case Instruction::And:
510 case Instruction::And:
670 case Instruction::And:
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Expression/
H A DIRInterpreter.cpp505 case Instruction::And:
627 case Instruction::And:
707 case Instruction::And:
/freebsd-10.0-release/contrib/atf/atf-report/
H A Dintegration_test.sh126 tc, #.#, expect_helpers, fail_and_fail_check, expected_failure, And fail again: 2 checks failed as expected; see output for more details
153 fail_and_fail_check: [#.#s] Expected failure: And fail again: 2 checks failed as expected; see output for more details
171 expect_helpers:fail_and_fail_check: And fail again: 2 checks failed as expected; see output for more details

Completed in 322 milliseconds

1234