Searched refs:Sub (Results 126 - 150 of 377) sorted by relevance

1234567891011>>

/external/llvm/lib/Analysis/
H A DDemandedBits.cpp136 case Instruction::Sub:
H A DInstructionSimplify.cpp661 /// Given operands for a Sub, see if we can fold the result.
667 return ConstantFoldBinaryOpOperands(Instruction::Sub, CLHS, CRHS, Q.DL);
691 if (Value *V = SimplifyBinOp(Instruction::Sub, Y, Z, Q, MaxRecurse-1))
699 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Z, Q, MaxRecurse-1))
713 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Y, Q, MaxRecurse-1))
715 if (Value *W = SimplifyBinOp(Instruction::Sub, V, Z, Q, MaxRecurse-1)) {
721 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Z, Q, MaxRecurse-1))
723 if (Value *W = SimplifyBinOp(Instruction::Sub, V, Y, Q, MaxRecurse-1)) {
735 if (Value *V = SimplifyBinOp(Instruction::Sub, Z, X, Q, MaxRecurse-1))
748 if (Value *V = SimplifyBinOp(Instruction::Sub,
[all...]
H A DCostModel.cpp393 case Instruction::Sub:
/external/llvm/lib/Target/PowerPC/
H A DPPCTargetTransformInfo.cpp140 case Instruction::Sub:
H A DPPCInstrInfo.cpp1634 MachineInstr *Sub = nullptr;
1647 // Search for Sub.
1675 Sub = &*I;
1685 if (!MI && !Sub)
1689 if (!MI) MI = Sub;
1718 if (Sub) {
1719 ShouldSwap = SrcReg2 != 0 && Sub->getOperand(1).getReg() == SrcReg2 &&
1720 Sub->getOperand(2).getReg() == SrcReg;
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp89 case Instruction::Sub: // Can only fold on the amount subtracted.
105 case Instruction::Sub:
853 if ((TI->getOpcode() == Instruction::Sub &&
859 } else if ((FI->getOpcode() == Instruction::Sub &&
H A DInstCombineMulDivRem.cpp254 Value *Sub = nullptr; local
256 Sub = Builder->CreateSub(X, Y, "suba");
258 Sub = Builder->CreateSub(Builder->CreateNeg(C1), Y, "subc");
259 if (Sub)
261 BinaryOperator::CreateMul(Sub,
H A DInstCombineVectorOps.cpp652 case Instruction::Sub:
715 case Instruction::Sub:
815 case Instruction::Sub:
/external/pdfium/core/fpdfdoc/
H A Dcpdf_variabletext.h37 enum class ScriptType { Normal, Super, Sub };
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DMachineVerifier.cpp373 for (const unsigned *Sub = TRI->getSubRegisters(Reg); *Sub; ++Sub) {
375 // assert(regsReserved.test(*Sub) && "Non-reserved sub-register");
376 regsReserved.set(*Sub);
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldChecker.cpp90 Sub, member in class:llvm::RuntimeDyldCheckerExprEval::BinOpToken
172 Op = BinOpToken::Sub;
192 case BinOpToken::Sub:
/external/llvm/lib/Target/Hexagon/
H A DRDFLiveness.cpp661 assert(I.Sub == 0);
761 return RR.Sub ? TRI.getSubReg(RR.Reg, RR.Sub) : RR.Reg;
H A DHexagonHardwareLoops.cpp297 unsigned Sub; member in struct:__anon13115::CountValue::Values::__anon13116
307 Contents.R.Sub = u;
321 return Contents.R.Sub;
329 if (isReg()) { OS << PrintReg(Contents.R.Reg, TRI, Contents.R.Sub); }
/external/r8/src/main/java/com/android/tools/r8/ir/optimize/
H A DOutliner.java41 import com.android.tools.r8.ir.code.Sub;
894 Sub templateInvoke = template.asSub();
895 newInstruction = new Sub(
/external/clang/lib/Frontend/
H A DCompilerInstance.cpp1566 clang::Module *Sub = Module->findSubmodule(Name); local
1568 if (!Sub) {
1598 Sub = Module->findSubmodule(Best[0]);
1602 if (!Sub) {
1611 Module = Sub;
/external/regex-re2/lib/codereview/
H A Dcodereview.py85 def Sub(l1, l2): function
89 l = l1 + Sub(l2, l1)
866 l = Sub(l, taken.keys())
1240 pats = Sub(pats, taken) + ['path:'+f for f in files]
1609 extra = Sub(cl.files, files)
1735 cl.files = Sub(cl.files, oldfiles)
1744 files = Sub(files, cl.files)
1757 ocl.files = Sub(ocl.files, files)
1823 cl.cc = Sub(cl.cc, defaultcc)
2055 extra = Sub(c
[all...]
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DInstructionSimplify.cpp609 /// SimplifySubInst - Given operands for a Sub, see if we can
617 return ConstantFoldInstOperands(Instruction::Sub, CLHS->getType(),
646 if (Value *V = SimplifyBinOp(Instruction::Sub, Y, Z, TD, DT, MaxRecurse-1))
655 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Z, TD, DT, MaxRecurse-1))
670 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Y, TD, DT, MaxRecurse-1))
672 if (Value *W = SimplifyBinOp(Instruction::Sub, V, Z, TD, DT,
679 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Z, TD, DT, MaxRecurse-1))
681 if (Value *W = SimplifyBinOp(Instruction::Sub, V, Y, TD, DT,
694 if (Value *V = SimplifyBinOp(Instruction::Sub, Z, X, TD, DT, MaxRecurse-1))
703 // Mul distributes over Sub
[all...]
/external/clang/lib/Lex/
H A DModuleMap.cpp71 Module *Sub = lookupModuleQualified(Id[I].first, Context); local
72 if (!Sub) {
81 Context = Sub;
529 if (Module *Sub = lookupModuleQualified(Name, Context))
530 return Sub;
547 if (Module *Sub = lookupModuleQualified(Name, Parent))
548 return std::make_pair(Sub, false);
/external/llvm/lib/Target/PowerPC/AsmParser/
H A DPPCAsmParser.cpp829 if (BinExpr->getOpcode() == MCBinaryExpr::Sub) {
1381 const MCExpr *Sub = ExtractModifierFromExpr(UE->getSubExpr(), Variant); local
1382 if (!Sub)
1384 return MCUnaryExpr::create(UE->getOpcode(), Sub, Context);
1447 const MCExpr *Sub = FixupVariantKind(UE->getSubExpr()); local
1448 if (Sub == UE->getSubExpr())
1450 return MCUnaryExpr::create(UE->getOpcode(), Sub, Context);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator.h221 void Sub(AllocatorStat i, uptr v) { function in class:__sanitizer::AllocatorStats
964 stats_.Sub(AllocatorStatAllocated, SizeClassMap::Size(class_id));
1114 stat->Sub(AllocatorStatAllocated, h->map_size);
1115 stat->Sub(AllocatorStatMapped, h->map_size);
/external/llvm/lib/CodeGen/
H A DAtomicExpandPass.cpp498 case AtomicRMWInst::Sub:
656 case AtomicRMWInst::Sub:
1191 case AtomicRMWInst::Sub:
1392 case AtomicRMWInst::Sub:
/external/llvm/lib/MC/
H A DMCCodeView.cpp268 MCBinaryExpr::create(MCBinaryExpr::Sub, EndRef, BeginRef, Ctx);
/external/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelDAGToDAG.cpp679 SDValue Sub = CurDAG->getNode(ISD::SUB, DL, MVT::i32, local
682 if (isDSOffsetLegal(Sub, ByteOffset, 16)) {
749 SDValue Sub = CurDAG->getNode(ISD::SUB, DL, MVT::i32, local
752 if (isDSOffsetLegal(Sub, DWordOffset1, 8)) {
/external/llvm/lib/Transforms/Scalar/
H A DFloat2Int.cpp113 case Instruction::FSub: return Instruction::Sub;
/external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
H A Dutil.py302 _ast.Sub = type(m.body[4].value.op)

Completed in 1886 milliseconds

1234567891011>>