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

/openbsd-current/gnu/llvm/llvm/include/llvm/Support/
H A DWindowsError.h15 std::error_code mapWindowsError(unsigned EV);
/openbsd-current/gnu/llvm/llvm/lib/Object/
H A DError.cpp35 std::string _object_error_category::message(int EV) const {
36 object_error E = static_cast<object_error>(EV);
/openbsd-current/gnu/llvm/llvm/lib/Target/Hexagon/
H A DHexagonConstExtenders.cpp367 bool operator<(const ExtValue &EV) const;
368 bool operator==(const ExtValue &EV) const {
369 return ExtRoot(*this) == ExtRoot(EV) && Offset == EV.Offset;
371 bool operator!=(const ExtValue &EV) const {
372 return !operator==(EV);
428 friend raw_ostream &operator<< (raw_ostream &OS, const ExtValue &EV);
544 raw_ostream &operator<< (raw_ostream &OS, const HCE::ExtValue &EV) { argument
545 OS << HCE::ExtRoot(EV) << " off:" << EV
1420 const ExtValue &EV = P.first.first; local
1534 const ExtValue &EV = ExtI.first; local
1770 const ExtValue &EV = ExtI.first; (void)EV; local
[all...]
H A DHexagonISelDAGToDAG.cpp1106 unsigned EV = EN->getZExtValue(); local
1107 if (EV % (1 << CV) != 0)
1109 unsigned DV = EV / (1 << CV);
/openbsd-current/gnu/llvm/llvm/lib/Support/
H A DErrorHandling.cpp245 std::error_code llvm::mapWindowsError(unsigned EV) { argument
246 switch (EV) {
302 return std::error_code(EV, std::system_category());
/openbsd-current/libexec/getty/
H A Dgettytab.h70 #define EV gettystrs[9].value macro
H A Dsubr.c334 if ((p = EV)) {
/openbsd-current/gnu/llvm/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp3275 InstCombinerImpl::foldExtractOfOverflowIntrinsic(ExtractValueInst &EV) { argument
3276 auto *WO = dyn_cast<WithOverflowInst>(EV.getAggregateOperand());
3283 if (*EV.idx_begin() == 0 && (OvID == Intrinsic::smul_with_overflow ||
3305 if (*EV.idx_begin() == 0) {
3314 assert(*EV.idx_begin() == 1 && "Unexpected extract index for overflow inst");
3349 Instruction *InstCombinerImpl::visitExtractValueInst(ExtractValueInst &EV) { argument
3350 Value *Agg = EV.getAggregateOperand();
3352 if (!EV.hasIndices())
3353 return replaceInstUsesWith(EV, Agg);
3355 if (Value *V = simplifyExtractValueInst(Agg, EV
[all...]
H A DInstCombineInternal.h173 Instruction *visitExtractValueInst(ExtractValueInst &EV);
379 Instruction *foldExtractOfOverflowIntrinsic(ExtractValueInst &EV);
/openbsd-current/gnu/llvm/llvm/lib/CodeGen/
H A DAtomicExpandPass.cpp1431 ExtractValueInst *EV = dyn_cast<ExtractValueInst>(User); local
1432 if (!EV)
1435 assert(EV->getNumIndices() == 1 && EV->getIndices()[0] <= 1 &&
1438 if (EV->getIndices()[0] == 0)
1439 EV->replaceAllUsesWith(Loaded);
1441 EV->replaceAllUsesWith(Success);
1443 PrunedInsts.push_back(EV);
1447 for (auto *EV : PrunedInsts)
1448 EV
[all...]
/openbsd-current/gnu/llvm/llvm/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp1040 Value *EV = IRB.CreateExtractValue(OldRet, RetI, "oldret"); local
1046 RetVal = IRB.CreateInsertValue(RetVal, EV, NewRetIdxs[RetI],
1051 RetVal = EV;
/openbsd-current/gnu/llvm/llvm/utils/TableGen/
H A DRegisterInfoEmitter.cpp1298 unsigned EV = 0; local
1306 assert(RC.EnumValue == EV && "Unexpected order of register classes");
1307 ++EV;
1308 (void)EV;
/openbsd-current/sys/arch/hppa/hppa/
H A Ddb_disasm.c179 #define EV 0xF macro
1449 case EV: return(",ev");
1481 case EV: return(",ev");
/openbsd-current/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DIndVarSimplify.cpp1390 if (auto EV = SE->evaluatePredicateAt(Pred, LHSS, RHSS, BI))
1391 return createFoldedExitCond(L, ExitingBB, /*IsTaken*/ !*EV);
/openbsd-current/gnu/llvm/clang/include/clang/Format/
H A DFormat.h48 std::string message(int EV) const override;
/openbsd-current/gnu/llvm/llvm/lib/IR/
H A DCore.cpp2998 if (auto *EV = dyn_cast<ExtractValueInst>(I))
2999 return EV->getNumIndices();
3008 if (auto *EV = dyn_cast<ExtractValueInst>(I))
3009 return EV->getIndices().data();
/openbsd-current/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp1525 const auto *EV = dyn_cast<PathDiagnosticEventPiece>(NextI->get()); local
1526 if (EV) {
1527 StringRef S = EV->getString();
/openbsd-current/gnu/llvm/llvm/lib/Analysis/
H A DInstructionSimplify.cpp4882 if (ExtractValueInst *EV = dyn_cast<ExtractValueInst>(Val))
4883 if (EV->getAggregateOperand()->getType() == Agg->getType() &&
4884 EV->getIndices() == Idxs) {
4887 return EV->getAggregateOperand();
4890 if (Agg == EV->getAggregateOperand())
/openbsd-current/gnu/llvm/llvm/lib/Target/X86/
H A DX86FastISel.cpp230 const auto *EV = cast<ExtractValueInst>(Cond); local
231 if (!isa<IntrinsicInst>(EV->getAggregateOperand()))
234 const auto *II = cast<IntrinsicInst>(EV->getAggregateOperand());
/openbsd-current/gnu/llvm/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp818 SDValue EV = SV.getOperand(1);
819 if (EV.getOpcode() != ISD::EXTRACT_SUBVECTOR)
823 ConstantSDNode *EVidx = cast<ConstantSDNode>(EV.getOperand(1).getNode());
825 LaneOp = EV.getOperand(0);
H A DAArch64FastISel.cpp3361 const auto *EV = cast<ExtractValueInst>(Cond); local
3362 if (!isa<IntrinsicInst>(EV->getAggregateOperand()))
3365 const auto *II = cast<IntrinsicInst>(EV->getAggregateOperand());
/openbsd-current/gnu/llvm/clang/include/clang/AST/
H A DDecl.h1449 void setExceptionVariable(bool EV) {
1451 NonParmVarDeclBits.ExceptionVar = EV;
/openbsd-current/gnu/llvm/clang/lib/Format/
H A DFormat.cpp1144 std::string ParseErrorCategory::message(int EV) const {
1145 switch (static_cast<ParseError>(EV)) {
/openbsd-current/gnu/llvm/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp7025 auto *EV = cast<ExtractValueInst>(I);
7026 Type *AggregateTy = EV->getAggregateOperand()->getType();
/openbsd-current/gnu/usr.bin/perl/lib/unicore/
H A DName.pl36224 SQUARE EV
56669 OLD HUNGARIAN CAPITAL LETTER EV
56822 OLD HUNGARIAN SMALL LETTER EV
[all...]

Completed in 697 milliseconds