HomeSort by relevance Sort by last modified time
    Searched refs:BinOp (Results 26 - 50 of 187) sorted by null

12 3 4 5 6 7 8

  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/IR/
ConstantRange.h 115 static ConstantRange makeGuaranteedNoWrapRegion(Instruction::BinaryOps BinOp,
278 ConstantRange binaryOp(Instruction::BinaryOps BinOp,
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/IR/
ConstantRange.h 115 static ConstantRange makeGuaranteedNoWrapRegion(Instruction::BinaryOps BinOp,
278 ConstantRange binaryOp(Instruction::BinaryOps BinOp,
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
ConstantRange.h 115 static ConstantRange makeGuaranteedNoWrapRegion(Instruction::BinaryOps BinOp,
278 ConstantRange binaryOp(Instruction::BinaryOps BinOp,
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombinePHI.cpp 23 /// and a single binop.
120 BinaryOperator *BinOp = cast<BinaryOperator>(FirstInst);
122 BinaryOperator::Create(BinOp->getOpcode(), LHSVal, RHSVal);
417 // Can fold binop, compare or shift here if the RHS is a constant,
490 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(FirstInst)) {
491 BinOp = BinaryOperator::Create(BinOp->getOpcode(), PhiVal, ConstantOp);
492 if (isNUW) BinOp->setHasNoUnsignedWrap();
493 if (isNSW) BinOp->setHasNoSignedWrap();
494 if (isExact) BinOp->setIsExact()
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/
InstrTypes.h 321 static const Value *getNegArgument(const Value *BinOp);
322 static Value *getNegArgument( Value *BinOp);
323 static const Value *getFNegArgument(const Value *BinOp);
324 static Value *getFNegArgument( Value *BinOp);
325 static const Value *getNotArgument(const Value *BinOp);
326 static Value *getNotArgument( Value *BinOp);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_ast.py 85 # BinOp
173 x = ast.BinOp(1, 2, 3, lineno=0)
180 self.assertRaises(TypeError, ast.BinOp, 1, 2)
183 x = ast.BinOp(left=1, op=2, right=3, lineno=0)
238 'Expression(body=BinOp(left=Num(n=1, lineno=1, col_offset=0), '
263 'Expression(body=BinOp(left=Num(n=1, lineno=4, col_offset=0), '
271 'Expression(body=BinOp(left=Num(n=1, lineno=4, col_offset=0), '
360 ('Interactive', [('Expr', (1, 0), ('BinOp', (1, 0), ('Num', (1, 0), 1), ('Add',), ('Num', (1, 2), 2)))]),
364 ('Expression', ('BinOp', (1, 0), ('Name', (1, 0), 'a', ('Load',)), ('Add',), ('Name', (1, 4), 'b', ('Load',)))),
  /external/llvm/include/llvm/IR/
ConstantRange.h 113 static ConstantRange makeGuaranteedNoWrapRegion(Instruction::BinaryOps BinOp,
InstrTypes.h 520 static const Value *getNegArgument(const Value *BinOp);
521 static Value *getNegArgument( Value *BinOp);
522 static const Value *getFNegArgument(const Value *BinOp);
523 static Value *getFNegArgument( Value *BinOp);
524 static const Value *getNotArgument(const Value *BinOp);
525 static Value *getNotArgument( Value *BinOp);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 27 /// adds all have a single use, turn this into a phi and a single binop.
108 BinaryOperator *BinOp = cast<BinaryOperator>(FirstInst);
110 BinaryOperator::Create(BinOp->getOpcode(), LHSVal, RHSVal);
498 // Can fold binop, compare or shift here if the RHS is a constant,
556 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(FirstInst)) {
557 BinOp = BinaryOperator::Create(BinOp->getOpcode(), PhiVal, ConstantOp);
558 BinOp->copyIRFlags(PN.getIncomingValue(0));
561 BinOp->andIRFlags(PN.getIncomingValue(i));
563 BinOp->setDebugLoc(FirstInst->getDebugLoc())
    [all...]
  /external/clang/include/clang/AST/
StmtVisitor.h 42 // If we have a binary expr, dispatch to the subcode of the binop. A smart
45 if (PTR(BinaryOperator) BinOp = dyn_cast<BinaryOperator>(S)) {
46 switch (BinOp->getOpcode()) {
  /external/clang/lib/StaticAnalyzer/Checkers/
NullabilityChecker.cpp     [all...]
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter2/
toy.cpp 159 // Make sure it's a declared binop.
241 // If this is a binop, find its precedence.
245 // If this is a binop that binds at least as tightly as the current binop,
250 // Okay, we know this is a binop.
251 int BinOp = CurTok;
252 getNextToken(); // eat binop
258 // If BinOp binds less tightly with RHS than the operator after RHS, let
267 LHS = new BinaryExprAST(BinOp, LHS, RHS);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/AST/
StmtVisitor.h 42 // If we have a binary expr, dispatch to the subcode of the binop. A smart
45 if (PTR(BinaryOperator) BinOp = dyn_cast<BinaryOperator>(S)) {
46 switch (BinOp->getOpcode()) {
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/AST/
StmtVisitor.h 42 // If we have a binary expr, dispatch to the subcode of the binop. A smart
45 if (PTR(BinaryOperator) BinOp = dyn_cast<BinaryOperator>(S)) {
46 switch (BinOp->getOpcode()) {
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/AST/
StmtVisitor.h 42 // If we have a binary expr, dispatch to the subcode of the binop. A smart
45 if (PTR(BinaryOperator) BinOp = dyn_cast<BinaryOperator>(S)) {
46 switch (BinOp->getOpcode()) {
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
StmtVisitor.h 42 // If we have a binary expr, dispatch to the subcode of the binop. A smart
45 if (PTR(BinaryOperator) BinOp = dyn_cast<BinaryOperator>(S)) {
46 switch (BinOp->getOpcode()) {
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/AST/
StmtVisitor.h 42 // If we have a binary expr, dispatch to the subcode of the binop. A smart
45 if (PTR(BinaryOperator) BinOp = dyn_cast<BinaryOperator>(S)) {
46 switch (BinOp->getOpcode()) {
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/AST/
StmtVisitor.h 42 // If we have a binary expr, dispatch to the subcode of the binop. A smart
45 if (PTR(BinaryOperator) BinOp = dyn_cast<BinaryOperator>(S)) {
46 switch (BinOp->getOpcode()) {
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/AST/
StmtVisitor.h 42 // If we have a binary expr, dispatch to the subcode of the binop. A smart
45 if (PTR(BinaryOperator) BinOp = dyn_cast<BinaryOperator>(S)) {
46 switch (BinOp->getOpcode()) {
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
StmtVisitor.h 42 // If we have a binary expr, dispatch to the subcode of the binop. A smart
45 if (PTR(BinaryOperator) BinOp = dyn_cast<BinaryOperator>(S)) {
46 switch (BinOp->getOpcode()) {
  /external/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 95 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(Inst)) {
96 Value *LHS = BinOp->getOperand(0);
97 Value *RHS = BinOp->getOperand(1);
98 if (BinOp->isCommutative() && BinOp->getOperand(0) > BinOp->getOperand(1))
101 return hash_combine(BinOp->getOpcode(), LHS, RHS);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 184 // Make sure it's a declared binop.
280 // If this is a binop, find its precedence.
284 // If this is a binop that binds at least as tightly as the current binop,
289 // Okay, we know this is a binop.
290 int BinOp = CurTok;
291 getNextToken(); // eat binop
298 // If BinOp binds less tightly with RHS than the operator after RHS, let
308 LHS = helper::make_unique<BinaryExprAST>(BinOp, std::move(LHS),
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter3/
toy.cpp 171 // Make sure it's a declared binop.
253 // If this is a binop, find its precedence.
257 // If this is a binop that binds at least as tightly as the current binop,
262 // Okay, we know this is a binop.
263 int BinOp = CurTok;
264 getNextToken(); // eat binop
270 // If BinOp binds less tightly with RHS than the operator after RHS, let
279 LHS = new BinaryExprAST(BinOp, LHS, RHS);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/IR/
InstrTypes.h 534 static const Value *getNegArgument(const Value *BinOp);
535 static Value *getNegArgument( Value *BinOp);
536 static const Value *getFNegArgument(const Value *BinOp);
537 static Value *getFNegArgument( Value *BinOp);
538 static const Value *getNotArgument(const Value *BinOp);
539 static Value *getNotArgument( Value *BinOp);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/IR/
InstrTypes.h 534 static const Value *getNegArgument(const Value *BinOp);
535 static Value *getNegArgument( Value *BinOp);
536 static const Value *getFNegArgument(const Value *BinOp);
537 static Value *getFNegArgument( Value *BinOp);
538 static const Value *getNotArgument(const Value *BinOp);
539 static Value *getNotArgument( Value *BinOp);
    [all...]

Completed in 802 milliseconds

12 3 4 5 6 7 8