Home
last modified time | relevance | path

Searched refs:LP (Results 1 – 4 of 4) sorted by relevance

/frameworks/compile/slang/BitWriter_3_2/
DBitcodeWriter.cpp1272 const LandingPadInst &LP = cast<LandingPadInst>(I); in WriteInstruction() local
1274 Vals.push_back(VE.getTypeID(LP.getType())); in WriteInstruction()
1277 Vals.push_back(LP.isCleanup()); in WriteInstruction()
1278 Vals.push_back(LP.getNumClauses()); in WriteInstruction()
1279 for (unsigned I = 0, E = LP.getNumClauses(); I != E; ++I) { in WriteInstruction()
1280 if (LP.isCatch(I)) in WriteInstruction()
1284 PushValueAndType(LP.getClause(I), InstID, Vals, VE); in WriteInstruction()
/frameworks/compile/slang/BitWriter_2_9_func/
DBitcodeWriter.cpp1240 const LandingPadInst &LP = cast<LandingPadInst>(I); in WriteInstruction() local
1242 Vals.push_back(VE.getTypeID(LP.getType())); in WriteInstruction()
1245 Vals.push_back(LP.isCleanup()); in WriteInstruction()
1246 Vals.push_back(LP.getNumClauses()); in WriteInstruction()
1247 for (unsigned I = 0, E = LP.getNumClauses(); I != E; ++I) { in WriteInstruction()
1248 if (LP.isCatch(I)) in WriteInstruction()
1252 PushValueAndType(LP.getClause(I), InstID, Vals, VE); in WriteInstruction()
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
DBitcodeReader.cpp3299 LandingPadInst *LP = LandingPadInst::Create(ExnTy, 1); in ParseFunctionBody() local
3300 LP->setCleanup(true); in ParseFunctionBody()
3302 CurBB->getInstList().push_back(LP); in ParseFunctionBody()
3303 I = ResumeInst::Create(LP); in ParseFunctionBody()
3346 LandingPadInst *LP = LandingPadInst::Create(Ty, NumClauses); in ParseFunctionBody() local
3347 LP->setCleanup(IsCleanup); in ParseFunctionBody()
3354 delete LP; in ParseFunctionBody()
3364 LP->addClause(cast<Constant>(Val)); in ParseFunctionBody()
3367 I = LP; in ParseFunctionBody()
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
DBitcodeReader.cpp3042 LandingPadInst *LP = LandingPadInst::Create(ExnTy, 1); in ParseFunctionBody() local
3043 LP->setCleanup(true); in ParseFunctionBody()
3045 CurBB->getInstList().push_back(LP); in ParseFunctionBody()
3046 I = ResumeInst::Create(LP); in ParseFunctionBody()