Home
last modified time | relevance | path

Searched refs:rhs (Results 101 – 125 of 147) sorted by relevance

123456

/art/compiler/optimizing/
Doptimizing_compiler_stats.h113 std::ostream& operator<<(std::ostream& os, MethodCompilationStat rhs);
Dcode_generator_x86.h334 void GenerateFPCompare(Location lhs, Location rhs, HInstruction* insn, bool is_double);
543 void GenerateIntCompare(Location lhs, Location rhs);
544 void GenerateIntCompare(Register lhs, Location rhs);
Dcode_generator_x86_64.h592 void GenerateIntCompare(Location lhs, Location rhs);
593 void GenerateIntCompare(CpuRegister lhs, Location rhs);
596 void GenerateLongCompare(Location lhs, Location rhs);
Dinstruction_simplifier.cc724 HInstruction *rhs = cond->InputAt(1); in GetOppositeConditionSwapOps() local
727 return new (allocator) HEqual(rhs, lhs); in GetOppositeConditionSwapOps()
729 return new (allocator) HNotEqual(rhs, lhs); in GetOppositeConditionSwapOps()
731 return new (allocator) HGreaterThan(rhs, lhs); in GetOppositeConditionSwapOps()
733 return new (allocator) HGreaterThanOrEqual(rhs, lhs); in GetOppositeConditionSwapOps()
735 return new (allocator) HLessThan(rhs, lhs); in GetOppositeConditionSwapOps()
737 return new (allocator) HLessThanOrEqual(rhs, lhs); in GetOppositeConditionSwapOps()
739 return new (allocator) HAbove(rhs, lhs); in GetOppositeConditionSwapOps()
741 return new (allocator) HAboveOrEqual(rhs, lhs); in GetOppositeConditionSwapOps()
743 return new (allocator) HBelow(rhs, lhs); in GetOppositeConditionSwapOps()
[all …]
Dcode_generator_arm64.cc2125 Operand rhs = InputOperandAt(instr, 1); in HandleBinaryOp() local
2127 __ Add(dst, lhs, rhs); in HandleBinaryOp()
2129 __ And(dst, lhs, rhs); in HandleBinaryOp()
2131 __ Orr(dst, lhs, rhs); in HandleBinaryOp()
2133 __ Sub(dst, lhs, rhs); in HandleBinaryOp()
2135 if (rhs.IsImmediate()) { in HandleBinaryOp()
2136 uint32_t shift = rhs.GetImmediate() & (lhs.GetSizeInBits() - 1); in HandleBinaryOp()
2146 __ Cmp(lhs, rhs); in HandleBinaryOp()
2147 __ Csel(dst, lhs, rhs, instr->IsMin() ? lt : gt); in HandleBinaryOp()
2150 __ Eor(dst, lhs, rhs); in HandleBinaryOp()
[all …]
Dlocations.h443 std::ostream& operator<<(std::ostream& os, Location::Kind rhs);
444 std::ostream& operator<<(std::ostream& os, Location::Policy rhs);
Dgraph_checker.cc1015 HInstruction* rhs = op->InputAt(1); in VisitCondition() local
1016 if (DataType::Kind(lhs->GetType()) != DataType::Kind(rhs->GetType())) { in VisitCondition()
1021 DataType::PrettyDescriptor(rhs->GetType()))); in VisitCondition()
1028 } else if (rhs->GetType() == DataType::Type::kReference) { in VisitCondition()
Dcode_generator_x86_64.cc1872 Location rhs = condition->GetLocations()->InAt(1); in GenerateTestAndBranch() local
1873 codegen_->GenerateIntCompare(lhs, rhs); in GenerateTestAndBranch()
2086 Location rhs = locations->InAt(1); in HandleCondition() local
2097 codegen_->GenerateIntCompare(lhs, rhs); in HandleCondition()
2104 codegen_->GenerateLongCompare(lhs, rhs); in HandleCondition()
2109 if (rhs.IsConstant()) { in HandleCondition()
2110 float value = rhs.GetConstant()->AsFloatConstant()->GetValue(); in HandleCondition()
2112 } else if (rhs.IsStackSlot()) { in HandleCondition()
2113 __ ucomiss(lhs_reg, Address(CpuRegister(RSP), rhs.GetStackIndex())); in HandleCondition()
2115 __ ucomiss(lhs_reg, rhs.AsFpuRegister<XmmRegister>()); in HandleCondition()
[all …]
/art/dex2oat/linker/arm/
Drelative_patcher_arm_base.cc159 bool operator()(const ThunkData* lhs, const ThunkData* rhs) const { in operator ()()
161 DCHECK(rhs->HasPendingOffset()); in operator ()()
164 return lhs->GetPendingOffset() > rhs->GetPendingOffset(); in operator ()()
/art/runtime/jit/
Djit_code_cache.cc78 bool operator<(const JniStubKey& rhs) const { in operator <()
79 if (is_static_ != rhs.is_static_) { in operator <()
80 return rhs.is_static_; in operator <()
82 if (is_synchronized_ != rhs.is_synchronized_) { in operator <()
83 return rhs.is_synchronized_; in operator <()
85 if (is_fast_native_ != rhs.is_fast_native_) { in operator <()
86 return rhs.is_fast_native_; in operator <()
88 if (is_critical_native_ != rhs.is_critical_native_) { in operator <()
89 return rhs.is_critical_native_; in operator <()
91 return strcmp(shorty_, rhs.shorty_) < 0; in operator <()
/art/libartbase/base/
Dtransform_array_ref_test.cc33 ATTRIBUTE_UNUSED bool operator==(const ValueHolder& lhs, const ValueHolder& rhs) { in operator ==() argument
34 return lhs.value == rhs.value; in operator ==()
Dbit_table.h319 [](const Entry& lhs, const Entry& rhs) {
320 return memcmp(&lhs, &rhs, sizeof(Entry)) == 0;
/art/runtime/jni/
Djni_id_manager.cc369 StackArtFieldHandleScope<1> rhs(Thread::Current()); in EncodeFieldId() local
370 return EncodeFieldId(rhs.NewHandle(field)); in EncodeFieldId()
382 StackArtMethodHandleScope<1> rhs(Thread::Current()); in EncodeMethodId() local
383 return EncodeMethodId(rhs.NewHandle(method)); in EncodeMethodId()
/art/openjdkjvmti/
Devents.cc813 art::StackReflectiveHandleScope<1, 1> rhs(self); in FieldRead() local
814 art::ReflectiveHandle<art::ArtField> field(rhs.NewHandle(field_p)); in FieldRead()
815 art::ReflectiveHandle<art::ArtMethod> method(rhs.NewHandle(method_p)); in FieldRead()
842 art::StackReflectiveHandleScope<1, 1> rhs(self); in FieldWritten() local
843 art::ReflectiveHandle<art::ArtField> field(rhs.NewHandle(field_p)); in FieldWritten()
844 art::ReflectiveHandle<art::ArtMethod> method(rhs.NewHandle(method_p)); in FieldWritten()
877 art::StackReflectiveHandleScope<1, 1> rhs(self); in FieldWritten() local
878 art::ReflectiveHandle<art::ArtField> field(rhs.NewHandle(field_p)); in FieldWritten()
879 art::ReflectiveHandle<art::ArtMethod> method(rhs.NewHandle(method_p)); in FieldWritten()
/art/runtime/base/
Dlocks.h153 std::ostream& operator<<(std::ostream& os, LockLevel rhs);
Dmutex.cc49 static bool ComputeRelativeTimeSpec(timespec* result_ts, const timespec& lhs, const timespec& rhs) { in ComputeRelativeTimeSpec() argument
51 result_ts->tv_sec = lhs.tv_sec - rhs.tv_sec; in ComputeRelativeTimeSpec()
52 result_ts->tv_nsec = lhs.tv_nsec - rhs.tv_nsec; in ComputeRelativeTimeSpec()
/art/runtime/verifier/
Dverifier_deps.h241 bool Equals(const DexFileDeps& rhs) const;
327 bool Equals(const VerifierDeps& rhs) const;
/art/libartbase/arch/
Dinstruction_set.h37 std::ostream& operator<<(std::ostream& os, InstructionSet rhs);
/art/runtime/
Dlock_word.h286 bool operator==(const LockWord& rhs) = delete;
Dstack.h57 std::ostream& operator<<(std::ostream& os, VRegKind rhs);
Dtrace.h60 std::ostream& operator<<(std::ostream& os, TracingMode rhs);
Dinstrumentation.h766 std::ostream& operator<<(std::ostream& os, Instrumentation::InstrumentationEvent rhs);
767 std::ostream& operator<<(std::ostream& os, Instrumentation::InstrumentationLevel rhs);
/art/runtime/native/
Djava_lang_reflect_Executable.cc303 const dex::TypeId& rhs = other_method->GetDexFile()->GetTypeId( in Executable_compareMethodParametersInternal() local
310 rhs.descriptor_idx_, &rhs_len); in Executable_compareMethodParametersInternal()
/art/tools/veridex/
Dflow_analysis.cc152 RegisterValue rhs = GetRegister(instruction.VRegB()); \ in GetBranchFlags()
153 if (lhs.IsConstant() && rhs.IsConstant()) { \ in GetBranchFlags()
154 if (lhs.GetConstant() op rhs.GetConstant()) { \ in GetBranchFlags()
/art/test/160-read-barrier-stress/src/
DMain.java284 public static void assertDifferentObject(Object lhs, Object rhs) { in assertDifferentObject() argument
285 if (lhs == rhs) { in assertDifferentObject()
286 throw new Error("Same objects: " + lhs + " and " + rhs); in assertDifferentObject()
290 public static void assertSameObject(Object lhs, Object rhs) { in assertSameObject() argument
291 if (lhs != rhs) { in assertSameObject()
292 throw new Error("Different objects: " + lhs + " and " + rhs); in assertSameObject()

123456