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

  /art/cmdline/
cmdline.h 148 instruction_set_ = GetInstructionSetFromString(instruction_set_str.data());
149 if (instruction_set_ == kNone) {
220 InstructionSet instruction_set_ = kRuntimeISA; member in struct:art::CmdlineArgs
268 if (!LocationToFilename(boot_image_location, instruction_set_, &file_name)) {
376 return StartRuntime(args->boot_image_location_, args->instruction_set_);
  /art/compiler/optimizing/
ssa_liveness_analysis_test.cc 36 instruction_set_(kRuntimeISA) {
39 InstructionSetFeatures::FromVariant(instruction_set_, "default", &error_msg);
41 instruction_set_,
44 CHECK(codegen_ != nullptr) << instruction_set_ << " is not a supported target architecture.";
64 InstructionSet instruction_set_; member in class:art::SsaLivenessAnalysisTest
stack_map_stream.h 66 instruction_set_(instruction_set),
165 CodeOffset::FromOffset(native_pc_offset, instruction_set_);
227 const InstructionSet instruction_set_; member in class:art::StackMapStream
scheduler.h 474 instruction_set_(instruction_set) {}
483 const InstructionSet instruction_set_; member in class:art::HInstructionScheduling
stack_map_stream.cc 36 current_entry_.native_pc_code_offset = CodeOffset::FromOffset(native_pc_offset, instruction_set_);
614 DCHECK_EQ(stack_map.GetNativePcOffset(stack_map_encoding, instruction_set_),
615 entry.native_pc_code_offset.Uint32Value(instruction_set_));
634 DCHECK_EQ(invoke_info.GetNativePcOffset(encoding.invoke_info.encoding, instruction_set_),
635 entry.native_pc_code_offset.Uint32Value(instruction_set_));
graph_visualizer.cc 104 : instruction_set_(instruction_set), disassembler_(nullptr) {
145 if (instruction_set_ == kThumb2) {
154 InstructionSet instruction_set_; member in class:art::HGraphVisualizerDisassembler
scheduler.cc 586 switch (instruction_set_) {
nodes.h 336 instruction_set_(instruction_set),
546 return instruction_set_;
703 const InstructionSet instruction_set_; member in class:art::HGraph
    [all...]
nodes.cc 519 Is64BitInstructionSet(instruction_set_) ? Primitive::kPrimLong : Primitive::kPrimInt,
    [all...]
  /art/compiler/
compiled_method.cc 28 instruction_set_(instruction_set),
50 return AlignCode(offset, instruction_set_);
58 return CodeDelta(instruction_set_);
compiled_method.h 46 return instruction_set_;
89 const InstructionSet instruction_set_; member in class:art::CompiledCode
  /art/compiler/linker/arm/
relative_patcher_arm_base.cc 154 uint32_t thunk_offset = CompiledCode::AlignCode(offset, instruction_set_);
179 uint32_t aligned_offset = CompiledMethod::AlignCode(offset, instruction_set_);
199 aligned_offset = CompiledMethod::AlignCode(offset, instruction_set_);
208 instruction_set_(instruction_set),
246 uint32_t thunk_offset = CompiledCode::AlignCode(offset, instruction_set_);
370 size_t alignment = GetInstructionSetAlignment(instruction_set_);
410 uint32_t target_offset = result.second - CompiledCode::CodeDelta(instruction_set_);
444 GetInstructionSetAlignment(instruction_set_));
relative_patcher_arm_base.h 138 const InstructionSet instruction_set_; member in class:art::linker::ArmBaseRelativePatcher
  /art/compiler/linker/
multi_oat_relative_patcher.cc 32 instruction_set_(instruction_set),
relative_patcher_test.h 60 instruction_set_(instruction_set),
86 instruction_set_,
101 CompiledMethod::AlignCode(unaligned_code_offset, instruction_set_);
275 InstructionSet instruction_set_; member in class:art::linker::RelativePatcherTest
multi_oat_relative_patcher.h 139 InstructionSet instruction_set_; member in class:art::linker::FINAL
  /art/runtime/
oat.cc 71 instruction_set_(instruction_set),
114 if (!IsValidInstructionSet(instruction_set_)) {
139 if (!IsValidInstructionSet(instruction_set_)) {
140 return StringPrintf("Invalid instruction set, %d.", static_cast<int>(instruction_set_));
156 UpdateChecksum(&instruction_set_, sizeof(instruction_set_));
198 return instruction_set_;
runtime.cc 202 instruction_set_(kNone),
    [all...]
oat.h 135 InstructionSet instruction_set_; variable
runtime.h 421 return instruction_set_;
751 InstructionSet instruction_set_; member in class:art::verifier::VerifyMode
  /art/dex2oat/
dex2oat.cc 519 instruction_set_(kRuntimeISA == kArm ? kThumb2 : kRuntimeISA),
649 instruction_set_ = GetInstructionSetFromString(buf.get());
651 if (instruction_set_ == InstructionSet::kArm) {
652 instruction_set_ = InstructionSet::kThumb2;
660 instruction_set_, str.as_string(), &parser_options->error_msg);
671 instruction_set_, "default", &parser_options->error_msg);
2687 InstructionSet instruction_set_; member in class:art::FINAL
    [all...]
  /art/compiler/driver/
compiler_driver.h 141 return instruction_set_;
465 const InstructionSet instruction_set_; member in class:art::CompilerDriver
compiler_driver.cc 287 instruction_set_(instruction_set == kArm ? kThumb2 : instruction_set),
336 if (Is64BitInstructionSet(instruction_set_)) { \
337 return CreateTrampoline64(instruction_set_, abi, \
340 return CreateTrampoline32(instruction_set_, abi, \
    [all...]
  /art/oatdump/
oatdump.cc 350 instruction_set_(oat_file_.GetOatHeader().GetInstructionSet()),
351 disassembler_(Disassembler::Create(instruction_set_,
357 Is64BitInstructionSet(instruction_set_)
371 return instruction_set_;
1581 const InstructionSet instruction_set_; member in class:art::OatDumper::StackMapsHelper
1711 const InstructionSet instruction_set_; member in class:art::OatDumper
    [all...]
  /art/imgdiag/
imgdiag.cc     [all...]

Completed in 429 milliseconds