Searched defs:DCE (Results 1 - 5 of 5) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
H A DDCE.cpp1 //===- DCE.cpp - Code to perform dead code elimination --------------------===//
77 struct DCE : public FunctionPass { struct in namespace:__anon26273
79 DCE() : FunctionPass(ID) { function in struct:__anon26273::DCE
91 char DCE::ID = 0;
92 INITIALIZE_PASS(DCE, "dce", "Dead Code Elimination", false, false)
94 bool DCE::runOnFunction(Function &F) {
138 return new DCE();
/external/clang/lib/CodeGen/
H A DCGExprCXX.cpp1690 const CXXDynamicCastExpr *DCE) {
1691 QualType DestTy = DCE->getTypeAsWritten();
1693 if (DCE->isAlwaysNull())
1697 QualType SrcTy = DCE->getSubExpr()->getType();
1689 EmitDynamicCast(llvm::Value *Value, const CXXDynamicCastExpr *DCE) argument
H A DCGExpr.cpp2840 const auto *DCE = cast<CXXDynamicCastExpr>(E); local
2841 return MakeAddrLValue(EmitDynamicCast(V, DCE), E->getType());
H A DCGExprScalar.cpp1349 const CXXDynamicCastExpr *DCE = cast<CXXDynamicCastExpr>(CE); local
1350 return CGF.EmitDynamicCast(V, DCE);
/external/clang/lib/AST/
H A DExpr.cpp2955 const CXXDynamicCastExpr *DCE = cast<CXXDynamicCastExpr>(this); local
2956 if (DCE->getTypeAsWritten()->isReferenceType() &&
2957 DCE->getCastKind() == CK_Dynamic)

Completed in 90 milliseconds