Searched refs:GetSource (Results 1 – 16 of 16) sorted by relevance
/art/compiler/optimizing/ |
D | parallel_move_resolver.cc | 46 if (move.IsEliminated() || move.GetSource().IsConstant()) { in EmitNativeCode() 50 if ((move.GetSource().IsStackSlot() || move.GetSource().IsDoubleStackSlot()) && in EmitNativeCode() 61 if (!move.IsEliminated() && !move.GetSource().IsConstant()) { in EmitNativeCode() 70 DCHECK(move->GetSource().IsConstant()); in EmitNativeCode() 108 Location source = move->GetSource(); in UpdateSourceOf() 139 DCHECK(!move->GetSource().IsInvalid()); in PerformMove() 187 if (move->GetSource().Equals(destination)) { in PerformMove() 220 Location source = move->GetSource(); in PerformMove() 318 if (!move.IsEliminated() && !move.GetSource().IsConstant()) { in EmitNativeCode() 330 Location source = move->GetSource(); in EmitNativeCode() [all …]
|
D | parallel_move_test.cc | 66 DumpLocationForTest(message_, move->GetSource()); in EmitMove() 78 DumpLocationForTest(message_, move->GetSource()); in EmitSwap() 137 DumpLocationForTest(message_, move->GetSource()); in EmitMove()
|
D | code_generator.cc | 485 Location source = operands->GetSource(); in FinishCriticalNativeFrameSetup() 486 if (operands->GetSource().IsStackSlot()) { in FinishCriticalNativeFrameSetup() 488 } else if (operands->GetSource().IsDoubleStackSlot()) { in FinishCriticalNativeFrameSetup()
|
D | graph_visualizer.cc | 373 DumpLocation(str, move->GetSource()); in VisitParallelMove()
|
D | nodes.cc | 3387 << " source=" << rhs.GetSource() in operator <<()
|
D | nodes.h | 8265 Location GetSource() const { return source_; } 8370 << move.GetSource() << " ==> " << move.GetDestination() << " and "
|
D | code_generator_riscv64.cc | 1060 codegen_->MoveLocation(move->GetDestination(), move->GetSource(), move->GetType()); in EmitMove() 1065 codegen_->SwapLocations(move->GetDestination(), move->GetSource(), move->GetType()); in EmitSwap()
|
D | code_generator_x86_64.cc | 6363 Location source = move->GetSource(); in EmitMove() 6548 Location source = move->GetSource(); in EmitSwap()
|
D | code_generator_x86.cc | 7005 Location source = move->GetSource(); in EmitMove() 7223 Location source = move->GetSource(); in EmitSwap()
|
D | code_generator_arm_vixl.cc | 7407 Location source = move->GetSource(); in EmitMove() 7566 Location source = move->GetSource(); in EmitSwap()
|
D | code_generator_arm64.cc | 1201 codegen_->MoveLocation(move->GetDestination(), move->GetSource(), DataType::Type::kVoid); in EmitMove()
|
/art/tools/veridex/ |
D | flow_analysis.h | 61 RegisterSource GetSource() const { return source_; } in GetSource() function
|
D | flow_analysis.cc | 722 value.GetSource(), value.GetDexFileReference(), VeriClass::class_); in AnalyzeInvoke() 749 obj.GetSource(), obj.GetDexFileReference(), VeriClass::class_); in AnalyzeInvoke() 755 value.GetSource(), value.GetDexFileReference(), VeriClass::class_); in AnalyzeInvoke()
|
/art/runtime/verifier/ |
D | verifier_deps.h | 162 dex::StringIndex GetSource() const { return std::get<1>(*this); } in GetSource() function
|
D | verifier_deps.cc | 662 vios->Stream() << GetStringFromId(dex_file, entry.GetSource()) << " must be assignable to " in Dump() 725 const std::string& source_desc = GetStringFromId(dex_file, entry.GetSource()); in VerifyDexFileAndUpdateStatus()
|
/art/dex2oat/ |
D | verifier_deps_test.cc | 273 std::string actual_source = verifier_deps_->GetStringFromId(dex_file, entry.GetSource()); in HasAssignable()
|