Lines Matching refs:instruction_set

494     instruction_set(kNone),  in CompilationUnit()
536 static bool CanCompileShorty(const char* shorty, InstructionSet instruction_set) { in CanCompileShorty() argument
537 const char* supported_types = kSupportedTypes[instruction_set]; in CanCompileShorty()
564 if (kSupportedTypes[cu.instruction_set] == nullptr && in CanCompileMethod()
565 kUnsupportedOpcodesSize[cu.instruction_set] == 0U) { in CanCompileMethod()
571 if (!CanCompileShorty(shorty, cu.instruction_set)) { in CanCompileMethod()
576 const int *unsupport_list = kUnsupportedOpcodes[cu.instruction_set]; in CanCompileMethod()
577 int unsupport_list_size = kUnsupportedOpcodesSize[cu.instruction_set]; in CanCompileMethod()
606 if (!CanCompileShorty(invoke_method_shorty, cu.instruction_set)) { in CanCompileMethod()
652 cu.instruction_set = driver.GetInstructionSet(); in CompileMethod()
653 if (cu.instruction_set == kArm) { in CompileMethod()
654 cu.instruction_set = kThumb2; in CompileMethod()
656 cu.target64 = Is64BitInstructionSet(cu.instruction_set); in CompileMethod()
659 CHECK((cu.instruction_set == kThumb2) || in CompileMethod()
660 (cu.instruction_set == kArm64) || in CompileMethod()
661 (cu.instruction_set == kX86) || in CompileMethod()
662 (cu.instruction_set == kX86_64) || in CompileMethod()
663 (cu.instruction_set == kMips)); in CompileMethod()
702 cu.disable_opt |= kDisabledOptimizationsPerISA[cu.instruction_set]; in CompileMethod()
724 VLOG(compiler) << cu.instruction_set << ": Cannot compile method : " in CompileMethod()
732 VLOG(compiler) << cu.instruction_set << ": Skipping method : " in CompileMethod()
771 VLOG(compiler) << cu.instruction_set << ": Punted method to interpreter: " in CompileMethod()
783 VLOG(compiler) << cu.instruction_set << ": Compiled " << PrettyMethod(method_idx, dex_file); in CompileMethod()
785 VLOG(compiler) << cu.instruction_set << ": Deferred " << PrettyMethod(method_idx, dex_file); in CompileMethod()