HomeSort by relevance Sort by last modified time
    Searched refs:catch_block (Results 1 - 19 of 19) 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/parsing/
parser.cc 2992 Block* catch_block = NULL; local
4654 Block* catch_block = local
6360 Block* catch_block = factory->NewBlock(nullptr, 1, false, nopos); local
6680 Block* catch_block = factory->NewBlock(nullptr, 2, false, nopos); local
6772 Block* catch_block = factory->NewBlock(nullptr, 0, false, nopos); local
    [all...]
rewriter.cc 207 Visit(node->catch_block());
  /external/v8/src/ast/
ast-literal-reindexer.cc 156 Visit(node->catch_block());
ast-expression-rewriter.cc 183 AST_REWRITE_PROPERTY(Block, node, catch_block);
ast.h 1183 Block* catch_block() const { return catch_block_; } function in class:v8::internal::final
    [all...]
prettyprinter.cc 206 Find(node->catch_block());
724 Visit(node->catch_block());
    [all...]
ast-numbering.cc 310 Visit(node->catch_block());
ast.cc 965 RECURSE(Visit(stmt->catch_block()));
    [all...]
  /external/v8/src/compiler/
ast-loop-assignment-analyzer.cc 224 Visit(stmt->catch_block());
ast-graph-builder.cc     [all...]
  /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 316 RECURSE(Visit(stmt->catch_block()));
  /external/v8/test/mjsunit/
debug-scopes.js 1153 var code2 = "function catch_block() { \n" +
1162 "catch_block(); \n";
    [all...]
  /external/v8/src/full-codegen/
full-codegen.cc     [all...]
  /external/v8/src/interpreter/
bytecode-generator.cc     [all...]

Completed in 272 milliseconds