HomeSort by: relevance | last modified time | path
    Searched refs:Combined (Results 1 - 13 of 13) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ReplayInlineAdvisor.cpp 53 std::string Combined = (Callee + CallSite).str();
54 InlineSitesFromRemarks.insert(Combined);
72 std::string Combined = (Callee + CallSiteLoc).str();
73 auto Iter = InlineSitesFromRemarks.find(Combined);
BlockFrequencyInfoImpl.cpp 189 HashTable Combined(NextPowerOf2(2 * Weights.size()));
191 combineWeight(Combined[W.TargetNode.Index], W);
194 if (Weights.size() == Combined.size())
199 Weights.reserve(Combined.size());
200 for (const auto &I : Combined)
231 // Early exit when combined into a single successor.
513 LLVM_DEBUG(dbgs() << " => combined-scale = " << Loop.Scale << "\n");
  /src/external/apache2/llvm/dist/llvm/lib/Target/XCore/Disassembler/
XCoreDisassembler.cpp 241 unsigned Combined = fieldFromInstruction(Insn, 6, 5);
242 if (Combined < 27)
245 if (Combined == 31)
247 Combined += 5;
249 Combined -= 27;
250 unsigned Op1High = Combined % 3;
251 unsigned Op2High = Combined / 3;
260 unsigned Combined = fieldFromInstruction(Insn, 6, 5);
261 if (Combined >= 27)
264 unsigned Op1High = Combined % 3
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaConcept.cpp 836 NormalForm::value_type Combined;
837 Combined.reserve(LDisjunction.size() + RDisjunction.size());
839 std::back_inserter(Combined));
841 std::back_inserter(Combined));
842 Res.emplace_back(Combined);
865 NormalForm::value_type Combined;
866 Combined.reserve(LConjunction.size() + RConjunction.size());
868 std::back_inserter(Combined));
870 std::back_inserter(Combined));
871 Res.emplace_back(Combined);
    [all...]
SemaExprMember.cpp 1302 // failed, the lookup result will have been cleared--that combined with the
1809 Qualifiers Combined = BaseQuals + MemberQuals;
1810 if (Combined != MemberQuals)
1811 MemberType = Context.getQualifiedType(MemberType, Combined);
SemaExpr.cpp 5526 Qualifiers Combined = BaseQuals + MemberQuals;
5527 if (Combined != MemberQuals)
5528 ResultType = Context.getQualifiedType(ResultType, Combined);
  /src/external/apache2/llvm/dist/llvm/lib/IR/
ConstantFold.cpp 1131 // it causes miscompilation when combined with another optimization in
2463 Constant *Combined = CE->getOperand(CE->getNumOperands()-1);
2466 Type *IdxTy = Combined->getType();
2476 Constant *C2 = ConstantExpr::getSExtOrBitCast(Combined, CommonTy);
2477 Combined = ConstantExpr::get(Instruction::Add, C1, C2);
2479 Combined =
2480 ConstantExpr::get(Instruction::Add, Idx0, Combined);
2484 NewIndices.push_back(Combined);
2487 // The combined GEP normally inherits its index inrange attribute from
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 82 STATISTIC(NodesCombined , "Number of dag nodes combined");
174 /// Set of nodes which have been combined (at least once).
177 /// which have not yet been combined to the worklist.
267 // Skip handle nodes as they can't usefully be combined and confuse the
688 /// can be combined into narrow loads.
1094 if (SDValue Combined = reassociateOpsCommutative(Opc, DL, N0, N1))
1095 return Combined;
1096 if (SDValue Combined = reassociateOpsCommutative(Opc, DL, N1, N0))
1097 return Combined;
1546 // Add any operands of the new node which have not yet been combined to th
4033 SDValue combined; local
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/AsmParser/
LLParser.cpp 3322 /// it has. The value will later be combined with its type and checked for
4461 DINode::DIFlags Combined = DINode::FlagZero;
4466 Combined |= Val;
4469 Result.assign(Combined);
4501 DISubprogram::DISPFlags Combined = DISubprogram::SPFlagZero;
4506 Combined |= Val;
4509 Result.assign(Combined);
  /src/external/gpl3/gdb/dist/gdb/
ChangeLog-3.x 1451 * m68k-pinsn.c (print_insn_arg ['#', '^']): Combined them into one
1514 remote_server.c, remote_utils.c: Combined into remote-multi.shar.
2852 * main.c (history_info, command_info): Combined into new command
4168 * blockframe.c, frame.h, stack.c, others (oops): Combined stack
  /src/external/gpl3/gdb.old/dist/gdb/
ChangeLog-3.x 1451 * m68k-pinsn.c (print_insn_arg ['#', '^']): Combined them into one
1514 remote_server.c, remote_utils.c: Combined into remote-multi.shar.
2852 * main.c (history_info, command_info): Combined into new command
4168 * blockframe.c, frame.h, stack.c, others (oops): Combined stack
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsISelLowering.cpp 1050 SDValue Combined =
1052 return Combined;
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIISelLowering.cpp 3172 // Since the return is being combined with the call, we need to pass on the
5486 if (SDValue Combined = performExtractVectorEltCombine(Op.getNode(), DCI))
5487 return Combined;
7859 // Analyze a combined offset from an amdgcn_buffer_ intrinsic and store the
9555 // It can/will be lowered or combined as a bit operation.

Completed in 98 milliseconds