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 --------------------===//
74 struct DCE : public FunctionPass { struct in namespace:__anon9082
76 DCE() : FunctionPass(ID) { function in struct:__anon9082::DCE
88 char DCE::ID = 0;
89 INITIALIZE_PASS(DCE, "dce", "Dead Code Elimination", false, false)
91 bool DCE::runOnFunction(Function &F) {
137 return new DCE();
/external/clang/lib/CodeGen/
H A DCGExprCXX.cpp1786 const CXXDynamicCastExpr *DCE) {
1787 QualType DestTy = DCE->getTypeAsWritten();
1789 if (DCE->isAlwaysNull())
1792 QualType SrcTy = DCE->getSubExpr()->getType();
1785 EmitDynamicCast(llvm::Value *Value, const CXXDynamicCastExpr *DCE) argument
H A DCGExpr.cpp2460 const CXXDynamicCastExpr *DCE = cast<CXXDynamicCastExpr>(E); local
2461 return MakeAddrLValue(EmitDynamicCast(V, DCE), E->getType());
H A DCGExprScalar.cpp1078 const CXXDynamicCastExpr *DCE = cast<CXXDynamicCastExpr>(CE); local
1079 return CGF.EmitDynamicCast(V, DCE);
/external/clang/lib/AST/
H A DExpr.cpp2747 const CXXDynamicCastExpr *DCE = cast<CXXDynamicCastExpr>(this); local
2748 if (DCE->getTypeAsWritten()->isReferenceType() &&
2749 DCE->getCastKind() == CK_Dynamic)

Completed in 108 milliseconds