Home
last modified time | relevance | path

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

1234

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
H A DIntegerDivision.cpp382 assert(!Rem->getType()->isVectorTy() && "Div over vectors not supported"); in expandRemainder()
385 "Div of bitwidth other than 32 or 64 not supported"); in expandRemainder()
426 /// Generate code to divide two integers, replacing Div with the generated
432 /// Replace Div with generated code.
433 bool llvm::expandDivision(BinaryOperator *Div) { in expandDivision() argument
434 assert((Div->getOpcode() == Instruction::SDiv || in expandDivision()
435 Div->getOpcode() == Instruction::UDiv) && in expandDivision()
438 IRBuilder<> Builder(Div); in expandDivision()
440 assert(!Div->getType()->isVectorTy() && "Div ove in expandDivision()
583 expandDivisionUpTo32Bits(BinaryOperator *Div) expandDivisionUpTo32Bits() argument
631 expandDivisionUpTo64Bits(BinaryOperator *Div) expandDivisionUpTo64Bits() argument
[all...]
/third_party/typescript/tests/baselines/reference/
H A DcheckJsxChildrenProperty2.js33 <div> My Div </div>
39 <div> My Div </div>
45 <div> My Div </div>
51 <div> My Div </div>
52 <div> My Div </div>
76 <div> My Div </div>
80 <div> My Div </div>
84 <div> My Div </div>
88 <div> My Div </div>
89 <div> My Div </di
[all...]
H A DtsxElementResolution8.js8 var Div = 3; variable
9 <Div />;
40 var Div = 3; variable
41 <Div />;
H A DparserRealSource3.js69 Div,
190 NodeType[NodeType["Div"] = 59] = "Div";
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/
H A DIntegerDivision.h34 /// Generate code to divide two integers, replacing Div with the generated
40 /// Replace Div with generated code.
41 bool expandDivision(BinaryOperator* Div);
57 /// Generate code to divide two integers, replacing Div with the generated
58 /// code. Uses ExpandDivision with a 32bit Div which makes it useful for
62 bool expandDivisionUpTo32Bits(BinaryOperator *Div);
64 /// Generate code to divide two integers, replacing Div with the generated
65 /// code. Uses ExpandDivision with a 64bit Div.
68 bool expandDivisionUpTo64Bits(BinaryOperator *Div);
/third_party/rust/crates/nom/tests/
H A Darithmetic_ast.rs21 Div(Box<Expr>, Box<Expr>),
30 Div,
41 Div(ref left, ref right) => write!(format, "{} / {}", left, right),
55 Div(ref left, ref right) => write!(format, "({:?} / {:?})", left, right),
86 Oper::Div => Expr::Div(Box::new(acc), Box::new(expr)), in fold_exprs()
100 Ok((i, (Oper::Div, div))) in term()
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/
H A Dnanobenchmark_test.cc25 uint64_t Div(const void*, FuncInput in) { in Div() function
37 const size_t num_results = Measure(&Div, nullptr, inputs, N, results, params);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp302 BinaryOperator *Div = dyn_cast<BinaryOperator>(Op0); in visitMul() local
303 if (!Div || (Div->getOpcode() != Instruction::UDiv && in visitMul()
304 Div->getOpcode() != Instruction::SDiv)) { in visitMul()
306 Div = dyn_cast<BinaryOperator>(Op1); in visitMul()
309 if (Div && Div->hasOneUse() && in visitMul()
310 (Div->getOperand(1) == Y || Div->getOperand(1) == Neg) && in visitMul()
311 (Div in visitMul()
[all...]
/third_party/node/deps/v8/tools/
H A Dbigint-tester.py212 class Div(BinaryOp): class
225 class Mod(Div): # Sharing GenerateInputLengths.
279 "div": Div,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
H A DDivRemPairs.cpp57 Instruction *Div; in matchExpandedRem() local
62 m_Instruction(Div)), in matchExpandedRem()
67 M.Key.SignedOp = Div->getOpcode() == Instruction::SDiv; in matchExpandedRem()
/third_party/rust/crates/syn/src/
H A Dop.rs13 Div(Token![/]),
130 input.parse().map(BinOp::Div) in parse()
179 BinOp::Div(t) => t.to_tokens(tokens), in to_tokens()
/third_party/ltp/tools/sparse/sparse-src/
H A Dexpand.c252 goto Div; in simplify_int_binop()
259 if (!r) goto Div; in simplify_int_binop()
265 goto Div; in simplify_int_binop()
272 if (!r) goto Div; in simplify_int_binop()
297 Div: in simplify_int_binop()
356 case '/': if (!r) goto Div; in simplify_float_binop()
365 case '/': if (!r) goto Div; in simplify_float_binop()
374 case '/': if (!r) goto Div; in simplify_float_binop()
382 Div: in simplify_float_binop()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
H A DMVETailPredication.cpp384 if (auto *Div = dyn_cast<SCEVUDivExpr>(TC->getOperand(1))) in ComputeElements()
385 if (auto *Add = dyn_cast<SCEVAddExpr>(Div->getLHS())) in ComputeElements()
387 if (auto *Div = VisitMul(Mul)) in ComputeElements()
388 if (auto *Res = VisitDiv(Div)) in ComputeElements()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DAMDGPUCodeGenPrepare.cpp719 Value *Div = Builder.CreateAdd(IQ, JQ); in expandDivRem24() local
721 Value *Res = Div; in expandDivRem24()
724 Value *Rem = Builder.CreateMul(Div, Den); in expandDivRem24()
857 // Div = (Tmp1 == 0 ? Quotient : Quotient_A_One) in expandDivRem32()
858 Value *Div = Builder.CreateSelect(Tmp1_0_CC, Quotient, Quotient_A_One); in expandDivRem32() local
860 // Div = (Remainder_GE_Zero == 0 ? Quotient_S_One : Div) in expandDivRem32()
861 Res = Builder.CreateSelect(Num_GE_Num_S_Rem_CC, Div, Quotient_S_One); in expandDivRem32()
H A DAMDGPUISelLowering.cpp1614 SDValue Div = DAG.getNode(ISD::ADD, DL, VT, iq, jq); in LowerDIVREM24() local
1617 SDValue Rem = DAG.getNode(ISD::MUL, DL, VT, Div, RHS); in LowerDIVREM24()
1624 Div = DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT, Div, InRegSize); in LowerDIVREM24()
1628 Div = DAG.getNode(ISD::AND, DL, VT, Div, TruncMask); in LowerDIVREM24()
1632 return DAG.getMergeValues({ Div, Rem }, DL); in LowerDIVREM24()
1794 SDValue Div = DAG.getSelectCC(DL, C3, Zero, Sel1, Mulhi3, ISD::SETNE); in LowerUDIVREM64() local
1799 Results.push_back(Div); in LowerUDIVREM64()
1933 // Div in LowerUDIVREM()
1934 SDValue Div = DAG.getSelectCC(DL, Tmp1, DAG.getConstant(0, DL, VT), LowerUDIVREM() local
2007 SDValue Div = DAG.getNode(ISD::UDIVREM, DL, DAG.getVTList(VT, VT), LHS, RHS); LowerSDIVREM() local
2032 SDValue Div = DAG.getNode(ISD::FDIV, SL, VT, X, Y); LowerFREM() local
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
H A DMCExpr.h428 Div, ///< Signed division. enumerator
479 return create(Div, LHS, RHS, Ctx); in createDiv()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
H A DMCExpr.cpp116 case MCBinaryExpr::Div: OS << '/'; break; in print()
836 case MCBinaryExpr::Div: in evaluateAsRelocatableImpl()
846 if (ABE->getOpcode() == MCBinaryExpr::Div) in evaluateAsRelocatableImpl()
/third_party/skia/third_party/externals/tint/src/transform/
H A Darray_length_from_uniform.cc195 ctx.dst->Div(ctx.dst->Sub(total_storage_buffer_size, array_offset), in Run()
H A Dcalculate_array_length.cc215 ctx.dst->Div( in Run()
/third_party/rust/crates/nom/src/bits/
H A Dstreaming.rs6 use crate::lib::std::ops::{AddAssign, Div, RangeFrom, Shl, Shr};
H A Dcomplete.rs6 use crate::lib::std::ops::{AddAssign, Div, RangeFrom, Shl, Shr};
/third_party/rust/crates/minimal-lexical/src/
H A Dnum.rs27 + ops::Div<Output = Self>
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
H A DConstantFold.cpp1258 assert(!CI2->isZero() && "Div by zero handled above"); in ConstantFoldBinaryInstruction()
1261 assert(!CI2->isZero() && "Div by zero handled above"); in ConstantFoldBinaryInstruction()
1266 assert(!CI2->isZero() && "Div by zero handled above"); in ConstantFoldBinaryInstruction()
1269 assert(!CI2->isZero() && "Div by zero handled above"); in ConstantFoldBinaryInstruction()
2452 Constant *Div = ConstantExpr::getSDiv(CurrIdx, Factor); in ConstantFoldGetElementPtr() local
2456 Div->getType()->getScalarSizeInBits()); in ConstantFoldGetElementPtr()
2461 Type *ExtendedTy = Type::getIntNTy(Div->getContext(), CommonExtendedWidth); in ConstantFoldGetElementPtr()
2471 if (!Div->getType()->isIntOrIntVectorTy(CommonExtendedWidth)) in ConstantFoldGetElementPtr()
2472 Div = ConstantExpr::getSExt(Div, ExtendedT in ConstantFoldGetElementPtr()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
H A DLoopCacheAnalysis.cpp352 const SCEV *Div = SE.getUDivExactExpr(AccessFn, ElemSize);
353 Subscripts.push_back(Div);
/third_party/skia/third_party/externals/tint/src/writer/hlsl/
H A Dgenerator_impl_binary_test.cc515 auto* expr = Div("a", 0); in TEST_F()
528 auto* expr = Div("a", 0u); in TEST_F()

Completed in 25 milliseconds

1234