Home
last modified time | relevance | path

Searched refs:instruction_set (Results 26 – 49 of 49) sorted by relevance

12

/art/runtime/
Dstack_map.h141 ALWAYS_INLINE uint32_t GetNativePcOffset(InstructionSet instruction_set) const { in GetNativePcOffset() argument
142 return UnpackNativePc(GetPackedNativePc(), instruction_set); in GetNativePcOffset()
167 InstructionSet instruction_set) const;
423 InstructionSet instruction_set) const;
Druntime.cc2371 void Runtime::SetInstructionSet(InstructionSet instruction_set) { in SetInstructionSet() argument
2372 instruction_set_ = instruction_set; in SetInstructionSet()
2373 switch (instruction_set) { in SetInstructionSet()
2629 std::string instruction_set("--instruction-set="); in AddCurrentRuntimeFeaturesAsDex2OatArguments() local
2630 instruction_set += GetInstructionSetString(kRuntimeISA); in AddCurrentRuntimeFeaturesAsDex2OatArguments()
2631 argv->push_back(instruction_set); in AddCurrentRuntimeFeaturesAsDex2OatArguments()
Druntime.h468 void SetInstructionSet(InstructionSet instruction_set);
/art/dex2oat/linker/
Drelative_patcher.h94 InstructionSet instruction_set,
Drelative_patcher_test.h41 RelativePatcherTest(InstructionSet instruction_set, const std::string& variant) in RelativePatcherTest() argument
43 instruction_set_(instruction_set), in RelativePatcherTest()
55 InstructionSetFeatures::FromVariant(instruction_set, variant, &error_msg); in RelativePatcherTest()
Dmulti_oat_relative_patcher.h42 MultiOatRelativePatcher(InstructionSet instruction_set,
Doat_writer.cc759 InstructionSet instruction_set = compiler_options_.GetInstructionSet(); in PrepareLayout() local
760 CHECK_EQ(instruction_set, oat_header_->GetInstructionSet()); in PrepareLayout()
764 InitBssLayout(instruction_set); in PrepareLayout()
2210 InstructionSet instruction_set = compiler_options_.GetInstructionSet(); in InitOatCode() local
2216 offset = CompiledCode::AlignCode(offset + 4, instruction_set); \ in InitOatCode()
2217 adjusted_offset = offset + CompiledCode::CodeDelta(instruction_set); \ in InitOatCode()
2223 info.isa = instruction_set; \ in InitOatCode()
2330 void OatWriter::InitBssLayout(InstructionSet instruction_set) { in InitBssLayout() argument
2345 PointerSize pointer_size = GetInstructionSetPointerSize(instruction_set); in InitBssLayout()
3024 InstructionSet instruction_set = compiler_options_.GetInstructionSet(); in WriteCode() local
[all …]
Doat_writer.h324 void InitBssLayout(InstructionSet instruction_set);
/art/compiler/jni/quick/
Dcalling_convention.h241 InstructionSet instruction_set);
300 InstructionSet instruction_set);
/art/dex2oat/dex/
Ddex_to_dex_compiler.cc611 InstructionSet instruction_set = driver_->GetCompilerOptions().GetInstructionSet(); in CompileMethod() local
612 if (instruction_set == InstructionSet::kThumb2) { in CompileMethod()
614 instruction_set = InstructionSet::kArm; in CompileMethod()
618 instruction_set, in CompileMethod()
/art/cmdline/
Dcmdline.h90 InstructionSet instruction_set, in StartRuntime() argument
113 reinterpret_cast<const void*>(GetInstructionSetString(instruction_set)))); in StartRuntime()
/art/compiler/optimizing/
Dscheduler.h551 InstructionSet instruction_set,
556 instruction_set_(instruction_set) {} in HOptimization()
Dgraph_visualizer.cc115 HGraphVisualizerDisassembler(InstructionSet instruction_set, in HGraphVisualizerDisassembler() argument
118 : instruction_set_(instruction_set), disassembler_(nullptr) { in HGraphVisualizerDisassembler()
138 instruction_set, in HGraphVisualizerDisassembler()
143 Is64BitInstructionSet(instruction_set) in HGraphVisualizerDisassembler()
Dcode_generator.h750 InstructionSet instruction_set = GetInstructionSet(); in CallPushesPC() local
751 return instruction_set == InstructionSet::kX86 || instruction_set == InstructionSet::kX86_64; in CallPushesPC()
Dcode_generator.cc143 InstructionSet instruction_set) { in Create() argument
147 ::new (memory) CodeGenerationData(std::move(allocator), instruction_set)); in Create()
197 CodeGenerationData(ScopedArenaAllocator&& allocator, InstructionSet instruction_set) in CodeGenerationData() argument
199 stack_map_stream_(&allocator_, instruction_set), in CodeGenerationData()
Dnodes.h378 InstructionSet instruction_set,
410 instruction_set_(instruction_set), in allocator_()
/art/dex2oat/linker/arm/
Drelative_patcher_arm_base.h42 InstructionSet instruction_set);
Drelative_patcher_arm_base.cc277 InstructionSet instruction_set) in ArmBaseRelativePatcher() argument
280 instruction_set_(instruction_set), in ArmBaseRelativePatcher()
/art/libartbase/
DAndroid.bp28 "arch/instruction_set.cc",
165 "arch/instruction_set.h",
/art/libartbase/arch/
Dinstruction_set.h76 InstructionSet GetInstructionSetFromString(const char* instruction_set);
/art/runtime/native/
Ddalvik_system_VMRuntime.cc664 ScopedUtfChars instruction_set(env, java_instruction_set); in VMRuntime_isBootClassPathOnDisk() local
665 if (instruction_set.c_str() == nullptr) { in VMRuntime_isBootClassPathOnDisk()
668 InstructionSet isa = GetInstructionSetFromString(instruction_set.c_str()); in VMRuntime_isBootClassPathOnDisk()
671 std::string message(StringPrintf("Instruction set %s is invalid.", instruction_set.c_str())); in VMRuntime_isBootClassPathOnDisk()
/art/compiler/utils/
Djni_macro_assembler.h85 InstructionSet instruction_set,
/art/oatdump/
Doatdump.cc1531 explicit StackMapsHelper(const uint8_t* raw_code_info, InstructionSet instruction_set) in StackMapsHelper() argument
1537 instruction_set_(instruction_set) { in StackMapsHelper()
1544 if (last.GetNativePcOffset(instruction_set) > in StackMapsHelper()
1545 current.GetNativePcOffset(instruction_set)) { in StackMapsHelper()
/art/dex2oat/driver/
Dcompiler_driver.cc2155 InstructionSet instruction_set = in Visit() local
2157 klass->SetSkipAccessChecksFlagOnAllMethods(GetInstructionSetPointerSize(instruction_set)); in Visit()

12