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

1234567891011>>

/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/llvm/lib/Transforms/InstCombine/
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/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/llvm/lib/Target/PowerPC/
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/Analysis/
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:
H A DScalarEvolutionExpander.cpp720 Sum = InsertBinop(Instruction::Sub, Sum, W);
760 Prod = InsertBinop(Instruction::Sub, Constant::getNullValue(Ty), Prod);
868 // Check for a simple Add/Sub or GEP of a loop invariant step.
870 case Instruction::Sub: {
2087 Value *Sub = Builder.CreateSub(StartValue, MulV); local
2090 Signed ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT, Sub, StartValue);
/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/gemmlowp/internal/
H A Doutput.h272 Sub(input.data, Dup<DataType>(real_zero_as_int32));
/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/Target/Hexagon/
H A DHexagonHardwareLoops.cpp297 unsigned Sub; member in struct:__anon12993::CountValue::Values::__anon12994
307 Contents.R.Sub = u;
321 return Contents.R.Sub;
329 if (isReg()) { OS << PrintReg(Contents.R.Reg, TRI, Contents.R.Sub); }
/external/llvm/lib/Transforms/Scalar/
H A DFloat2Int.cpp113 case Instruction::FSub: return Instruction::Sub;
/external/pdfium/xfa/fde/css/
H A Dfde_cssdatatable.cpp128 {FDE_CSSPropertyValue::Sub, L"sub", 0x0BD37FAA},
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp171 case Instruction::Sub:
351 case Instruction::Sub:
677 case Instruction::Sub:
1022 case Instruction::Sub:
H A DInstCombineSimplifyDemanded.cpp556 case Instruction::Sub:
1064 case Instruction::Sub:
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DInstruction.cpp111 case Sub: return "sub";
/external/llvm/lib/Target/AArch64/
H A DAArch64TargetTransformInfo.cpp87 case Instruction::Sub:
393 Cost += getArithmeticInstrCost(Instruction::Sub, Ty, Opd1Info, Opd2Info,
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DELFWriter.cpp565 case Instruction::Sub: {
570 // 2) Instruction::Sub => (global) + -CstInt
582 case Instruction::Sub:
/external/swiftshader/third_party/LLVM/lib/MC/
H A DMCDwarf.cpp117 MCBinaryExpr::Create(MCBinaryExpr::Sub, Res, RHS, MCOS.getContext());
121 MCBinaryExpr::Create(MCBinaryExpr::Sub, Res1, Res2, MCOS.getContext());

Completed in 607 milliseconds

1234567891011>>