Home
last modified time | relevance | path

Searched refs:type_check_slow_path (Results 1 – 4 of 4) sorted by relevance

/art/compiler/optimizing/
Dcode_generator_arm64.cc4058 SlowPathCodeARM64* type_check_slow_path = in VisitCheckCast() local
4061 codegen_->AddSlowPath(type_check_slow_path); in VisitCheckCast()
4083 __ B(ne, type_check_slow_path->GetEntryLabel()); in VisitCheckCast()
4109 __ Cbz(temp, type_check_slow_path->GetEntryLabel()); in VisitCheckCast()
4142 __ B(type_check_slow_path->GetEntryLabel()); in VisitCheckCast()
4168 __ Cbz(temp, type_check_slow_path->GetEntryLabel()); in VisitCheckCast()
4173 __ Cbnz(temp, type_check_slow_path->GetEntryLabel()); in VisitCheckCast()
4187 __ B(type_check_slow_path->GetEntryLabel()); in VisitCheckCast()
4210 __ Cbz(WRegisterFrom(maybe_temp2_loc), type_check_slow_path->GetEntryLabel()); in VisitCheckCast()
4232 __ B(ne, type_check_slow_path->GetEntryLabel()); in VisitCheckCast()
[all …]
Dcode_generator_x86_64.cc6788 SlowPathCode* type_check_slow_path = in VisitCheckCast() local
6791 codegen_->AddSlowPath(type_check_slow_path); in VisitCheckCast()
6818 __ j(kNotEqual, type_check_slow_path->GetEntryLabel()); in VisitCheckCast()
6844 __ j(kZero, type_check_slow_path->GetEntryLabel()); in VisitCheckCast()
6885 __ jmp(type_check_slow_path->GetEntryLabel()); in VisitCheckCast()
6920 __ j(kZero, type_check_slow_path->GetEntryLabel()); in VisitCheckCast()
6922 __ j(kNotEqual, type_check_slow_path->GetEntryLabel()); in VisitCheckCast()
6936 __ jmp(type_check_slow_path->GetEntryLabel()); in VisitCheckCast()
6965 __ j(kNegative, type_check_slow_path->GetEntryLabel()); in VisitCheckCast()
6987 __ j(kNotEqual, type_check_slow_path->GetEntryLabel()); in VisitCheckCast()
[all …]
Dcode_generator_x86.cc7483 SlowPathCode* type_check_slow_path = in VisitCheckCast() local
7486 codegen_->AddSlowPath(type_check_slow_path); in VisitCheckCast()
7513 __ j(kNotEqual, type_check_slow_path->GetEntryLabel()); in VisitCheckCast()
7539 __ j(kZero, type_check_slow_path->GetEntryLabel()); in VisitCheckCast()
7583 __ jmp(type_check_slow_path->GetEntryLabel()); in VisitCheckCast()
7615 __ j(kZero, type_check_slow_path->GetEntryLabel()); in VisitCheckCast()
7618 __ j(kNotEqual, type_check_slow_path->GetEntryLabel()); in VisitCheckCast()
7631 __ jmp(type_check_slow_path->GetEntryLabel()); in VisitCheckCast()
7659 __ j(kNegative, type_check_slow_path->GetEntryLabel()); in VisitCheckCast()
7681 __ j(kNotEqual, type_check_slow_path->GetEntryLabel()); in VisitCheckCast()
[all …]
Dcode_generator_arm_vixl.cc8083 SlowPathCodeARMVIXL* type_check_slow_path = in VisitCheckCast() local
8086 codegen_->AddSlowPath(type_check_slow_path); in VisitCheckCast()
8109 __ B(ne, type_check_slow_path->GetEntryLabel()); in VisitCheckCast()
8135 __ CompareAndBranchIfZero(temp, type_check_slow_path->GetEntryLabel()); in VisitCheckCast()
8167 __ CompareAndBranchIfZero(temp, type_check_slow_path->GetEntryLabel()); in VisitCheckCast()
8194 __ CompareAndBranchIfZero(temp, type_check_slow_path->GetEntryLabel()); in VisitCheckCast()
8199 __ CompareAndBranchIfNonZero(temp, type_check_slow_path->GetEntryLabel()); in VisitCheckCast()
8213 __ B(type_check_slow_path->GetEntryLabel()); in VisitCheckCast()
8240 type_check_slow_path->GetEntryLabel()); in VisitCheckCast()
8262 __ B(ne, type_check_slow_path->GetEntryLabel()); in VisitCheckCast()
[all …]