HomeSort by relevance Sort by last modified time
    Searched refs:catch_block (Results 1 - 17 of 17) sorted by null

  /art/compiler/optimizing/
block_builder.cc 211 bool HBasicBlockBuilder::MightHaveLiveNormalPredecessors(HBasicBlock* catch_block) {
213 DCHECK_NE(catch_block->GetDexPc(), kNoDexPc) << "Should not be called on synthetic blocks";
216 for (HBasicBlock* predecessor : catch_block->GetPredecessors()) {
222 const Instruction& first = GetDexInstructionAt(code_item_, catch_block->GetDexPc());
227 } else if (catch_block->GetPredecessors().empty()) {
292 HBasicBlock* catch_block = GetBlockAt(address); local
293 bool is_try_block = (try_block_info.find(catch_block->GetBlockId()) != try_block_info.end());
294 if (is_try_block || MightHaveLiveNormalPredecessors(catch_block)) {
297 new_catch_block->AddSuccessor(catch_block);
299 catch_block = new_catch_block
    [all...]
block_builder.h 64 // Helper method which decides whether `catch_block` may have live normal
69 bool MightHaveLiveNormalPredecessors(HBasicBlock* catch_block);
graph_checker.cc 471 for (HBasicBlock* catch_block : entry.GetExceptionHandlers()) {
472 for (HInstructionIterator phi_it(catch_block->GetPhis()); !phi_it.Done(); phi_it.Advance()) {
480 catch_block->GetBlockId(),
    [all...]
instruction_builder.cc 162 for (HBasicBlock* catch_block : try_entry.GetExceptionHandlers()) {
163 ArenaVector<HInstruction*>* handler_locals = GetLocalsFor(catch_block);
176 // This is the first instruction throwing into `catch_block` where
178 catch_block->RemovePhi(handler_value->AsPhi());
181 // Vreg has been defined at all instructions throwing into `catch_block`
    [all...]
  /external/v8/src/ast/
ast-literal-reindexer.cc 155 Visit(node->catch_block());
ast-expression-rewriter.cc 185 AST_REWRITE_PROPERTY(Block, node, catch_block);
ast-expression-visitor.cc 185 RECURSE(Visit(stmt->catch_block()));
prettyprinter.cc 204 Find(node->catch_block());
696 Visit(node->catch_block());
    [all...]
ast-numbering.cc 311 Visit(node->catch_block());
ast.h 1234 Block* catch_block() const { return catch_block_; } function in class:v8::internal::final
    [all...]
  /external/v8/src/compiler/
ast-loop-assignment-analyzer.cc 224 Visit(stmt->catch_block());
ast-graph-builder.cc     [all...]
  /external/v8/src/parsing/
parser.cc 3004 Block* catch_block = NULL; local
    [all...]
rewriter.cc 206 Visit(node->catch_block());
  /external/elfutils/libdw/
known-dwarf.h 561 DWARF_ONE_KNOWN_DW_TAG (catch_block, DW_TAG_catch_block) \
    [all...]
  /external/v8/src/crankshaft/
typing.cc 322 RECURSE(Visit(stmt->catch_block()));
  /external/v8/src/full-codegen/
full-codegen.cc     [all...]

Completed in 473 milliseconds