HomeSort by relevance Sort by last modified time
    Searched full:opt_flags (Results 1 - 25 of 28) sorted by null

1 2

  /art/compiler/dex/quick/
mir_to_lir.cc 34 int opt_flags = mir->optimization_flags; local
90 GenSuspendTest(opt_flags);
97 GenSuspendTest(opt_flags);
104 GenSuspendTest(opt_flags);
110 if (opt_flags & MIR_INLINED)
117 if (opt_flags & MIR_INLINED)
179 GenMonitorEnter(opt_flags, rl_src[0]);
183 GenMonitorExit(opt_flags, rl_src[0]);
206 GenNullCheck(rl_src[0].s_reg_low, rl_src[0].low_reg, opt_flags);
243 GenSuspendTestAndBranch(opt_flags, &label_list[bb->taken->id])
    [all...]
mir_to_lir.h 389 LIR* GenNullCheck(int s_reg, int m_reg, int opt_flags);
406 void GenIGet(uint32_t field_idx, int opt_flags, OpSize size,
408 void GenIPut(uint32_t field_idx, int opt_flags, OpSize size,
430 void GenSuspendTest(int opt_flags);
431 void GenSuspendTestAndBranch(int opt_flags, LIR* target);
631 virtual void GenMonitorEnter(int opt_flags, RegLocation rl_src) = 0;
632 virtual void GenMonitorExit(int opt_flags, RegLocation rl_src) = 0;
645 virtual void GenArrayObjPut(int opt_flags, RegLocation rl_array,
647 virtual void GenArrayGet(int opt_flags, OpSize size, RegLocation rl_array,
649 virtual void GenArrayPut(int opt_flags, OpSize size, RegLocation rl_array
    [all...]
gen_common.cc 68 LIR* Mir2Lir::GenNullCheck(int s_reg, int m_reg, int opt_flags) {
70 opt_flags & MIR_IGNORE_NULL_CHECK) {
645 void Mir2Lir::GenIGet(uint32_t field_idx, int opt_flags, OpSize size,
660 GenNullCheck(rl_obj.s_reg_low, rl_obj.low_reg, opt_flags);
663 GenNullCheck(rl_obj.s_reg_low, rl_obj.low_reg, opt_flags);
682 GenNullCheck(rl_obj.s_reg_low, rl_obj.low_reg, opt_flags);
706 void Mir2Lir::GenIPut(uint32_t field_idx, int opt_flags, OpSize size,
721 GenNullCheck(rl_obj.s_reg_low, rl_obj.low_reg, opt_flags);
734 GenNullCheck(rl_obj.s_reg_low, rl_obj.low_reg, opt_flags);
    [all...]
gen_invoke.cc 452 cg->GenNullCheck(info->args[0].s_reg_low, cg->TargetReg(kArg1), info->opt_flags);
735 *pcrLabel = GenNullCheck(info->args[0].s_reg_low, TargetReg(kArg1), info->opt_flags);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/bin/
python-config 27 opt_flags = [flag for (flag, val) in opts]
29 if '--help' in opt_flags:
32 for opt in opt_flags:
python2-config 27 opt_flags = [flag for (flag, val) in opts]
29 if '--help' in opt_flags:
32 for opt in opt_flags:
python2.7-config 27 opt_flags = [flag for (flag, val) in opts]
29 if '--help' in opt_flags:
32 for opt in opt_flags:
  /prebuilts/python/linux-x86/2.7.5/bin/
python-config 27 opt_flags = [flag for (flag, val) in opts]
29 if '--help' in opt_flags:
32 for opt in opt_flags:
python2-config 27 opt_flags = [flag for (flag, val) in opts]
29 if '--help' in opt_flags:
32 for opt in opt_flags:
python2.7-config 27 opt_flags = [flag for (flag, val) in opts]
29 if '--help' in opt_flags:
32 for opt in opt_flags:
  /art/compiler/dex/quick/mips/
codegen_mips.h 89 void GenArrayObjPut(int opt_flags, RegLocation rl_array, RegLocation rl_index,
91 void GenArrayGet(int opt_flags, OpSize size, RegLocation rl_array,
93 void GenArrayPut(int opt_flags, OpSize size, RegLocation rl_array,
127 void GenMonitorEnter(int opt_flags, RegLocation rl_src);
128 void GenMonitorExit(int opt_flags, RegLocation rl_src);
int_mips.cc 415 void MipsMir2Lir::GenArrayGet(int opt_flags, OpSize size, RegLocation rl_array,
431 GenNullCheck(rl_array.s_reg_low, rl_array.low_reg, opt_flags);
434 bool needs_range_check = (!(opt_flags & MIR_IGNORE_RANGE_CHECK));
486 void MipsMir2Lir::GenArrayPut(int opt_flags, OpSize size, RegLocation rl_array,
510 GenNullCheck(rl_array.s_reg_low, rl_array.low_reg, opt_flags);
512 bool needs_range_check = (!(opt_flags & MIR_IGNORE_RANGE_CHECK));
558 void MipsMir2Lir::GenArrayObjPut(int opt_flags, RegLocation rl_array,
575 GenNullCheck(rl_array.s_reg_low, r_array, opt_flags); // NPE?
594 bool needs_range_check = (!(opt_flags & MIR_IGNORE_RANGE_CHECK));
call_mips.cc 267 void MipsMir2Lir::GenMonitorEnter(int opt_flags, RegLocation rl_src) {
271 GenNullCheck(rl_src.s_reg_low, rMIPS_ARG0, opt_flags);
282 void MipsMir2Lir::GenMonitorExit(int opt_flags, RegLocation rl_src) {
286 GenNullCheck(rl_src.s_reg_low, rMIPS_ARG0, opt_flags);
  /art/compiler/dex/portable/
mir_to_gbc.h 103 void ConvertMonitorEnterExit(int opt_flags,
105 void ConvertArrayLength(int opt_flags, RegLocation rl_dest,
136 void ConvertAget(int opt_flags, art::llvm::IntrinsicHelper::IntrinsicId id,
138 void ConvertAput(int opt_flags, art::llvm::IntrinsicHelper::IntrinsicId id,
140 void ConvertIget(int opt_flags, art::llvm::IntrinsicHelper::IntrinsicId id,
142 void ConvertIput(int opt_flags, art::llvm::IntrinsicHelper::IntrinsicId id,
mir_to_gbc.cc 268 void MirConverter::ConvertMonitorEnterExit(int opt_flags,
272 args.push_back(irb_->getInt32(opt_flags));
278 void MirConverter::ConvertArrayLength(int opt_flags,
281 args.push_back(irb_->getInt32(opt_flags));
459 args.push_back(irb_->getInt32(info->opt_flags));
537 void MirConverter::ConvertAget(int opt_flags,
541 args.push_back(irb_->getInt32(opt_flags));
549 void MirConverter::ConvertAput(int opt_flags,
553 args.push_back(irb_->getInt32(opt_flags));
561 void MirConverter::ConvertIget(int opt_flags,
695 int opt_flags = mir->optimization_flags; local
    [all...]
  /art/compiler/dex/quick/arm/
codegen_arm.h 88 void GenArrayObjPut(int opt_flags, RegLocation rl_array, RegLocation rl_index,
90 void GenArrayGet(int opt_flags, OpSize size, RegLocation rl_array,
92 void GenArrayPut(int opt_flags, OpSize size, RegLocation rl_array,
126 void GenMonitorEnter(int opt_flags, RegLocation rl_src);
127 void GenMonitorExit(int opt_flags, RegLocation rl_src);
int_arm.cc 757 void ArmMir2Lir::GenArrayGet(int opt_flags, OpSize size, RegLocation rl_array,
781 GenNullCheck(rl_array.s_reg_low, rl_array.low_reg, opt_flags);
783 bool needs_range_check = (!(opt_flags & MIR_IGNORE_RANGE_CHECK));
847 void ArmMir2Lir::GenArrayPut(int opt_flags, OpSize size, RegLocation rl_array,
881 GenNullCheck(rl_array.s_reg_low, rl_array.low_reg, opt_flags);
883 bool needs_range_check = (!(opt_flags & MIR_IGNORE_RANGE_CHECK));
936 void ArmMir2Lir::GenArrayObjPut(int opt_flags, RegLocation rl_array,
    [all...]
call_arm.cc 467 void ArmMir2Lir::GenMonitorEnter(int opt_flags, RegLocation rl_src) {
472 GenNullCheck(rl_src.s_reg_low, r0, opt_flags);
501 void ArmMir2Lir::GenMonitorExit(int opt_flags, RegLocation rl_src) {
506 GenNullCheck(rl_src.s_reg_low, r0, opt_flags);
  /art/compiler/dex/quick/x86/
codegen_x86.h 89 void GenArrayObjPut(int opt_flags, RegLocation rl_array,
91 void GenArrayGet(int opt_flags, OpSize size, RegLocation rl_array,
93 void GenArrayPut(int opt_flags, OpSize size, RegLocation rl_array,
127 void GenMonitorEnter(int opt_flags, RegLocation rl_src);
128 void GenMonitorExit(int opt_flags, RegLocation rl_src);
call_x86.cc 153 void X86Mir2Lir::GenMonitorEnter(int opt_flags, RegLocation rl_src) {
157 GenNullCheck(rl_src.s_reg_low, rCX, opt_flags);
170 void X86Mir2Lir::GenMonitorExit(int opt_flags, RegLocation rl_src) {
174 GenNullCheck(rl_src.s_reg_low, rAX, opt_flags);
int_x86.cc 421 void X86Mir2Lir::GenArrayGet(int opt_flags, OpSize size, RegLocation rl_array,
437 GenNullCheck(rl_array.s_reg_low, rl_array.low_reg, opt_flags);
439 if (!(opt_flags & MIR_IGNORE_RANGE_CHECK)) {
468 void X86Mir2Lir::GenArrayPut(int opt_flags, OpSize size, RegLocation rl_array,
484 GenNullCheck(rl_array.s_reg_low, rl_array.low_reg, opt_flags);
486 if (!(opt_flags & MIR_IGNORE_RANGE_CHECK)) {
511 void X86Mir2Lir::GenArrayObjPut(int opt_flags, RegLocation rl_array,
528 GenNullCheck(rl_array.s_reg_low, r_array, opt_flags); // NPE?
549 if (!(opt_flags & MIR_IGNORE_RANGE_CHECK)) {
  /art/compiler/llvm/
gbc_expander.cc 374 int opt_flags);
379 int opt_flags);
1574 int opt_flags = LV2UInt(call_inst.getArgOperand(0)); local
1594 int opt_flags = LV2UInt(call_inst.getArgOperand(0)); local
1624 int opt_flags = LV2UInt(call_inst.getArgOperand(0)); local
1688 int opt_flags = LV2UInt(call_inst.getArgOperand(0)); local
2135 int opt_flags = LV2UInt(call_inst.getArgOperand(0)); local
2149 int opt_flags = LV2UInt(call_inst.getArgOperand(0)); local
2324 int opt_flags = LV2UInt(call_inst.getArgOperand(2)); local
2341 int opt_flags = LV2UInt(call_inst.getArgOperand(0)); local
    [all...]
  /external/tcpdump/
print-domain.c 359 register u_int i, class, opt_flags = 0; local
392 /* if T_OPT, save opt_flags */
394 opt_flags = EXTRACT_16BITS(cp);
513 if (opt_flags & 0x8000)
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
section.h 220 * \param opt_flags optimizer-specific flags.
223 void yasm_section_set_opt_flags(yasm_section *sect, unsigned long opt_flags);
section.c 66 unsigned long opt_flags; /* storage for optimizer flags */ member in struct:yasm_section
408 return sect->opt_flags;
412 yasm_section_set_opt_flags(yasm_section *sect, unsigned long opt_flags)
414 sect->opt_flags = opt_flags;
    [all...]

Completed in 920 milliseconds

1 2