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:__anon9911
76 DCE() : FunctionPass(ID) { function in struct:__anon9911::DCE
88 char DCE::ID = 0;
89 INITIALIZE_PASS(DCE, "dce", "Dead Code Elimination", false, false)
91 bool DCE::runOnFunction(Function &F) {
132 return new DCE();
/external/clang/lib/CodeGen/
H A DCGExprCXX.cpp1871 const CXXDynamicCastExpr *DCE) {
1872 QualType DestTy = DCE->getTypeAsWritten();
1874 if (DCE->isAlwaysNull())
1877 QualType SrcTy = DCE->getSubExpr()->getType();
1870 EmitDynamicCast(llvm::Value *Value, const CXXDynamicCastExpr *DCE) argument
H A DCGExpr.cpp2744 const CXXDynamicCastExpr *DCE = cast<CXXDynamicCastExpr>(E); local
2745 return MakeAddrLValue(EmitDynamicCast(V, DCE), E->getType());
H A DCGExprScalar.cpp1252 const CXXDynamicCastExpr *DCE = cast<CXXDynamicCastExpr>(CE); local
1253 return CGF.EmitDynamicCast(V, DCE);
/external/clang/lib/AST/
H A DExpr.cpp2855 const CXXDynamicCastExpr *DCE = cast<CXXDynamicCastExpr>(this); local
2856 if (DCE->getTypeAsWritten()->isReferenceType() &&
2857 DCE->getCastKind() == CK_Dynamic)

Completed in 571 milliseconds