Go to the source code of this file.
|
static void | show_variable_intern (jitdata *jd, s4 index, int stage) |
|
bool | show_init (void) |
|
void | show_method (jitdata *jd, int stage) |
|
void | show_basicblock (jitdata *jd, basicblock *bptr, int stage) |
|
void | show_allocation (s4 type, s4 flags, s4 regoff) |
|
void | show_variable (jitdata *jd, s4 index, int stage) |
|
static void | show_variable_array_intern (jitdata *jd, s4 *vars, int n, int stage, bool javalocals) |
|
void | show_variable_array (jitdata *jd, s4 *vars, int n, int stage) |
|
void | show_javalocals_array (jitdata *jd, s4 *vars, int n, int stage) |
|
void | show_icmd (jitdata *jd, instruction *iptr, bool deadcode, int stage) |
|
static void | show_filter_init (show_filter_t *cf, const char *str, u1 flag, u1 default_flag, const char *description) |
|
void | show_filters_init (void) |
|
void | show_filters_apply (methodinfo *m) |
|
int | show_filters_test_verbosecall_enter (methodinfo *m) |
|
int | show_filters_test_verbosecall_exit (methodinfo *m) |
|
#define SHOW_ADR_CONST |
( |
|
val | ) |
|
Value:
#define PRINTF_INTPTR_NUM_HEXDIGITS
Definition at line 655 of file show.cpp.
#define SHOW_CLASSREF_OR_CLASSINFO |
( |
|
c | ) |
|
Value:
if (c.is_classref()) \
putchar(' '); \
} \
}
void class_print(classinfo *c)
void class_classref_print(constant_classref *cr)
Definition at line 699 of file show.cpp.
#define SHOW_DBL_CONST |
( |
|
val | ) |
|
Value:
imm_union v; \
printf(
"%g (0x%016" PRIx64
") ", (val), v.l); \
Definition at line 671 of file show.cpp.
#define SHOW_DST_LOCAL |
( |
|
iptr | ) |
|
Value:
printf(
"=> L%d ", iptr->dst.varindex); \
} \
printf(
"=> JavaL%d ", iptr->dst.varindex); \
}
Definition at line 752 of file show.cpp.
#define SHOW_FIELD |
( |
|
fmiref | ) |
|
Value:
putchar(' '); \
} \
}
void field_fieldref_print(constant_FMIref *fr)
Definition at line 711 of file show.cpp.
#define SHOW_FILTERS_SIZE 3 |
#define SHOW_FLT_CONST |
( |
|
val | ) |
|
Value:
imm_union v; \
printf(
"%g (0x%08x) ", (val), v.i); \
} \
}
Definition at line 661 of file show.cpp.
#define SHOW_INDEX |
( |
|
index | ) |
|
#define SHOW_INT_CONST |
( |
|
val | ) |
|
Value:
printf(
"%d (0x%08x) ", (int32_t) (val), (int32_t) (val)); \
} \
}
Definition at line 641 of file show.cpp.
#define SHOW_LNG_CONST |
( |
|
val | ) |
|
Value:
printf(
"%" PRId64
" (0x%016" PRIx64
") ", (val), (val));
\
Definition at line 649 of file show.cpp.
#define SHOW_S1_LOCAL |
( |
|
iptr | ) |
|
Value:
printf(
"L%d ", iptr->s1.varindex); \
} \
printf(
"JavaL%d ", iptr->s1.varindex); \
}
Definition at line 744 of file show.cpp.
#define SHOW_STRING |
( |
|
val | ) |
|
Value:
} \
}
void utf_display_printable_ascii(Utf8String u)
Definition at line 688 of file show.cpp.
void show_allocation |
( |
s4 |
type, |
|
|
s4 |
flags, |
|
|
s4 |
regoff |
|
) |
| |
static void show_filter_init |
( |
show_filter_t * |
cf, |
|
|
const char * |
str, |
|
|
u1 |
flag, |
|
|
u1 |
default_flag, |
|
|
const char * |
description |
|
) |
| |
|
static |
int show_filters_test_verbosecall_enter |
( |
methodinfo * |
m | ) |
|
int show_filters_test_verbosecall_exit |
( |
methodinfo * |
m | ) |
|
void show_javalocals_array |
( |
jitdata * |
jd, |
|
|
s4 * |
vars, |
|
|
int |
n, |
|
|
int |
stage |
|
) |
| |
void show_variable_array |
( |
jitdata * |
jd, |
|
|
s4 * |
vars, |
|
|
int |
n, |
|
|
int |
stage |
|
) |
| |
static void show_variable_array_intern |
( |
jitdata * |
jd, |
|
|
s4 * |
vars, |
|
|
int |
n, |
|
|
int |
stage, |
|
|
bool |
javalocals |
|
) |
| |
|
static |
static void show_variable_intern |
( |
jitdata * |
jd, |
|
|
s4 |
index, |
|
|
int |
stage |
|
) |
| |
|
static |
const char show_jit_type_letters[] |
Initial value:= {
'I',
'L',
'F',
'D',
'A',
'5',
'6',
'7',
'R'
}
Definition at line 117 of file show.cpp.
const char* show_jit_type_names[] |
Initial value:= {
"INT",
"LNG",
"FLT",
"DBL",
"ADR",
"??5",
"??6",
"??7",
"RET"
}
Definition at line 105 of file show.cpp.