HomeSort by relevance Sort by last modified time
    Searched refs:cu (Results 1 - 25 of 199) sorted by null

1 2 3 4 5 6 7 8

  /external/elfutils/0.153/libdwfl/
dwfl_cumodule.c 1 /* Find the module for a CU DIE previously returned by libdwfl.
55 struct dwfl_cu *cu = (struct dwfl_cu *) cudie; local
56 return cu->mod;
dwfl_module_getsrc.c 60 struct dwfl_cu *cu; local
61 Dwfl_Error error = __libdwfl_addrcu (mod, addr, &cu);
63 error = __libdwfl_cu_getsrclines (cu);
70 size_t l = 0, u = cu->die.cu->lines->nlines;
74 if (addr < cu->die.cu->lines->info[idx].addr)
76 else if (addr > cu->die.cu->lines->info[idx].addr)
79 return &cu->lines->idx[idx]
    [all...]
lines.c 1 /* Fetch source line info for CU.
55 __libdwfl_cu_getsrclines (struct dwfl_cu *cu)
57 if (cu->lines == NULL)
61 if (INTUSE(dwarf_getsrclines) (&cu->die, &lines, &nlines) != 0)
64 cu->lines = malloc (offsetof (struct Dwfl_Lines, idx[nlines]));
65 if (cu->lines == NULL)
67 cu->lines->cu = cu;
69 cu->lines->idx[i].idx = i
    [all...]
dwfl_getsrclines.c 1 /* Fetch source line information for CU.
55 struct dwfl_cu *cu = (struct dwfl_cu *) cudie; local
57 if (cu->lines == NULL)
59 Dwfl_Error error = __libdwfl_cu_getsrclines (cu);
67 *nlines = cu->die.cu->lines->nlines;
dwfl_onesrcline.c 1 /* Return one of the sources lines of a CU.
55 struct dwfl_cu *cu = (struct dwfl_cu *) cudie; local
60 if (cu->lines == NULL)
62 Dwfl_Error error = __libdwfl_cu_getsrclines (cu);
70 if (idx >= cu->die.cu->lines->nlines)
76 return &cu->lines->idx[idx];
dwfl_dwarf_line.c 59 struct dwfl_cu *cu = dwfl_linecu (line); local
60 const Dwarf_Line *info = &cu->die.cu->lines->info[line->idx];
62 *bias = dwfl_adjusted_dwarf_addr (cu->mod, 0);
dwfl_linecu.c 60 struct dwfl_cu *cu = dwfl_linecu_inline (line); local
61 return &cu->die;
dwfl_module_addrdie.c 1 /* Fetch the CU DIE for a PC address in a given module.
58 struct dwfl_cu *cu; local
59 Dwfl_Error error = __libdwfl_addrcu (mod, addr, &cu);
61 return &cu->die;
dwfl_module_nextcu.c 58 struct dwfl_cu *cu; local
59 Dwfl_Error error = __libdwfl_nextcu (mod, (struct dwfl_cu *) lastcu, &cu);
61 return &cu->die; /* Same as a cast, so ok for null too. */
dwfl_nextcu.c 58 struct dwfl_cu *cu = (struct dwfl_cu *) lastcu; local
61 if (cu == NULL)
67 mod = cu->mod;
72 error = __libdwfl_nextcu (mod, cu, &cu);
76 if (cu != NULL)
79 return &cu->die;
cu.c 84 to the same CU. We don't care about the little gaps inside the
85 module, we'll consider them part of the surrounding CU anyway.
87 pointing to one CU. */
95 aranges[naranges].cu = NULL;
153 struct dwfl_cu *cu = arg; local
154 if (cu == (void *) -1l)
157 assert (cu->mod->lazycu == 0);
173 cudie_offset (const struct dwfl_cu *cu)
175 return DIE_OFFSET_FROM_CU_OFFSET (cu->die.cu->start, cu->die.cu->offset_size
213 struct dwfl_cu *cu = malloc (sizeof *cu); local
    [all...]
dwfl_line_comp_dir.c 59 struct dwfl_cu *cu = dwfl_linecu (line); local
61 return INTUSE(dwarf_formstring) (INTUSE(dwarf_attr) (&cu->die,
  /external/elfutils/0.153/libdw/
dwarf_formref_die.c 67 struct Dwarf_CU *cu = attr->cu; local
74 uint8_t ref_size = (cu->version == 2
75 ? cu->address_size
76 : cu->offset_size);
78 if (__libdw_read_offset (cu->dbg, IDX_debug_info, attr->valp,
82 return INTUSE(dwarf_offdie) (cu->dbg, offset, result);
91 uint64_t sig = read_8ubyte_unaligned (cu->dbg, attr->valp);
92 cu = Dwarf_Sig8_Hash_find (&cu->dbg->sig8_hash, sig, NULL)
    [all...]
dwarf_decl_file.c 78 /* Get the array of source files for the CU. */
79 struct Dwarf_CU *cu = die->cu; local
80 if (cu->lines == NULL)
87 (void) INTUSE(dwarf_getsrclines) (&CUDIE (cu), &lines, &nlines);
88 assert (cu->lines != NULL);
91 if (cu->lines == (void *) -1l)
99 assert (cu->files != NULL && cu->files != (void *) -1l);
101 if (idx >= cu->files->nfiles
    [all...]
dwarf_getsrcfiles.c 1 /* Return source file information of CU.
70 struct Dwarf_CU *const cu = cudie->cu; local
71 if (cu->lines == NULL)
80 else if (cu->files != (void *) -1l)
86 assert (cu->files != NULL && cu->files != (void *) -1l);
87 *files = cu->files;
89 *nfiles = cu->files->nfiles;
dwarf_diecu.c 1 /* Return CU DIE containing given DIE.
68 *result = CUDIE (die->cu);
71 *address_sizep = die->cu->address_size;
73 *offset_sizep = die->cu->offset_size;
dwarf_formaddr.c 73 if (__libdw_read_address (attr->cu->dbg,
74 cu_sec_idx (attr->cu), attr->valp,
75 attr->cu->address_size, return_addr))
dwarf_tag.c 60 __libdw_findabbrev (struct Dwarf_CU *cu, unsigned int code)
69 abb = Dwarf_Abbrev_Hash_find (&cu->abbrev_hash, code, NULL);
71 while (cu->last_abbrev_offset != (size_t) -1l)
77 abb = __libdw_getabbrev (cu->dbg, cu, cu->last_abbrev_offset, &length,
82 cu->last_abbrev_offset = (size_t) -1l;
86 cu->last_abbrev_offset += length;
115 die->abbrev = __libdw_findabbrev (die->cu, u128);
dwarf_cuoffset.c 1 /* Return offset of DIE in CU.
65 : (die->addr - cu_data (die->cu)->d_buf - die->cu->start));
dwarf_siblingof.c 81 /* Copy of the CU in the request. */
82 sibattr.cu = this_die.cu;
87 = ((unsigned char *) cu_data (sibattr.cu)->d_buf + sibattr.cu->end);
105 addr = ((unsigned char *) cu_data (sibattr.cu)->d_buf
106 + sibattr.cu->start + offset);
143 /* Maybe we reached the end of the CU. */
154 /* Same CU as the parent. */
155 result->cu = sibattr.cu
    [all...]
  /art/compiler/driver/
dex_compilation_unit.cc 26 DexCompilationUnit::DexCompilationUnit(CompilationUnit* cu)
27 : cu_(cu),
28 class_loader_(cu->class_loader),
29 class_linker_(cu->class_linker),
30 dex_file_(cu->dex_file),
31 code_item_(cu->code_item),
32 class_def_idx_(cu->class_def_idx),
33 dex_method_idx_(cu->method_idx),
34 access_flags_(cu->access_flags),
35 verified_method_(cu_->compiler_driver->GetVerifiedMethod(cu->dex_file, cu->method_idx))
    [all...]
  /art/compiler/dex/
pass_driver_me_post_opt.h 31 explicit PassDriverMEPostOpt(CompilationUnit* cu) : PassDriverME<PassDriverMEPostOpt>(cu) {
pass_driver_me_opts.h 31 explicit PassDriverMEOpts(CompilationUnit* cu):PassDriverME<PassDriverMEOpts>(cu) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/
dump.py 19 cu = connection.cursor()
30 schema_res = cu.execute(q)
50 res = cu.execute('PRAGMA table_info("{0}")'.format(table_name_ident))
55 query_res = cu.execute(q)
66 schema_res = cu.execute(q)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/
dump.py 19 cu = connection.cursor()
30 schema_res = cu.execute(q)
50 res = cu.execute('PRAGMA table_info("{0}")'.format(table_name_ident))
55 query_res = cu.execute(q)
66 schema_res = cu.execute(q)

Completed in 182 milliseconds

1 2 3 4 5 6 7 8