Searched defs:EV (Results 1 - 13 of 13) sorted by relevance

/external/llvm/lib/Support/
H A DErrorHandling.cpp151 std::error_code llvm::mapWindowsError(unsigned EV) { argument
152 switch (EV) {
203 return std::error_code(EV, std::system_category());
/external/swiftshader/third_party/llvm-subzero/lib/Support/
H A DErrorHandling.cpp151 std::error_code llvm::mapWindowsError(unsigned EV) { argument
152 switch (EV) {
203 return std::error_code(EV, std::system_category());
/external/clang/test/Sema/
H A Dms_class_layout.cpp140 struct EV : CV, DV { struct in inherits:CV,DV
159 EV *j;
465 // CHECK: 0 | struct EV
479 // CHECK: %struct.EV = type { %struct.DV, %struct.CV.base, i32, %struct.BV }
480 // CHECK: %struct.EV.base = type { %struct.DV, %struct.CV.base }
/external/llvm/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp1002 ExtractValueInst *EV = ExtractValueInst::Create(OldRet, i, local
1008 RetVal = InsertValueInst::Create(RetVal, EV, NewRetIdxs[i],
1013 RetVal = EV;
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp936 ExtractValueInst *EV = ExtractValueInst::Create(OldRet, i, local
942 RetVal = InsertValueInst::Create(RetVal, EV, NewRetIdxs[i],
947 RetVal = EV;
/external/llvm/lib/CodeGen/
H A DAtomicExpandPass.cpp1150 ExtractValueInst *EV = dyn_cast<ExtractValueInst>(User); local
1151 if (!EV)
1154 assert(EV->getNumIndices() == 1 && EV->getIndices()[0] <= 1 &&
1157 if (EV->getIndices()[0] == 0)
1158 EV->replaceAllUsesWith(Loaded);
1160 EV->replaceAllUsesWith(Success);
1162 PrunedInsts.push_back(EV);
1166 for (auto EV : PrunedInsts)
1167 EV
[all...]
/external/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAG.cpp1360 unsigned EV = EN->getZExtValue(); local
1361 if (EV % (1 << CV) != 0)
1363 unsigned DV = EV / (1 << CV);
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp1256 Instruction *InstCombiner::visitExtractValueInst(ExtractValueInst &EV) { argument
1257 Value *Agg = EV.getAggregateOperand();
1259 if (!EV.hasIndices())
1260 return ReplaceInstUsesWith(EV, Agg);
1264 return ReplaceInstUsesWith(EV, UndefValue::get(EV.getType()));
1267 return ReplaceInstUsesWith(EV, Constant::getNullValue(EV.getType()));
1271 Value *V = C->getOperand(*EV.idx_begin());
1272 if (EV
[all...]
/external/clang/test/SemaCXX/
H A Dtype-traits.cpp8 enum Enum { EV }; enumerator in enum:Enum
/external/llvm/lib/Target/X86/
H A DX86FastISel.cpp271 const auto *EV = cast<ExtractValueInst>(Cond); local
272 if (!isa<IntrinsicInst>(EV->getAggregateOperand()))
275 const auto *II = cast<IntrinsicInst>(EV->getAggregateOperand());
/external/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp2231 Instruction *InstCombiner::visitExtractValueInst(ExtractValueInst &EV) { argument
2232 Value *Agg = EV.getAggregateOperand();
2234 if (!EV.hasIndices())
2235 return replaceInstUsesWith(EV, Agg);
2238 SimplifyExtractValueInst(Agg, EV.getIndices(), DL, TLI, DT, AC))
2239 return replaceInstUsesWith(EV, V);
2244 for (exti = EV.idx_begin(), insi = IV->idx_begin(),
2245 exte = EV.idx_end(), inse = IV->idx_end();
2258 EV.getIndices());
2265 return replaceInstUsesWith(EV, I
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp2068 PathDiagnosticEventPiece *EV = dyn_cast<PathDiagnosticEventPiece>(*NextI); local
2069 if (EV) {
2070 StringRef S = EV->getString();
/external/llvm/lib/Target/AArch64/
H A DAArch64FastISel.cpp3247 const auto *EV = cast<ExtractValueInst>(Cond); local
3248 if (!isa<IntrinsicInst>(EV->getAggregateOperand()))
3251 const auto *II = cast<IntrinsicInst>(EV->getAggregateOperand());

Completed in 553 milliseconds