Searched refs:rhs (Results 1 - 25 of 111) sorted by relevance

12345

/art/runtime/arch/arm64/
H A Dregisters_arm64.cc38 std::ostream& operator<<(std::ostream& os, const XRegister& rhs) { argument
39 if (rhs >= X0 && rhs < kNumberOfXRegisters) {
40 os << kRegisterNames[rhs];
42 os << "XRegister[" << static_cast<int>(rhs) << "]";
47 std::ostream& operator<<(std::ostream& os, const WRegister& rhs) { argument
48 if (rhs >= W0 && rhs < kNumberOfWRegisters) {
49 os << kWRegisterNames[rhs];
51 os << "WRegister[" << static_cast<int>(rhs) << "]";
56 operator <<(std::ostream& os, const DRegister& rhs) argument
65 operator <<(std::ostream& os, const SRegister& rhs) argument
[all...]
H A Dregisters_arm64.h71 std::ostream& operator<<(std::ostream& os, const XRegister& rhs);
111 std::ostream& operator<<(std::ostream& os, const WRegister& rhs);
150 std::ostream& operator<<(std::ostream& os, const DRegister& rhs);
189 std::ostream& operator<<(std::ostream& os, const SRegister& rhs);
/art/runtime/arch/arm/
H A Dregisters_arm.cc28 std::ostream& operator<<(std::ostream& os, const Register& rhs) { argument
29 if (rhs >= R0 && rhs <= PC) {
30 os << kRegisterNames[rhs];
32 os << "Register[" << static_cast<int>(rhs) << "]";
37 std::ostream& operator<<(std::ostream& os, const SRegister& rhs) { argument
38 if (rhs >= S0 && rhs < kNumberOfSRegisters) {
39 os << "s" << static_cast<int>(rhs);
41 os << "SRegister[" << static_cast<int>(rhs) << "]";
[all...]
/art/runtime/arch/mips/
H A Dregisters_mips.cc30 std::ostream& operator<<(std::ostream& os, const Register& rhs) { argument
31 if (rhs >= ZERO && rhs <= RA) {
32 os << kRegisterNames[rhs];
34 os << "Register[" << static_cast<int>(rhs) << "]";
39 std::ostream& operator<<(std::ostream& os, const FRegister& rhs) { argument
40 if (rhs >= F0 && rhs < kNumberOfFRegisters) {
41 os << "f" << static_cast<int>(rhs);
43 os << "FRegister[" << static_cast<int>(rhs) << "]";
[all...]
/art/runtime/arch/mips64/
H A Dregisters_mips64.cc31 std::ostream& operator<<(std::ostream& os, const GpuRegister& rhs) { argument
32 if (rhs >= ZERO && rhs < kNumberOfGpuRegisters) {
33 os << kRegisterNames[rhs];
35 os << "GpuRegister[" << static_cast<int>(rhs) << "]";
40 std::ostream& operator<<(std::ostream& os, const FpuRegister& rhs) { argument
41 if (rhs >= F0 && rhs < kNumberOfFpuRegisters) {
42 os << "f" << static_cast<int>(rhs);
44 os << "FpuRegister[" << static_cast<int>(rhs) << "]";
[all...]
/art/runtime/arch/x86_64/
H A Dregisters_x86_64.cc28 std::ostream& operator<<(std::ostream& os, const Register& rhs) { argument
29 if (rhs >= RAX && rhs <= R15) {
30 os << kRegisterNames[rhs];
32 os << "Register[" << static_cast<int>(rhs) << "]";
37 std::ostream& operator<<(std::ostream& os, const FloatRegister& rhs) { argument
38 if (rhs >= XMM0 && rhs <= XMM15) {
39 os << "xmm" << static_cast<int>(rhs);
41 os << "Register[" << static_cast<int>(rhs) << "]";
[all...]
H A Dregisters_x86_64.h50 std::ostream& operator<<(std::ostream& os, const Register& rhs);
71 std::ostream& operator<<(std::ostream& os, const FloatRegister& rhs);
/art/compiler/dex/
H A Dreg_storage_eq.h28 inline bool operator==(const RegStorage& lhs, const RegStorage& rhs) { argument
29 return lhs.ExactlyEquals(rhs);
32 inline bool operator!=(const RegStorage& lhs, const RegStorage& rhs) { argument
33 return lhs.NotExactlyEquals(rhs);
/art/runtime/arch/x86/
H A Dregisters_x86.cc27 std::ostream& operator<<(std::ostream& os, const Register& rhs) { argument
28 if (rhs >= EAX && rhs <= EDI) {
29 os << kRegisterNames[rhs];
31 os << "Register[" << static_cast<int>(rhs) << "]";
H A Dregisters_x86.h42 std::ostream& operator<<(std::ostream& os, const Register& rhs);
/art/runtime/
H A Dclass_reference.h30 inline bool operator<(const ClassReference& lhs, const ClassReference& rhs) { argument
31 if (lhs.second < rhs.second) {
33 } else if (lhs.second > rhs.second) {
36 return (lhs.first < rhs.first);
H A Ddex_file-inl.h60 inline bool Signature::operator==(const Signature& rhs) const {
62 return rhs.dex_file_ == nullptr;
64 if (rhs.dex_file_ == nullptr) {
67 if (dex_file_ == rhs.dex_file_) {
68 return proto_id_ == rhs.proto_id_;
77 rhs.dex_file_->StringDataAndUtf16LengthByIdx(rhs.proto_id_->shorty_idx_,
87 rhs.dex_file_->GetTypeId(rhs.proto_id_->return_type_idx_);
89 rhs
[all...]
H A Dmapping_table.h96 bool operator==(const DexToPcIterator& rhs) const {
97 CHECK(table_ == rhs.table_);
98 return element_ == rhs.element_;
100 bool operator!=(const DexToPcIterator& rhs) const {
101 CHECK(table_ == rhs.table_);
102 return element_ != rhs.element_;
173 bool operator==(const PcToDexIterator& rhs) const {
174 CHECK(table_ == rhs.table_);
175 return element_ == rhs.element_;
177 bool operator!=(const PcToDexIterator& rhs) cons
[all...]
H A Dinvoke_type.h33 std::ostream& operator<<(std::ostream& os, const InvokeType& rhs);
H A Dthread_state.h50 std::ostream& operator<<(std::ostream& os, const ThreadState& rhs);
/art/compiler/
H A Doutput_stream.cc21 std::ostream& operator<<(std::ostream& os, const Whence& rhs) { argument
22 switch (rhs) {
H A Dcompiled_method.h52 bool operator==(const CompiledCode& rhs) const;
287 friend bool operator==(const LinkerPatch& lhs, const LinkerPatch& rhs);
288 friend bool operator<(const LinkerPatch& lhs, const LinkerPatch& rhs);
291 inline bool operator==(const LinkerPatch& lhs, const LinkerPatch& rhs) { argument
292 return lhs.literal_offset_ == rhs.literal_offset_ &&
293 lhs.patch_type_ == rhs.patch_type_ &&
294 lhs.target_dex_file_ == rhs.target_dex_file_ &&
295 lhs.cmp1_ == rhs.cmp1_ &&
296 lhs.cmp2_ == rhs.cmp2_;
299 inline bool operator<(const LinkerPatch& lhs, const LinkerPatch& rhs) { argument
[all...]
H A Doutput_stream.h32 std::ostream& operator<<(std::ostream& os, const Whence& rhs);
/art/test/083-compiler-regressions/src/
H A DZeroTests.java42 private static long longDiv(long lhs, long rhs) { argument
43 return lhs / rhs;
46 private static long longMod(long lhs, long rhs) { argument
47 return lhs % rhs;
/art/runtime/verifier/
H A Dreg_type-inl.h64 inline bool RegType::AssignableFrom(const RegType& lhs, const RegType& rhs, bool strict) { argument
65 if (lhs.Equals(rhs)) {
69 return rhs.IsBooleanTypes();
71 return rhs.IsByteTypes();
73 return rhs.IsShortTypes();
75 return rhs.IsCharTypes();
77 return rhs.IsIntegralTypes();
79 return rhs.IsFloatTypes();
81 return rhs.IsLongTypes();
83 return rhs
90 << lhs << "' := '" << rhs << "'"; local
[all...]
/art/runtime/base/
H A Ddumpable.h48 std::ostream& operator<<(std::ostream& os, const Dumpable<T>& rhs) { argument
49 rhs.Dump(os);
H A Dhex_dump.h48 inline std::ostream& operator<<(std::ostream& os, const HexDump& rhs) { argument
49 rhs.Dump(os);
/art/runtime/gc/
H A Dallocator_type.h36 std::ostream& operator<<(std::ostream& os, const AllocatorType& rhs);
/art/compiler/optimizing/
H A Dboolean_simplifier.cc71 HInstruction* rhs = cond->InputAt(1); local
73 return new (allocator) HNotEqual(lhs, rhs);
75 return new (allocator) HEqual(lhs, rhs);
77 return new (allocator) HGreaterThanOrEqual(lhs, rhs);
79 return new (allocator) HGreaterThan(lhs, rhs);
81 return new (allocator) HLessThanOrEqual(lhs, rhs);
84 return new (allocator) HLessThan(lhs, rhs);
/art/runtime/jdwp/
H A Djdwp_main.cc632 std::ostream& operator<<(std::ostream& os, const JdwpLocation& rhs) { argument
634 << Dbg::GetClassName(rhs.class_id) << "." << Dbg::GetMethodName(rhs.method_id)
635 << "@" << StringPrintf("%#" PRIx64, rhs.dex_pc) << " " << rhs.type_tag << "]";
639 bool operator==(const JdwpLocation& lhs, const JdwpLocation& rhs) { argument
640 return lhs.dex_pc == rhs.dex_pc && lhs.method_id == rhs.method_id &&
641 lhs.class_id == rhs.class_id && lhs.type_tag == rhs
644 operator !=(const JdwpLocation& lhs, const JdwpLocation& rhs) argument
648 operator ==(const JdwpOptions& lhs, const JdwpOptions& rhs) argument
[all...]

Completed in 1780 milliseconds

12345