Home
last modified time | relevance | path

Searched defs:label (Results 1 – 25 of 35) sorted by relevance

12

/art/runtime/base/
Dtiming_logger.h159 ScopedTiming(const char* label, TimingLogger* logger) : logger_(logger) { in ScopedTiming()
166 void NewTiming(const char* label) { in NewTiming()
Dtiming_logger.cc91 void CumulativeLogger::AddPair(const std::string& label, uint64_t delta_time) { in AddPair()
138 void TimingLogger::StartTiming(const char* label) { in StartTiming()
/art/runtime/arch/mips/
Dquick_entrypoints_mips.S597 .macro LOAD_WORD_TO_REG reg, next_arg, index, label
603 .macro LOAD_LONG_TO_REG reg1, reg2, next_arg, index, label
610 .macro LOAD_FLOAT_TO_REG reg, next_arg, index, label
616 .macro LOAD_DOUBLE_TO_REG reg1, reg2, next_arg, index, tmp, label
/art/runtime/arch/x86_64/
Dmemcmp16_x86_64.S29 # define L(label) .L##label argument
/art/compiler/utils/arm/
Dassembler_thumb2_test.cc615 Label label; in TEST_F() local
638 Label label; in TEST_F() local
661 Label label; in TEST_F() local
684 Label label; in TEST_F() local
709 Label label; in TEST_F() local
734 Label label; in TEST_F() local
759 Label label; in TEST_F() local
784 Label label; in TEST_F() local
812 Label label; in TEST_F() local
840 Label label; in TEST_F() local
[all …]
Dassembler_arm.h691 void AdjustLabelPosition(Label* label) { in AdjustLabelPosition()
1051 void Jump(Label* label) OVERRIDE { in Jump()
1077 void BindTrackedLabel(Label* label) { in BindTrackedLabel()
Dassembler_thumb2.cc90 void Thumb2Assembler::BindLabel(Label* label, uint32_t bound_pc) { in BindLabel()
109 Label* label = lit.GetLabel(); in BindLiterals() local
118 Label* label = table.GetLabel(); in BindJumpTables() local
190 Label* label = literal.GetLabel(); in AdjustFixups() local
197 Label* label = table.GetLabel(); in AdjustFixups() local
1136 void Thumb2Assembler::b(Label* label, Condition cond) { in b()
1142 void Thumb2Assembler::bl(Label* label, Condition cond) { in bl()
1148 void Thumb2Assembler::blx(Label* label) { in blx()
1153 void Thumb2Assembler::MarkExceptionHandler(Label* label) { in MarkExceptionHandler()
2546 void Thumb2Assembler::EmitBranch(Condition cond, Label* label, bool link, bool x) { in EmitBranch()
[all …]
Dassembler_arm32.cc548 void Arm32Assembler::b(Label* label, Condition cond) { in b()
553 void Arm32Assembler::bl(Label* label, Condition cond) { in bl()
558 void Arm32Assembler::MarkExceptionHandler(Label* label) { in MarkExceptionHandler()
709 void Arm32Assembler::EmitBranch(Condition cond, Label* label, bool link) { in EmitBranch()
1329 void Arm32Assembler::Bind(Label* label) { in Bind()
1636 void Arm32Assembler::CompareAndBranchIfZero(Register r, Label* label) { in CompareAndBranchIfZero()
1642 void Arm32Assembler::CompareAndBranchIfNonZero(Register r, Label* label) { in CompareAndBranchIfNonZero()
/art/runtime/arch/x86/
Dmemcmp16_x86.S24 # define L(label) .L##label argument
/art/compiler/utils/mips64/
Dassembler_mips64.cc1525 void Mips64Assembler::Bind(Mips64Label* label) { in Bind()
1591 void Mips64Assembler::FinalizeLabeledBranch(Mips64Label* label) { in FinalizeLabeledBranch()
1610 void Mips64Assembler::Buncond(Mips64Label* label) { in Buncond()
1616 void Mips64Assembler::Bcond(Mips64Label* label, in Bcond()
1629 void Mips64Assembler::Call(Mips64Label* label, GpuRegister indirect_reg) { in Call()
1739 void Mips64Assembler::Bc(Mips64Label* label) { in Bc()
1743 void Mips64Assembler::Jialc(Mips64Label* label, GpuRegister indirect_reg) { in Jialc()
1747 void Mips64Assembler::Bltc(GpuRegister rs, GpuRegister rt, Mips64Label* label) { in Bltc()
1751 void Mips64Assembler::Bltzc(GpuRegister rt, Mips64Label* label) { in Bltzc()
1755 void Mips64Assembler::Bgtzc(GpuRegister rt, Mips64Label* label) { in Bgtzc()
[all …]
Dassembler_mips64.h329 void Bind(Label* label) OVERRIDE { in Bind()
Dassembler_mips64_test.cc216 mips64::Mips64Label label; in BranchCondOneRegHelper() local
245 mips64::Mips64Label label; in BranchCondTwoRegsHelper() local
735 mips64::Mips64Label label; in TEST_F() local
761 mips64::Mips64Label label; in TEST_F() local
787 mips64::Mips64Label label; in TEST_F() local
/art/compiler/utils/mips/
Dassembler_mips.cc1860 void MipsAssembler::Bind(MipsLabel* label) { in Bind()
1926 void MipsAssembler::FinalizeLabeledBranch(MipsLabel* label) { in FinalizeLabeledBranch()
1945 void MipsAssembler::Buncond(MipsLabel* label) { in Buncond()
1951 void MipsAssembler::Bcond(MipsLabel* label, BranchCondition condition, Register lhs, Register rhs) { in Bcond()
1961 void MipsAssembler::Call(MipsLabel* label, Register indirect_reg) { in Call()
2155 void MipsAssembler::B(MipsLabel* label) { in B()
2159 void MipsAssembler::Jalr(MipsLabel* label, Register indirect_reg) { in Jalr()
2163 void MipsAssembler::Beq(Register rs, Register rt, MipsLabel* label) { in Beq()
2167 void MipsAssembler::Bne(Register rs, Register rt, MipsLabel* label) { in Bne()
2171 void MipsAssembler::Beqz(Register rt, MipsLabel* label) { in Beqz()
[all …]
Dassembler_mips_test.cc192 mips::MipsLabel label; in BranchCondOneRegHelper() local
221 mips::MipsLabel label; in BranchCondTwoRegsHelper() local
1256 mips::MipsLabel label; in TEST_F() local
1282 mips::MipsLabel label; in TEST_F() local
1324 mips::MipsLabel label; in TEST_F() local
1352 mips::MipsLabel label; in TEST_F() local
1380 mips::MipsLabel label; in TEST_F() local
1408 mips::MipsLabel label; in TEST_F() local
1436 mips::MipsLabel label; in TEST_F() local
1462 mips::MipsLabel label; in TEST_F() local
Dassembler_mips.h403 void Bind(Label* label) OVERRIDE { in Bind()
/art/runtime/
Ddex_file_verifier.cc178 const char* label) { in CheckListSize()
208 bool DexFileVerifier::CheckList(size_t element_size, const char* label, const uint8_t* *ptr) { in CheckList()
225 bool DexFileVerifier::CheckIndex(uint32_t field, uint32_t limit, const char* label) { in CheckIndex()
236 const char* label) { in CheckValidOffsetAndSize()
254 bool DexFileVerifier::CheckSizeLimit(uint32_t size, uint32_t limit, const char* label) { in CheckSizeLimit()
/art/compiler/utils/x86/
Dassembler_x86.cc49 void X86Assembler::call(Label* label) { in call()
58 void X86Assembler::call(const ExternalLabel& label) { in call()
1565 void X86Assembler::j(Condition condition, Label* label) { in j()
1588 void X86Assembler::j(Condition condition, NearLabel* label) { in j()
1604 void X86Assembler::jecxz(NearLabel* label) { in jecxz()
1632 void X86Assembler::jmp(Label* label) { in jmp()
1653 void X86Assembler::jmp(NearLabel* label) { in jmp()
1788 void X86Assembler::Bind(Label* label) { in Bind()
1801 void X86Assembler::Bind(NearLabel* label) { in Bind()
1862 void X86Assembler::EmitLabel(Label* label, int instruction_size) { in EmitLabel()
[all …]
/art/compiler/optimizing/
Dcode_generator_x86_64.h546 Label label; member
Dcode_generator.h476 LabelType label; member
488 LabelType label; member
Dcode_generator_x86.h575 Label label; member
Dcode_generator_arm64.h609 vixl::Label label; member
/art/test/023-many-interfaces/src/
DManyInterfaces.java173 private static void report(String label, long start, long end, int iter, in report()
/art/compiler/utils/x86_64/
Dassembler_x86_64.cc55 void X86_64Assembler::call(Label* label) { in call()
2007 void X86_64Assembler::j(Condition condition, Label* label) { in j()
2030 void X86_64Assembler::j(Condition condition, NearLabel* label) { in j()
2046 void X86_64Assembler::jrcxz(NearLabel* label) { in jrcxz()
2076 void X86_64Assembler::jmp(Label* label) { in jmp()
2097 void X86_64Assembler::jmp(NearLabel* label) { in jmp()
2349 void X86_64Assembler::Bind(Label* label) { in Bind()
2362 void X86_64Assembler::Bind(NearLabel* label) { in Bind()
2427 void X86_64Assembler::EmitLabel(Label* label, int instruction_size) { in EmitLabel()
2438 void X86_64Assembler::EmitLabelLink(Label* label) { in EmitLabelLink()
[all …]
Dassembler_x86_64.h696 void Jump(Label* label) OVERRIDE { in Jump()
/art/runtime/arch/mips64/
Dquick_entrypoints_mips64.S692 .macro LOOP_OVER_SHORTY_LOADING_REG gpu, fpu, label

12