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

/external/llvm/include/llvm/Support/
H A DWindowsError.h16 std::error_code mapWindowsError(unsigned EV);
/external/llvm/lib/Object/
H A DError.cpp33 std::string _object_error_category::message(int EV) const {
34 object_error E = static_cast<object_error>(EV);
/external/llvm/tools/llvm-readobj/
H A DError.cpp31 std::string _readobj_error_category::message(int EV) const {
32 switch (static_cast<readobj_error>(EV)) {
/external/clang/test/Sema/
H A Dms_class_layout.cpp140 struct EV : CV, DV { struct in inherits:CV,DV
159 EV *j;
472 // CHECK: 0 | struct EV
486 // CHECK: %struct.EV = type { %struct.DV, %struct.CV.base, i32, %struct.BV }
487 // CHECK: %struct.EV.base = type { %struct.DV, %struct.CV.base }
/external/llvm/lib/Support/
H A DErrorHandling.cpp150 std::error_code llvm::mapWindowsError(unsigned EV) { argument
151 switch (EV) {
202 return std::error_code(EV, std::system_category());
/external/llvm/lib/CodeGen/
H A DAtomicExpandPass.cpp504 ExtractValueInst *EV = dyn_cast<ExtractValueInst>(User); local
505 if (!EV)
508 assert(EV->getNumIndices() == 1 && EV->getIndices()[0] <= 1 &&
511 if (EV->getIndices()[0] == 0)
512 EV->replaceAllUsesWith(Loaded);
514 EV->replaceAllUsesWith(Success);
516 PrunedInsts.push_back(EV);
520 for (auto EV : PrunedInsts)
521 EV
[all...]
/external/llvm/lib/Transforms/IPO/
H A DIPConstantPropagation.cpp257 if (ExtractValueInst *EV = dyn_cast<ExtractValueInst>(Ins))
258 if (EV->hasIndices())
259 index = *EV->idx_begin();
H A DDeadArgumentElimination.cpp1071 ExtractValueInst *EV = ExtractValueInst::Create(OldRet, i, local
1077 RetVal = InsertValueInst::Create(RetVal, EV, NewRetIdxs[i],
1082 RetVal = EV;
/external/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp2137 Instruction *InstCombiner::visitExtractValueInst(ExtractValueInst &EV) { argument
2138 Value *Agg = EV.getAggregateOperand();
2140 if (!EV.hasIndices())
2141 return ReplaceInstUsesWith(EV, Agg);
2144 if (Constant *C2 = C->getAggregateElement(*EV.idx_begin())) {
2145 if (EV.getNumIndices() == 0)
2146 return ReplaceInstUsesWith(EV, C2);
2149 return ExtractValueInst::Create(C2, EV.getIndices().slice(1));
2157 for (exti = EV.idx_begin(), insi = IV->idx_begin(),
2158 exte = EV
[all...]
H A DInstCombineInternal.h334 Instruction *visitExtractValueInst(ExtractValueInst &EV);
/external/clang/include/clang/Format/
H A DFormat.h35 std::string message(int EV) const override;
/external/clang/lib/Format/
H A DFormat.cpp312 std::string ParseErrorCategory::message(int EV) const {
313 switch (static_cast<ParseError>(EV)) {
/external/llvm/lib/Analysis/
H A DInstructionSimplify.cpp3351 if (ExtractValueInst *EV = dyn_cast<ExtractValueInst>(Val))
3352 if (EV->getAggregateOperand()->getType() == Agg->getType() &&
3353 EV->getIndices() == Idxs) {
3356 return EV->getAggregateOperand();
3359 if (Agg == EV->getAggregateOperand())
/external/clang/include/clang/AST/
H A DDecl.h1177 void setExceptionVariable(bool EV) { VarDeclBits.ExceptionVar = EV; }
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp408 SDValue EV = SV.getOperand(1);
409 if (EV.getOpcode() != ISD::EXTRACT_SUBVECTOR)
413 ConstantSDNode *EVidx = cast<ConstantSDNode>(EV.getOperand(1).getNode());
415 LaneOp = EV.getOperand(0);
H A DAArch64FastISel.cpp3242 const auto *EV = cast<ExtractValueInst>(Cond); local
3243 if (!isa<IntrinsicInst>(EV->getAggregateOperand()))
3246 const auto *II = cast<IntrinsicInst>(EV->getAggregateOperand());
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp2070 PathDiagnosticEventPiece *EV = dyn_cast<PathDiagnosticEventPiece>(*NextI); local
2071 if (EV) {
2072 StringRef S = EV->getString();
/external/llvm/lib/Target/X86/
H A DX86FastISel.cpp252 const auto *EV = cast<ExtractValueInst>(Cond); local
253 if (!isa<IntrinsicInst>(EV->getAggregateOperand()))
256 const auto *II = cast<IntrinsicInst>(EV->getAggregateOperand());
/external/clang/test/SemaCXX/
H A Dtype-traits.cpp8 enum Enum { EV }; enumerator in enum:Enum
/external/v8/tools/profviz/
H A Dgnuplot-4.6.3-emscripten.js[all...]

Completed in 3671 milliseconds