Searched defs:vma (Results 1 - 20 of 20) sorted by relevance

/external/oprofile/libopagent/
H A Dopagent.h38 unsigned long vma; member in struct:debug_line_info
76 * vma: The virtual memory address of the executable code.
79 * that given by the vma argument. For some JIT compilers,
90 uint64_t vma, void const * code,
117 * vma: The virtual memory address of the compiled code being unloaded.
118 * An op_write_native_code() with the same vma should have
124 int op_unload_native_code(op_agent_t hdl, uint64_t vma);
H A Djitdump.h69 u64 vma; member in struct:jr_code_load
80 u64 vma; member in struct:jr_code_unload
H A Dopagent.c222 uint64_t vma, void const * code, unsigned int const size)
240 rec.vma = vma;
320 if (!fwrite_unlocked(&compile_map[i].vma,
321 sizeof(compile_map[i].vma), 1,
354 int op_unload_native_code(op_agent_t hdl, uint64_t vma) argument
367 rec.vma = vma;
221 op_write_native_code(op_agent_t hdl, char const * symbol_name, uint64_t vma, void const * code, unsigned int const size) argument
/external/oprofile/libpp/
H A Dsymbol_sort.h29 vma, enumerator in enum:sort_options::sort_order
H A Dprofile.h172 odb_key_t vma() const { return it->first + start_offset; } function in class:profile_t::const_iterator
H A Dsymbol.h49 /// associate vma address with a file location and a samples count
51 sample_entry() : vma(0) {}
55 bfd_vma vma; member in struct:sample_entry
61 /// associate a symbol with a file location, samples count and vma address
75 /// file location, vma and cumulated samples count for this symbol
79 /// symbol size as calculated by op_bfd, start of symbol is sample.vma
H A Dformat_output.cpp56 string get_vma(bfd_vma vma, bool vma_64) argument
61 out << hex << setw(width) << setfill('0') << vma;
103 format_map[ff_vma] = field_description(9, "vma", &formatter::format_vma);
166 // first output the vma field
266 return get_vma(f.sample.vma, vma_64);
374 // first output the vma field
801 // first output the vma field
/external/oprofile/opjitconv/
H A Dopjitconv.h43 /* vma */
44 unsigned long long vma; member in struct:jitentry
103 size_t size, bfd_vma vma, flagword flags);
H A Dcreate_bfd.c58 s->value = e->vma - section->vma;
76 size_t size, bfd_vma vma, flagword flags)
86 if (bfd_set_section_vma(abfd, section, vma) == FALSE) {
113 entries_address_ascending[start_idx]->vma;
115 unsigned long long vma_end = ee->vma + ee->code_size;
152 entries_address_ascending[start_idx]->vma;
159 " vma = %llx, offset = %llx,"
163 e->vma, e->vma
75 create_section(bfd * abfd, char const * section_name, size_t size, bfd_vma vma, flagword flags) argument
[all...]
/external/chromium_org/v8/src/third_party/kernel/tools/perf/util/
H A Djitdump.h46 uint64_t vma; member in struct:jr_code_load
61 uint64_t vma; member in struct:jr_code_move
/external/oprofile/module/
H A Dop_dname.c91 int oprof_hash_map_mmap(struct file * file, struct vm_area_struct * vma) argument
93 ulong start = (ulong)vma->vm_start;
95 ulong size = (ulong)(vma->vm_end-vma->vm_start);
97 if (size > PAGE_ALIGN(OP_HASH_MAP_SIZE) || (vma->vm_flags & VM_WRITE) || GET_VM_OFFSET(vma))
H A Doprofile.c411 static int oprof_mmap(struct file * file, struct vm_area_struct * vma) argument
414 return oprof_hash_map_mmap(file, vma);
/external/oprofile/libutil++/
H A Dop_bfd.cpp61 section_vma(a->section->vma),
80 op_bfd_symbol::op_bfd_symbol(bfd_vma vma, size_t size, string const & name) argument
81 : bfd_symbol(0), symb_value(vma),
171 if (sect->vma == 0 && strcmp(sect->name, ".text"))
195 unsigned long op_bfd::get_start_offset(bfd_vma vma) const
197 if (!vma || !ibfd.valid()) {
249 // we need to ensure than for a given vma only one symbol exist else
254 if (temp != symbols.end() && (it->vma() == temp->vma()) &&
268 // between the vma o
[all...]
H A Dop_bfd.h48 op_bfd_symbol(bfd_vma vma, size_t size, std::string const & name);
50 bfd_vma vma() const { return symb_value + section_vma; } function in class:op_bfd_symbol
75 /// the section vma for this symbol
93 * symbols and retrieving informations for symbols or vma.
158 * @param start reference to the start vma
159 * @param end reference to the end vma
161 * return in start, end the vma range for this binary object.
171 * vma.
173 unsigned long get_start_offset(bfd_vma vma = 0) const;
182 /// sorted vector by vma o
[all...]
/external/oprofile/pp/
H A Dopgprof.cpp44 void op_write_vma(FILE * fp, op_bfd const & abfd, bfd_vma vma) argument
46 // bfd vma write size is a per binary property not a bfd
50 op_write_u32(fp, vma);
53 op_write_u64(fp, vma);
56 cerr << "oprofile: unknown vma size for this binary\n";
71 if (it->second.vma < min)
72 min = it->second.vma;
73 if (it->second.vma > max)
74 max = it->second.vma;
100 if (it->second.vma
[all...]
H A Dopannotate.cpp82 // strtoull must work, assuming unsigned long long can contain a vma
84 bfd_vma vma = strtoull(str_vma.c_str(), NULL, 16); local
86 return samples->find_symbol(image_name, vma);
179 // strtoull must work, assuming unsigned long long can contain a vma
182 bfd_vma vma = strtoull((*sit).c_str(), NULL, 16); local
185 && ((sample->vma < last_symbol_vma) || (sample->vma > vma))) {
187 } else if (sample && sample->vma == vma) {
[all...]
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dtrace.c127 bfd_vma vma; local
136 vma = bfd_get_section_vma(abfd, section);
137 if (data->pc < vma)
141 if (data->pc >= vma + size)
145 data->pc - vma,
/external/wpa_supplicant_8/src/utils/
H A Dtrace.c127 bfd_vma vma; local
136 vma = bfd_get_section_vma(abfd, section);
137 if (data->pc < vma)
141 if (data->pc >= vma + size)
145 data->pc - vma,
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dtrace.c127 bfd_vma vma; local
136 vma = bfd_get_section_vma(abfd, section);
137 if (data->pc < vma)
141 if (data->pc >= vma + size)
145 data->pc - vma,
/external/linux-tools-perf/perf-3.12.0/include/linux/
H A Dperf_event.h685 extern void perf_event_mmap(struct vm_area_struct *vma);
796 static inline void perf_event_mmap(struct vm_area_struct *vma) { } argument

Completed in 725 milliseconds