OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetTargetInstFlags
(Results
1 - 10
of
10
) sorted by null
/art/compiler/dex/quick/
mir_to_lir-inl.h
66
DCHECK(is_pseudo_opcode(opcode) || (
GetTargetInstFlags
(opcode) & NO_OPERAND))
76
DCHECK(is_pseudo_opcode(opcode) || (
GetTargetInstFlags
(opcode) & IS_UNARY_OP))
86
DCHECK(is_pseudo_opcode(opcode) || (
GetTargetInstFlags
(opcode) & IS_BINARY_OP))
96
DCHECK(is_pseudo_opcode(opcode) || (
GetTargetInstFlags
(opcode) & IS_TERTIARY_OP))
106
DCHECK(is_pseudo_opcode(opcode) || (
GetTargetInstFlags
(opcode) & IS_QUAD_OP))
117
DCHECK(is_pseudo_opcode(opcode) || (
GetTargetInstFlags
(opcode) & IS_QUIN_OP))
144
uint64_t flags =
GetTargetInstFlags
(opcode);
local_optimizations.cc
87
uint64_t target_flags =
GetTargetInstFlags
(this_lir->opcode);
102
native_reg_id = (
GetTargetInstFlags
(this_lir->opcode) & IS_STORE) ? this_lir->operands[2]
107
bool is_this_lir_load =
GetTargetInstFlags
(this_lir->opcode) & IS_LOAD;
150
uint64_t check_flags =
GetTargetInstFlags
(check_lir->opcode);
242
uint64_t flags =
GetTargetInstFlags
(check_lir->opcode);
293
uint64_t target_flags =
GetTargetInstFlags
(this_lir->opcode);
398
(
GetTargetInstFlags
(dep_lir->opcode) & IS_LOAD)) {
415
if (
GetTargetInstFlags
(cur_lir->opcode) & IS_LOAD) {
439
(
GetTargetInstFlags
(prev_lir->opcode) & IS_LOAD);
codegen_util.cc
66
DCHECK(
GetTargetInstFlags
(lir->opcode) & (IS_LOAD | IS_STORE));
88
DCHECK(!(
GetTargetInstFlags
(lir->opcode) & IS_STORE));
[
all
...]
mir_to_lir.h
580
virtual uint64_t
GetTargetInstFlags
(int opcode) = 0;
[
all
...]
/art/compiler/dex/quick/mips/
codegen_mips.h
82
uint64_t
GetTargetInstFlags
(int opcode);
target_mips.cc
561
uint64_t MipsMir2Lir::
GetTargetInstFlags
(int opcode) {
/art/compiler/dex/quick/arm/
codegen_arm.h
81
uint64_t
GetTargetInstFlags
(int opcode);
target_arm.cc
720
uint64_t ArmMir2Lir::
GetTargetInstFlags
(int opcode) {
/art/compiler/dex/quick/x86/
codegen_x86.h
82
uint64_t
GetTargetInstFlags
(int opcode);
target_x86.cc
532
uint64_t X86Mir2Lir::
GetTargetInstFlags
(int opcode) {
Completed in 1547 milliseconds