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

1 2

  /art/compiler/jni/quick/
jni_compiler.h 39 : instruction_set_(instruction_set),
49 InstructionSet GetInstructionSet() const { return instruction_set_; }
57 InstructionSet instruction_set_; member in class:art::JniCompiledMethod
  /art/cmdline/
cmdline.h 161 instruction_set_ = GetInstructionSetFromString(instruction_set_str);
162 if (instruction_set_ == InstructionSet::kNone) {
247 InstructionSet instruction_set_ = InstructionSet::kNone; member in struct:art::CmdlineArgs
262 if (instruction_set_ == InstructionSet::kNone) {
264 instruction_set_ = kRuntimeISA;
301 if (!LocationToFilename(boot_image_location, instruction_set_, &file_name)) {
413 return StartRuntime(args->boot_image_location_, args->instruction_set_, args_->runtime_args_);
  /art/compiler/
common_compiler_test.cc 110 runtime_->SetInstructionSet(instruction_set_);
121 // Copy local instruction_set_ and instruction_set_features_ to *compiler_options_;
123 if (instruction_set_ == InstructionSet::kThumb2) {
126 CHECK_EQ(instruction_set_, instruction_set_features_->GetInstructionSet());
128 compiler_options_->instruction_set_ = instruction_set_;
130 InstructionSetFeatures::FromBitmap(instruction_set_, instruction_set_features_->AsBitmap());
136 instruction_set_ = instruction_set;
common_compiler_test.h 86 InstructionSet instruction_set_ = member in class:art::CommonCompilerTest
  /art/compiler/optimizing/
stack_map_stream.h 41 instruction_set_(instruction_set),
101 const InstructionSet instruction_set_; member in class:art::StackMapStream
stack_map_stream.cc 34 return StackMap::UnpackNativePc(stack_maps_[i][StackMap::kPackedNativePc], instruction_set_);
39 StackMap::PackNativePc(native_pc_offset, instruction_set_);
83 StackMap::PackNativePc(native_pc_offset, instruction_set_);
117 instruction_set_);
124 CHECK_EQ(stack_map.GetNativePcOffset(instruction_set_), native_pc_offset);
scheduler.h 492 instruction_set_(instruction_set) {}
504 const InstructionSet instruction_set_; member in class:art::HInstructionScheduling
emit_swap_mips_test.cc 31 instruction_set_ = InstructionSet::kMips;
ssa_liveness_analysis_test.cc 36 CHECK(codegen_ != nullptr) << instruction_set_ << " is not a supported target architecture.";
graph_visualizer.cc 115 : instruction_set_(instruction_set), disassembler_(nullptr) {
156 if (instruction_set_ == InstructionSet::kThumb2) {
165 InstructionSet instruction_set_; member in class:art::HGraphVisualizerDisassembler
    [all...]
  /art/dex2oat/linker/
multi_oat_relative_patcher.cc 46 instruction_set_(instruction_set),
relative_patcher_test.h 44 instruction_set_(instruction_set),
84 patcher_ = RelativePatcher::Create(instruction_set_,
109 instruction_set_,
120 CompiledMethod::AlignCode(unaligned_code_offset, instruction_set_);
361 InstructionSet instruction_set_; member in class:art::linker::RelativePatcherTest
multi_oat_relative_patcher.h 160 InstructionSet instruction_set_; member in class:art::linker::final
  /art/runtime/
oat.cc 70 instruction_set_(instruction_set),
106 if (!IsValidInstructionSet(instruction_set_)) {
128 if (!IsValidInstructionSet(instruction_set_)) {
129 return StringPrintf("Invalid instruction set, %d.", static_cast<int>(instruction_set_));
161 return instruction_set_;
runtime-inl.h 47 DCHECK_EQ(instruction_set_, kRuntimeISA);
oat.h 120 InstructionSet instruction_set_; variable
runtime.cc 229 instruction_set_(InstructionSet::kNone),
    [all...]
runtime.h 434 return instruction_set_;
944 InstructionSet instruction_set_; member in class:art::verifier::VerifyMode
    [all...]
  /art/dex2oat/linker/arm/
relative_patcher_arm_base.cc 183 uint32_t thunk_offset = CompiledCode::AlignCode(offset, instruction_set_);
208 uint32_t aligned_offset = CompiledMethod::AlignCode(offset, instruction_set_);
228 aligned_offset = CompiledMethod::AlignCode(offset, instruction_set_);
265 info.isa = instruction_set_;
280 instruction_set_(instruction_set),
318 uint32_t thunk_offset = CompiledCode::AlignCode(offset, instruction_set_);
452 size_t alignment = GetInstructionSetAlignment(instruction_set_);
491 uint32_t target_offset = result.second - CompiledCode::CodeDelta(instruction_set_);
525 GetInstructionSetAlignment(instruction_set_));
relative_patcher_arm_base.h 114 const InstructionSet instruction_set_; member in class:art::linker::ArmBaseRelativePatcher
  /art/compiler/driver/
compiler_options.h 271 return instruction_set_;
383 InstructionSet instruction_set_; member in class:art::final
compiler_options.cc 49 instruction_set_(kRuntimeISA == InstructionSet::kArm ? InstructionSet::kThumb2 : kRuntimeISA),
  /art/oatdump/
oatdump.cc 390 instruction_set_(oat_file_.GetOatHeader().GetInstructionSet()),
391 disassembler_(Disassembler::Create(instruction_set_,
397 Is64BitInstructionSet(instruction_set_)
411 return instruction_set_;
535 static_cast<size_t>(GetInstructionSetPointerSize(instruction_set_)),
1602 const InstructionSet instruction_set_; member in class:art::OatDumper::StackMapsHelper
1779 const InstructionSet instruction_set_; member in class:art::OatDumper
    [all...]
  /art/dex2oat/
dex2oat.cc     [all...]
  /art/dex2oat/linker/arm64/
relative_patcher_arm64_test.cc 182 compiler_options.instruction_set_ = instruction_set_;
184 InstructionSetFeatures::FromBitmap(instruction_set_, instruction_set_features_->AsBitmap());
    [all...]

Completed in 213 milliseconds

1 2