OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:jitentry
(Results
1 - 15
of
15
) sorted by null
/external/oprofile/opjitconv/
jitsymbol.c
36
struct
jitentry
const * entry;
44
static void fill_entry_array(struct
jitentry
* entries[])
47
struct
jitentry
* entry;
53
/* create an array pointing to the
jitentry
structures which is sorted
56
static struct
jitentry
** create_sorted_array(compare_symbol compare)
58
struct
jitentry
** array =
59
xmalloc(sizeof(struct
jitentry
*) * entry_count);
61
qsort(array, entry_count, sizeof(struct
jitentry
*), compare);
69
struct
jitentry
* a0 = *(struct
jitentry
**) a
[
all
...]
opjitconv.h
40
struct
jitentry
{
struct
42
struct
jitentry
* next;
117
* hold all
jitentry
elements. After parsing, the program works on the
121
extern struct
jitentry
* jitentry_list;
129
extern struct
jitentry
** entries_symbols_ascending;
131
extern struct
jitentry
** entries_address_ascending;
create_bfd.c
32
struct
jitentry
const * e;
104
/* create a .text section. end_idx: index last
jitentry
(inclusive!) */
114
struct
jitentry
* ee = entries_address_ascending[end_idx];
153
struct
jitentry
const * e;
188
struct
jitentry
const * pred;
189
struct
jitentry
const * entry;
207
// this holds always if we have at least one
jitentry
238
// this holds always if we have at least one
jitentry
parse_dump.c
25
/* parse a code load record and add the entry to the
jitentry
list */
29
struct
jitentry
* entry;
37
entry = xcalloc(1, sizeof(struct
jitentry
));
39
//
jitentry
constructor
89
struct
jitentry
* entry;
237
* Build up
jitentry
structure and set global variables.
conversion.c
20
struct
jitentry
* entry, * next;
opjitconv.c
39
* hold all
jitentry
elements. After parsing, the program works on the
43
struct
jitentry
* jitentry_list = NULL;
67
struct
jitentry
** entries_symbols_ascending;
69
struct
jitentry
** entries_address_ascending;
/dalvik/vm/interp/
Jit.h
101
* the size of
JitEntry
struct - the Dalvik PC to
JitEntry
142
struct
JitEntry
{
164
JitEntry
*dvmJitFindEntry(const u2* pc, bool isMethodEntry);
Jit.cpp
561
static
JitEntry
*lookupAndAdd(const u2* dPC, bool callerLocked,
[
all
...]
/dalvik/vm/compiler/codegen/x86/
CodegenInterface.cpp
174
const
JitEntry
*knownEntry) {
186
char *getTraceBase(const
JitEntry
*p)
209
static inline int getProfileCount(const
JitEntry
*entry)
221
const
JitEntry
*jitEntry1 = (const
JitEntry
*)entry1;
222
const
JitEntry
*jitEntry2 = (const
JitEntry
*)entry2;
232
JitEntry
*sortedEntries;
241
sortedEntries = (
JitEntry
*)malloc(sizeof(
JitEntry
) * gDvmJit.jitTableSize)
[
all
...]
/dalvik/vm/compiler/
Compiler.h
190
struct
JitEntry
;
246
const struct
JitEntry
*desc);
Compiler.cpp
323
/* Reset the
JitEntry
table contents to the initial unpopulated state */
389
JitEntry
*pJitTable = NULL;
433
pJitTable = (
JitEntry
*)
/dalvik/vm/compiler/codegen/arm/
Assemble.cpp
[
all
...]
/dalvik/vm/compiler/codegen/mips/
Assemble.cpp
630
static inline char *getTraceBase(const
JitEntry
*p)
637
static inline JitTraceCounter_t getProfileCount(const
JitEntry
*entry)
649
static inline void resetProfileCount(const
JitEntry
*entry)
[
all
...]
/dalvik/vm/
Globals.h
790
struct
JitEntry
*pJitEntryTable;
[
all
...]
/external/oprofile/
TODO
200
in a single left to right walk of the
jitentry
list.
Completed in 1026 milliseconds