HomeSort by relevance Sort by last modified time
    Searched refs:opt_flags (Results 1 - 25 of 30) 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 481 const int opt_flags = mir->optimization_flags; local
540 GenSuspendTest(opt_flags);
549 GenSuspendTest(opt_flags);
556 GenSuspendTest(opt_flags);
608 GenMonitorEnter(opt_flags, rl_src[0]);
612 GenMonitorExit(opt_flags, rl_src[0]);
616 GenCheckCast(opt_flags, mir->offset, vB, rl_src[0]);
635 GenNullCheck(rl_src[0].reg, opt_flags);
638 MarkPossibleNullPointerException(opt_flags);
673 GenSuspendTestAndBranch(opt_flags, &label_list[bb->taken])
    [all...]
gen_common.cc 92 int opt_flags) {
111 if (!field_info.IsClassInDexCache() && (opt_flags & MIR_CLASS_IS_IN_DEX_CACHE) == 0) {
116 if (!field_info.IsClassInitialized() && (opt_flags & MIR_CLASS_IS_INITIALIZED) == 0) {
290 LIR* Mir2Lir::GenNullCheck(RegStorage m_reg, int opt_flags) {
292 return GenExplicitNullCheck(m_reg, opt_flags);
295 if ((opt_flags & MIR_IGNORE_NULL_CHECK) == 0) {
302 LIR* Mir2Lir::GenExplicitNullCheck(RegStorage m_reg, int opt_flags) {
303 if (!(cu_->disable_opt & (1 << kNullCheckElimination)) && (opt_flags & MIR_IGNORE_NULL_CHECK)) {
309 void Mir2Lir::MarkPossibleNullPointerException(int opt_flags) {
311 if (!(cu_->disable_opt & (1 << kNullCheckElimination)) && (opt_flags & MIR_IGNORE_NULL_CHECK))
    [all...]
mir_to_lir.h     [all...]
gen_invoke.cc 495 cg->GenNullCheck(cg->TargetReg(kArg1, kRef), info->opt_flags);
500 cg->MarkPossibleNullPointerException(info->opt_flags);
678 void Mir2Lir::GenImplicitNullCheck(RegStorage reg, int opt_flags) {
679 if (!(cu_->disable_opt & (1 << kNullCheckElimination)) && (opt_flags & MIR_IGNORE_NULL_CHECK)) {
684 MarkPossibleNullPointerException(opt_flags);
    [all...]
  /external/vboot_reference/futility/
cmd_gbb_utility.c 61 OPT_FLAGS,
76 {"flags", 0, NULL, OPT_FLAGS},
360 char *opt_flags = NULL; local
405 case OPT_FLAGS:
407 opt_flags = optarg;
520 if (sel_flags && (!opt_flags || !*opt_flags)) {
574 if (opt_flags) {
577 val = (uint32_t) strtoul(opt_flags, &e, 0);
581 opt_flags);
    [all...]
  /art/compiler/dex/quick/arm/
call_arm.cc 147 void ArmMir2Lir::GenMonitorEnter(int opt_flags, RegLocation rl_src) {
155 if ((opt_flags & MIR_IGNORE_NULL_CHECK) && !(cu_->disable_opt & (1 << kNullCheckElimination))) {
166 MarkPossibleNullPointerException(opt_flags);
194 GenNullCheck(rs_r0, opt_flags);
198 MarkPossibleNullPointerException(opt_flags);
229 void ArmMir2Lir::GenMonitorExit(int opt_flags, RegLocation rl_src) {
237 if ((opt_flags & MIR_IGNORE_NULL_CHECK) && !(cu_->disable_opt & (1 << kNullCheckElimination))) {
251 MarkPossibleNullPointerException(opt_flags);
283 GenNullCheck(rs_r0, opt_flags);
291 MarkPossibleNullPointerException(opt_flags);
    [all...]
codegen_arm.h 147 void GenArrayGet(int opt_flags, OpSize size, RegLocation rl_array,
149 void GenArrayPut(int opt_flags, OpSize size, RegLocation rl_array, RegLocation rl_index,
184 void GenMonitorEnter(int opt_flags, RegLocation rl_src);
185 void GenMonitorExit(int opt_flags, RegLocation rl_src);
int_arm.cc     [all...]
  /art/compiler/dex/quick/arm64/
call_arm64.cc 155 void Arm64Mir2Lir::GenMonitorEnter(int opt_flags, RegLocation rl_src) {
166 if ((opt_flags & MIR_IGNORE_NULL_CHECK) && !(cu_->disable_opt & (1 << kNullCheckElimination))) {
177 MarkPossibleNullPointerException(opt_flags);
209 void Arm64Mir2Lir::GenMonitorExit(int opt_flags, RegLocation rl_src) {
219 if ((opt_flags & MIR_IGNORE_NULL_CHECK) && !(cu_->disable_opt & (1 << kNullCheckElimination))) {
234 MarkPossibleNullPointerException(opt_flags);
codegen_arm64.h 135 void GenArrayGet(int opt_flags, OpSize size, RegLocation rl_array, RegLocation rl_index,
137 void GenArrayPut(int opt_flags, OpSize size, RegLocation rl_array, RegLocation rl_index,
186 void GenMonitorEnter(int opt_flags, RegLocation rl_src) OVERRIDE;
187 void GenMonitorExit(int opt_flags, RegLocation rl_src) OVERRIDE;
int_arm64.cc     [all...]
  /art/compiler/dex/quick/mips/
int_mips.cc 667 void MipsMir2Lir::GenArrayGet(int opt_flags, OpSize size, RegLocation rl_array,
685 GenNullCheck(rl_array.reg, opt_flags);
688 bool needs_range_check = (!(opt_flags & MIR_IGNORE_RANGE_CHECK));
694 MarkPossibleNullPointerException(opt_flags);
696 ForceImplicitNullCheck(rl_array.reg, opt_flags, false);
749 void MipsMir2Lir::GenArrayPut(int opt_flags, OpSize size, RegLocation rl_array,
778 GenNullCheck(rl_array.reg, opt_flags);
780 bool needs_range_check = (!(opt_flags & MIR_IGNORE_RANGE_CHECK));
787 MarkPossibleNullPointerException(opt_flags);
789 ForceImplicitNullCheck(rl_array.reg, opt_flags, false)
    [all...]
codegen_mips.h 82 void ForceImplicitNullCheck(RegStorage reg, int opt_flags, bool is_wide);
146 void GenArrayGet(int opt_flags, OpSize size, RegLocation rl_array, RegLocation rl_index,
148 void GenArrayPut(int opt_flags, OpSize size, RegLocation rl_array, RegLocation rl_index,
  /art/compiler/dex/quick/x86/
call_x86.cc 330 void X86Mir2Lir::GenImplicitNullCheck(RegStorage reg, int opt_flags) {
331 if (!(cu_->disable_opt & (1 << kNullCheckElimination)) && (opt_flags & MIR_IGNORE_NULL_CHECK)) {
337 MarkPossibleNullPointerException(opt_flags);
codegen_x86.h 111 void GenImplicitNullCheck(RegStorage reg, int opt_flags) OVERRIDE;
175 void GenArrayGet(int opt_flags, OpSize size, RegLocation rl_array, RegLocation rl_index,
177 void GenArrayPut(int opt_flags, OpSize size, RegLocation rl_array,
432 RegStorage r_src, OpSize size, int opt_flags = 0);
    [all...]
int_x86.cc     [all...]
target_x86.cc     [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)
  /art/compiler/dex/
mir_optimization.cc 1822 const int opt_flags = mir->optimization_flags; local
    [all...]

Completed in 570 milliseconds

1 2