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

12

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DWindowsError.h15 std::error_code mapWindowsError(unsigned EV);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DError.cpp33 std::string _readobj_error_category::message(int EV) const {
34 switch (static_cast<readobj_error>(EV)) {
/freebsd-11-stable/contrib/llvm-project/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);
/freebsd-11-stable/contrib/llvm-project/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);
427 friend raw_ostream &operator<< (raw_ostream &OS, const ExtValue &EV);
543 raw_ostream &operator<< (raw_ostream &OS, const HCE::ExtValue &EV) { argument
544 OS << HCE::ExtRoot(EV) << " off:" << EV
1419 const ExtValue &EV = P.first.first; local
1533 const ExtValue &EV = ExtI.first; local
1751 const ExtValue &EV = ExtI.first; (void)EV; local
[all...]
H A DHexagonISelDAGToDAG.cpp1059 unsigned EV = EN->getZExtValue(); local
1060 if (EV % (1 << CV) != 0)
1062 unsigned DV = EV / (1 << CV);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DErrorHandling.cpp243 std::error_code llvm::mapWindowsError(unsigned EV) { argument
244 switch (EV) {
295 return std::error_code(EV, std::system_category());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DIPConstantPropagation.cpp257 if (ExtractValueInst *EV = dyn_cast<ExtractValueInst>(Ins))
258 if (EV->getNumIndices() == 1)
259 index = *EV->idx_begin();
H A DDeadArgumentElimination.cpp1052 ExtractValueInst *EV = ExtractValueInst::Create(OldRet, i, local
1058 RetVal = InsertValueInst::Create(RetVal, EV, NewRetIdxs[i],
1063 RetVal = EV;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp2694 Instruction *InstCombiner::visitExtractValueInst(ExtractValueInst &EV) { argument
2695 Value *Agg = EV.getAggregateOperand();
2697 if (!EV.hasIndices())
2698 return replaceInstUsesWith(EV, Agg);
2700 if (Value *V = SimplifyExtractValueInst(Agg, EV.getIndices(),
2701 SQ.getWithInstruction(&EV)))
2702 return replaceInstUsesWith(EV, V);
2707 for (exti = EV.idx_begin(), insi = IV->idx_begin(),
2708 exte = EV.idx_end(), inse = IV->idx_end();
2721 EV
[all...]
H A DInstCombineInternal.h446 Instruction *visitExtractValueInst(ExtractValueInst &EV);
/freebsd-11-stable/libexec/getty/
H A Dgettytab.h69 #define EV gettystrs[9].value macro
H A Dsubr.c570 if ((p = EV)) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DAtomicExpandPass.cpp1284 ExtractValueInst *EV = dyn_cast<ExtractValueInst>(User); local
1285 if (!EV)
1288 assert(EV->getNumIndices() == 1 && EV->getIndices()[0] <= 1 &&
1291 if (EV->getIndices()[0] == 0)
1292 EV->replaceAllUsesWith(Loaded);
1294 EV->replaceAllUsesWith(Success);
1296 PrunedInsts.push_back(EV);
1300 for (auto EV : PrunedInsts)
1301 EV
[all...]
/freebsd-11-stable/usr.sbin/apmd/
H A Dapmd.c67 #define EVENT_CONFIG_INITIALIZER(EV,R) { #EV, NULL, R },
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyLowerEmscriptenEHSjLj.cpp851 Value *EV = IRB.CreateExtractValue(Clause, makeArrayRef(J), "filter"); local
852 FMCArgs.push_back(EV);
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DRegisterInfoEmitter.cpp1271 unsigned EV = 0; local
1279 assert(RC.EnumValue == EV++ && "Unexpected order of register classes");
1280 (void)EV;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Format/
H A DFormat.h42 std::string message(int EV) const override;
/freebsd-11-stable/sys/dev/hwpmc/
H A Dhwpmc_uncore.c488 #define UCPDESCR(N,EV,UM,FLAGS) { \
490 .ucp_evcode = (EV), \
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/
H A DFormat.cpp638 std::string ParseErrorCategory::message(int EV) const {
639 switch (static_cast<ParseError>(EV)) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp548 SDValue EV = SV.getOperand(1);
549 if (EV.getOpcode() != ISD::EXTRACT_SUBVECTOR)
553 ConstantSDNode *EVidx = cast<ConstantSDNode>(EV.getOperand(1).getNode());
555 LaneOp = EV.getOperand(0);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DCore.cpp2962 if (auto *EV = dyn_cast<ExtractValueInst>(I))
2963 return EV->getNumIndices();
2974 if (auto *EV = dyn_cast<ExtractValueInst>(I))
2975 return EV->getIndices().data();
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp1514 const auto *EV = dyn_cast<PathDiagnosticEventPiece>(NextI->get()); local
1515 if (EV) {
1516 StringRef S = EV->getString();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DInstructionSimplify.cpp4172 if (ExtractValueInst *EV = dyn_cast<ExtractValueInst>(Val))
4173 if (EV->getAggregateOperand()->getType() == Agg->getType() &&
4174 EV->getIndices() == Idxs) {
4177 return EV->getAggregateOperand();
4180 if (Agg == EV->getAggregateOperand())
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FastISel.cpp243 const auto *EV = cast<ExtractValueInst>(Cond); local
244 if (!isa<IntrinsicInst>(EV->getAggregateOperand()))
247 const auto *II = cast<IntrinsicInst>(EV->getAggregateOperand());
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h1340 void setExceptionVariable(bool EV) {
1342 NonParmVarDeclBits.ExceptionVar = EV;

Completed in 272 milliseconds

12