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

1 2

  /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/
mir_to_lir.cc 394 int opt_flags = mir->optimization_flags; local
452 GenSuspendTest(opt_flags);
461 GenSuspendTest(opt_flags);
469 GenSuspendTest(opt_flags);
476 if ((opt_flags & MIR_INLINED) != 0) {
484 if ((opt_flags & MIR_INLINED) != 0) {
531 GenMonitorEnter(opt_flags, rl_src[0]);
535 GenMonitorExit(opt_flags, rl_src[0]);
558 GenNullCheck(rl_src[0].reg, opt_flags);
561 MarkPossibleNullPointerException(opt_flags);
    [all...]
gen_common.cc 159 LIR* Mir2Lir::GenNullCheck(RegStorage m_reg, int opt_flags) {
161 return GenExplicitNullCheck(m_reg, opt_flags);
164 if ((opt_flags & MIR_IGNORE_NULL_CHECK) == 0) {
171 LIR* Mir2Lir::GenExplicitNullCheck(RegStorage m_reg, int opt_flags) {
172 if (!(cu_->disable_opt & (1 << kNullCheckElimination)) && (opt_flags & MIR_IGNORE_NULL_CHECK)) {
178 void Mir2Lir::MarkPossibleNullPointerException(int opt_flags) {
180 if (!(cu_->disable_opt & (1 << kNullCheckElimination)) && (opt_flags & MIR_IGNORE_NULL_CHECK)) {
188 void Mir2Lir::MarkPossibleNullPointerExceptionAfter(int opt_flags, LIR* after) {
190 if (!(cu_->disable_opt & (1 << kNullCheckElimination)) && (opt_flags & MIR_IGNORE_NULL_CHECK)) {
203 void Mir2Lir::ForceImplicitNullCheck(RegStorage reg, int opt_flags) {
    [all...]
gen_invoke.cc 468 cg->GenNullCheck(cg->TargetReg(kArg1, kRef), info->opt_flags);
473 cg->MarkPossibleNullPointerException(info->opt_flags);
    [all...]
mir_to_lir.h     [all...]
  /art/compiler/dex/portable/
mir_to_gbc.cc 285 void MirConverter::ConvertMonitorEnterExit(int opt_flags,
289 args.push_back(irb_->getInt32(opt_flags));
295 void MirConverter::ConvertArrayLength(int opt_flags,
298 args.push_back(irb_->getInt32(opt_flags));
476 args.push_back(irb_->getInt32(info->opt_flags));
554 void MirConverter::ConvertAget(int opt_flags,
558 args.push_back(irb_->getInt32(opt_flags));
566 void MirConverter::ConvertAput(int opt_flags,
570 args.push_back(irb_->getInt32(opt_flags));
578 void MirConverter::ConvertIget(int opt_flags,
712 int opt_flags = mir->optimization_flags; local
    [all...]
mir_to_gbc.h 110 void ConvertMonitorEnterExit(int opt_flags,
112 void ConvertArrayLength(int opt_flags, RegLocation rl_dest,
143 void ConvertAget(int opt_flags, art::llvm::IntrinsicHelper::IntrinsicId id,
145 void ConvertAput(int opt_flags, art::llvm::IntrinsicHelper::IntrinsicId id,
147 void ConvertIget(int opt_flags, art::llvm::IntrinsicHelper::IntrinsicId id,
149 void ConvertIput(int opt_flags, art::llvm::IntrinsicHelper::IntrinsicId id,
  /art/compiler/dex/quick/arm/
call_arm.cc 179 void ArmMir2Lir::GenMonitorEnter(int opt_flags, RegLocation rl_src) {
187 if ((opt_flags & MIR_IGNORE_NULL_CHECK) && !(cu_->disable_opt & (1 << kNullCheckElimination))) {
198 MarkPossibleNullPointerException(opt_flags);
222 GenNullCheck(rs_r0, opt_flags);
226 MarkPossibleNullPointerException(opt_flags);
250 void ArmMir2Lir::GenMonitorExit(int opt_flags, RegLocation rl_src) {
258 if ((opt_flags & MIR_IGNORE_NULL_CHECK) && !(cu_->disable_opt & (1 << kNullCheckElimination))) {
267 MarkPossibleNullPointerException(opt_flags);
290 GenNullCheck(rs_r0, opt_flags);
292 MarkPossibleNullPointerException(opt_flags);
    [all...]
codegen_arm.h 91 void GenArrayGet(int opt_flags, OpSize size, RegLocation rl_array,
93 void GenArrayPut(int opt_flags, OpSize size, RegLocation rl_array, RegLocation rl_index,
127 void GenMonitorEnter(int opt_flags, RegLocation rl_src);
128 void GenMonitorExit(int opt_flags, RegLocation rl_src);
int_arm.cc     [all...]
  /art/compiler/dex/quick/arm64/
call_arm64.cc 188 void Arm64Mir2Lir::GenMonitorEnter(int opt_flags, RegLocation rl_src) {
199 if ((opt_flags & MIR_IGNORE_NULL_CHECK) && !(cu_->disable_opt & (1 << kNullCheckElimination))) {
210 MarkPossibleNullPointerException(opt_flags);
237 void Arm64Mir2Lir::GenMonitorExit(int opt_flags, RegLocation rl_src) {
247 if ((opt_flags & MIR_IGNORE_NULL_CHECK) && !(cu_->disable_opt & (1 << kNullCheckElimination))) {
257 MarkPossibleNullPointerException(opt_flags);
codegen_arm64.h 144 void GenArrayGet(int opt_flags, OpSize size, RegLocation rl_array, RegLocation rl_index,
146 void GenArrayPut(int opt_flags, OpSize size, RegLocation rl_array, RegLocation rl_index,
193 void GenMonitorEnter(int opt_flags, RegLocation rl_src) OVERRIDE;
194 void GenMonitorExit(int opt_flags, RegLocation rl_src) OVERRIDE;
int_arm64.cc     [all...]
  /art/compiler/dex/quick/x86/
call_x86.cc 323 void X86Mir2Lir::GenImplicitNullCheck(RegStorage reg, int opt_flags) {
324 if (!(cu_->disable_opt & (1 << kNullCheckElimination)) && (opt_flags & MIR_IGNORE_NULL_CHECK)) {
330 MarkPossibleNullPointerException(opt_flags);
  /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...]
  /art/compiler/dex/quick/mips/
int_mips.cc 485 void MipsMir2Lir::GenArrayGet(int opt_flags, OpSize size, RegLocation rl_array,
503 GenNullCheck(rl_array.reg, opt_flags);
506 bool needs_range_check = (!(opt_flags & MIR_IGNORE_RANGE_CHECK));
554 void MipsMir2Lir::GenArrayPut(int opt_flags, OpSize size, RegLocation rl_array,
583 GenNullCheck(rl_array.reg, opt_flags);
585 bool needs_range_check = (!(opt_flags & MIR_IGNORE_RANGE_CHECK));
codegen_mips.h 89 void GenArrayGet(int opt_flags, OpSize size, RegLocation rl_array,
91 void GenArrayPut(int opt_flags, OpSize size, RegLocation rl_array,
  /art/compiler/llvm/
gbc_expander.cc 371 int opt_flags);
376 int opt_flags);
1550 int opt_flags = LV2UInt(call_inst.getArgOperand(0)); local
1570 int opt_flags = LV2UInt(call_inst.getArgOperand(0)); local
1600 int opt_flags = LV2UInt(call_inst.getArgOperand(0)); local
1664 int opt_flags = LV2UInt(call_inst.getArgOperand(0)); local
2126 int opt_flags = LV2UInt(call_inst.getArgOperand(0)); local
2140 int opt_flags = LV2UInt(call_inst.getArgOperand(0)); local
2315 int opt_flags = LV2UInt(call_inst.getArgOperand(2)); local
2332 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
393 opt_flags = EXTRACT_16BITS(cp);
532 if (opt_flags & 0x8000)

Completed in 343 milliseconds

1 2