/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | WinEHPrepare.cpp | 772 BasicBlock *NewBlock = BBMapping.second; in cloneCommonBlocks() local 774 BlocksInFunclet.push_back(NewBlock); in cloneCommonBlocks() 775 ColorVector &NewColors = BlockColors[NewBlock]; in cloneCommonBlocks() 781 << "\' to block \'" << NewBlock->getName() in cloneCommonBlocks() 811 BasicBlock *NewBlock = BBMapping.second; in cloneCommonBlocks() local 820 CatchRet->setSuccessor(NewBlock); in cloneCommonBlocks() 854 BasicBlock *NewBlock = BBMapping.second; in cloneCommonBlocks() local 858 for (PHINode &NewPN : NewBlock->phis()) { in cloneCommonBlocks() 867 BasicBlock *NewBlock = BBMapping.second; in cloneCommonBlocks() local 868 for (BasicBlock *SuccBB : successors(NewBlock)) { in cloneCommonBlocks() [all …]
|
/external/llvm/lib/CodeGen/ |
D | WinEHPrepare.cpp | 758 BasicBlock *NewBlock = BBMapping.second; in cloneCommonBlocks() local 760 BlocksInFunclet.push_back(NewBlock); in cloneCommonBlocks() 761 ColorVector &NewColors = BlockColors[NewBlock]; in cloneCommonBlocks() 767 << "\' to block \'" << NewBlock->getName() in cloneCommonBlocks() 797 BasicBlock *NewBlock = BBMapping.second; in cloneCommonBlocks() local 806 CatchRet->setSuccessor(NewBlock); in cloneCommonBlocks() 840 BasicBlock *NewBlock = BBMapping.second; in cloneCommonBlocks() local 847 for (Instruction &NewI : *NewBlock) { in cloneCommonBlocks() 859 BasicBlock *NewBlock = BBMapping.second; in cloneCommonBlocks() local 860 for (BasicBlock *SuccBB : successors(NewBlock)) { in cloneCommonBlocks() [all …]
|
/external/v8/src/torque/ |
D | cfg.h | 99 start_ = NewBlock(std::move(input_types), false); in ControlFlowGraph() 103 Block* NewBlock(base::Optional<Stack<const Type*>> input_types, in NewBlock() function 158 Block* NewBlock( 161 return cfg_.NewBlock(std::move(input_types), is_deferred);
|
D | implementation-visitor.cc | 307 macro_end = assembler().NewBlock(std::move(stack)); in InlineMacro() 423 Block* block = assembler().NewBlock(std::move(label_input_stack)); in VisitMacroCommon() 429 Block* end = assembler().NewBlock(); in VisitMacroCommon() 720 Block* true_block = assembler().NewBlock(assembler().CurrentStack()); in Visit() 721 Block* false_block = assembler().NewBlock(assembler().CurrentStack()); in Visit() 722 Block* done_block = assembler().NewBlock(); in Visit() 723 Block* true_conversion_block = assembler().NewBlock(); in Visit() 775 Block* true_block = assembler().NewBlock(); in Visit() 776 Block* false_block = assembler().NewBlock(); in Visit() 777 Block* done_block = assembler().NewBlock(); in Visit() [all …]
|
/external/protobuf/src/google/protobuf/ |
D | arena.cc | 109 ArenaImpl::Block* ArenaImpl::NewBlock(Block* last_block, size_t min_bytes) { in NewBlock() function in google::protobuf::internal::ArenaImpl 228 head_ = arena_->NewBlock(head_, n); in AllocateAlignedFallback() 378 Block* b = NewBlock(NULL, kSerialArenaSize); in GetSerialArenaFallback()
|
D | arena_impl.h | 292 Block* NewBlock(Block* last_block, size_t min_bytes);
|
/external/v8/src/parsing/ |
D | parser.cc | 612 block = factory()->NewBlock(true, statements); in DoParseProgram() 776 block = factory()->NewBlock(true, statements); in ParseREPLProgram() 1720 return factory()->NewBlock(true, statements); in BuildInitializationBlock() 1783 Block* block = factory()->NewBlock(1, true); in IgnoreCompletion() 1836 Block* switch_block = factory()->NewBlock(2, false); in RewriteSwitchStatement() 1851 Block* cases_block = factory()->NewBlock(1, false); in RewriteSwitchStatement() 1882 return factory()->NewBlock(true, init_statements); in RewriteCatchPattern() 1917 try_block = factory()->NewBlock(1, false); in RewriteTryStatement() 1985 try_block = factory()->NewBlock(false, statements); in ParseAndRewriteAsyncGeneratorFunctionBody() 2009 try_block = factory()->NewBlock(false, statements); in ParseAndRewriteAsyncGeneratorFunctionBody() [all …]
|
D | rewriter.cc | 118 Block* b = factory()->NewBlock(2, false); in AssignUndefinedBefore()
|
D | preparser.h | 703 PreParserBlock NewBlock(int capacity, bool ignore_completion_value) { in NewBlock() function 707 PreParserBlock NewBlock(bool ignore_completion_value, bool is_breakable) { in NewBlock() function 711 PreParserBlock NewBlock(bool ignore_completion_value, in NewBlock() function
|
D | parser-base.h | 4168 BlockT block = factory()->NewBlock(1, true); in ParseFunctionBody() 4229 BlockT inner_block = factory()->NewBlock(true, inner_body); in ParseFunctionBody() 4616 block = factory()->NewBlock(true, statements); in ParseAsyncFunctionBody() 5046 BlockT result = factory()->NewBlock(false, true); in ParseStatement() 5096 BlockT body = factory()->NewBlock(false, labels != nullptr); in ParseBlock() 5138 BlockT block = factory()->NewBlock(1, false); in ParseScopedStatement() 5713 catch_block = factory()->NewBlock(false, catch_statements); in ParseTryStatement() 6038 BlockT block = factory()->NewBlock(2, false); in ParseStandardForLoopWithLexicalDeclarations()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Vectorize/ |
D | VPlan.h | 1380 static void insertBlockAfter(VPBlockBase *NewBlock, VPBlockBase *BlockPtr) { 1381 assert(NewBlock->getSuccessors().empty() && 1386 BlockPtr->setOneSuccessor(NewBlock); 1387 NewBlock->setPredecessors({BlockPtr}); 1388 NewBlock->setParent(BlockPtr->getParent());
|
/external/llvm/lib/Transforms/Utils/ |
D | LoopUnroll.cpp | 483 for (BasicBlock *NewBlock : NewBlocks) in UnrollLoop() 484 for (Instruction &I : *NewBlock) in UnrollLoop()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/ |
D | LoopUnroll.cpp | 678 for (BasicBlock *NewBlock : NewBlocks) { in UnrollLoop() 679 for (Instruction &I : *NewBlock) { in UnrollLoop()
|
D | LoopUnrollAndJam.cpp | 372 for (BasicBlock *NewBlock : NewBlocks) { in UnrollAndJamLoop() 373 for (Instruction &I : *NewBlock) { in UnrollAndJamLoop()
|
D | InlineFunction.cpp | 1761 for (BasicBlock &NewBlock : in InlineFunction() 1763 for (Instruction &I : NewBlock) { in InlineFunction()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Coroutines/ |
D | CoroSplit.cpp | 441 scanPHIsAndUpdateValueMap(Instruction *Prev, BasicBlock *NewBlock, in scanPHIsAndUpdateValueMap() argument 444 for (PHINode &PN : NewBlock->phis()) { in scanPHIsAndUpdateValueMap()
|
D | CoroFrame.cpp | 448 BasicBlock *NewBlock = CurrentBlock->splitBasicBlock(CatchSwitch); in splitBeforeCatchSwitch() local 454 CleanupReturnInst::Create(CleanupPad, NewBlock, CurrentBlock); in splitBeforeCatchSwitch()
|
/external/v8/src/ast/ |
D | ast.h | 2746 Block* NewBlock(int capacity, bool ignore_completion_value) { in NewBlock() function 2750 Block* NewBlock(bool ignore_completion_value, bool is_breakable) { in NewBlock() function 2754 Block* NewBlock(bool ignore_completion_value, in NewBlock() function 2756 Block* result = NewBlock(ignore_completion_value, false); in NewBlock()
|