/art/compiler/utils/mips/ |
D | assembler_mips.cc | 1468 void MipsAssembler::Branch::InitShortOrLong(MipsAssembler::Branch::OffsetBits offset_size, in InitShortOrLong() 1469 MipsAssembler::Branch::Type short_type, in InitShortOrLong() 1470 MipsAssembler::Branch::Type long_type) { in InitShortOrLong() 1474 void MipsAssembler::Branch::InitializeType(bool is_call, bool is_r6) { in InitializeType() 1503 bool MipsAssembler::Branch::IsNop(BranchCondition condition, Register lhs, Register rhs) { in IsNop() 1515 bool MipsAssembler::Branch::IsUncond(BranchCondition condition, Register lhs, Register rhs) { in IsUncond() 1529 MipsAssembler::Branch::Branch(bool is_r6, uint32_t location, uint32_t target) in Branch() function in art::mips::MipsAssembler::Branch 1539 MipsAssembler::Branch::Branch(bool is_r6, in Branch() function in art::mips::MipsAssembler::Branch 1596 MipsAssembler::Branch::Branch(bool is_r6, uint32_t location, uint32_t target, Register indirect_reg) in Branch() function in art::mips::MipsAssembler::Branch 1608 MipsAssembler::BranchCondition MipsAssembler::Branch::OppositeCondition( in OppositeCondition() [all …]
|
D | assembler_mips.h | 595 class Branch { 649 Branch(bool is_r6, uint32_t location, uint32_t target); 651 Branch(bool is_r6, 658 Branch(bool is_r6, uint32_t location, uint32_t target, Register indirect_reg); 760 friend std::ostream& operator<<(std::ostream& os, const Branch::Type& rhs); 761 friend std::ostream& operator<<(std::ostream& os, const Branch::OffsetBits& rhs); 777 Branch* GetBranch(uint32_t branch_id); 778 const Branch* GetBranch(uint32_t branch_id) const; 781 void EmitBranch(Branch* branch); 807 std::vector<Branch> branches_;
|
/art/compiler/utils/mips64/ |
D | assembler_mips64.cc | 1170 void Mips64Assembler::Branch::InitShortOrLong(Mips64Assembler::Branch::OffsetBits offset_size, in InitShortOrLong() 1171 Mips64Assembler::Branch::Type short_type, in InitShortOrLong() 1172 Mips64Assembler::Branch::Type long_type) { in InitShortOrLong() 1176 void Mips64Assembler::Branch::InitializeType(bool is_call) { in InitializeType() 1193 bool Mips64Assembler::Branch::IsNop(BranchCondition condition, GpuRegister lhs, GpuRegister rhs) { in IsNop() 1205 bool Mips64Assembler::Branch::IsUncond(BranchCondition condition, in IsUncond() 1221 Mips64Assembler::Branch::Branch(uint32_t location, uint32_t target) in Branch() function in art::mips64::Mips64Assembler::Branch 1231 Mips64Assembler::Branch::Branch(uint32_t location, in Branch() function in art::mips64::Mips64Assembler::Branch 1279 Mips64Assembler::Branch::Branch(uint32_t location, uint32_t target, GpuRegister indirect_reg) in Branch() function in art::mips64::Mips64Assembler::Branch 1291 Mips64Assembler::BranchCondition Mips64Assembler::Branch::OppositeCondition( in OppositeCondition() [all …]
|
D | assembler_mips64.h | 517 class Branch { 564 Branch(uint32_t location, uint32_t target); 566 Branch(uint32_t location, 572 Branch(uint32_t location, uint32_t target, GpuRegister indirect_reg); 672 friend std::ostream& operator<<(std::ostream& os, const Branch::Type& rhs); 673 friend std::ostream& operator<<(std::ostream& os, const Branch::OffsetBits& rhs); 693 Branch* GetBranch(uint32_t branch_id); 694 const Branch* GetBranch(uint32_t branch_id) const; 697 void EmitBranch(Branch* branch); 707 std::vector<Branch> branches_;
|
/art/test/800-smali/smali/ |
D | b_22411633_4.smali | 20 # Branch backward.
|
D | b_22411633_5.smali | 23 # Branch backward.
|
D | b_22411633_3.smali | 14 # Branch forward.
|
D | b_22411633_1.smali | 14 # Branch forward.
|
D | b_22411633_2.smali | 14 # Branch forward.
|
/art/runtime/ |
D | instrumentation.h | 98 virtual void Branch(Thread* thread, 349 void Branch(Thread* thread, ArtMethod* method, uint32_t dex_pc, int32_t offset) const in Branch() function
|
D | trace.h | 167 void Branch(Thread* thread, ArtMethod* method, uint32_t dex_pc, int32_t dex_pc_offset)
|
D | instrumentation_test.cc | 103 void Branch(Thread* thread ATTRIBUTE_UNUSED, in Branch() function in art::instrumentation::FINAL 354 instr->Branch(self, method, dex_pc, -1); in ReportEvent()
|
D | instrumentation.cc | 957 listener->Branch(thread, method, dex_pc, offset); in BranchImpl()
|
D | trace.cc | 819 void Trace::Branch(Thread* /*thread*/, ArtMethod* method, in Branch() function in art::Trace
|
D | debugger.cc | 233 void Branch(Thread* /*thread*/, ArtMethod* method, uint32_t dex_pc, int32_t dex_pc_offset) in Branch() function in art::FINAL
|
/art/compiler/utils/arm/ |
D | assembler_thumb2.h | 471 static Fixup Branch(uint32_t location, Type type, Size size = kBranch16Bit,
|
D | assembler_thumb2.cc | 2576 FixupId branch_id = AddFixup(Fixup::Branch(pc, branch_type, size, cond)); in EmitBranch()
|
/art/runtime/arch/mips64/ |
D | quick_entrypoints_mips64.S | 1703 # Branch if found.
|
/art/runtime/arch/mips/ |
D | quick_entrypoints_mips.S | 1684 # Branch if found.
|
/art/runtime/interpreter/ |
D | interpreter_switch_impl.cc | 75 instrumentation->Branch(self, method, dex_pc, offset); \
|
D | interpreter_goto_table_impl.cc | 70 instrumentation->Branch(self, method, dex_pc, offset); \
|