Searched refs:always_true_target (Results 1 - 10 of 10) sorted by relevance

/art/compiler/optimizing/
H A Dcode_generator_arm.h194 Label* always_true_target);
H A Dcode_generator_mips64.h197 Label* always_true_target);
H A Dcode_generator_x86.h187 Label* always_true_target);
H A Dcode_generator_x86_64.h188 Label* always_true_target);
H A Dcode_generator_arm64.h167 vixl::Label* always_true_target);
H A Dcode_generator_arm64.cc1740 vixl::Label* always_true_target) {
1747 if (always_true_target != nullptr) {
1748 __ B(always_true_target);
1807 vixl::Label* always_true_target = true_target; local
1810 always_true_target = nullptr;
1816 GenerateTestAndBranch(if_instr, true_target, false_target, always_true_target);
1737 GenerateTestAndBranch(HInstruction* instruction, vixl::Label* true_target, vixl::Label* false_target, vixl::Label* always_true_target) argument
H A Dcode_generator_mips64.cc1953 Label* always_true_target) {
1960 if (always_true_target != nullptr) {
1961 __ B(always_true_target);
2070 Label* always_true_target = true_target; local
2073 always_true_target = nullptr;
2079 GenerateTestAndBranch(if_instr, true_target, false_target, always_true_target);
1950 GenerateTestAndBranch(HInstruction* instruction, Label* true_target, Label* false_target, Label* always_true_target) argument
H A Dcode_generator_arm.cc939 Label* always_true_target) {
945 if (always_true_target != nullptr) {
946 __ b(always_true_target);
1000 Label* always_true_target = true_target; local
1003 always_true_target = nullptr;
1009 GenerateTestAndBranch(if_instr, true_target, false_target, always_true_target);
936 GenerateTestAndBranch(HInstruction* instruction, Label* true_target, Label* false_target, Label* always_true_target) argument
H A Dcode_generator_x86.cc839 Label* always_true_target) {
845 if (always_true_target != nullptr) {
846 __ jmp(always_true_target);
910 Label* always_true_target = true_target; local
913 always_true_target = nullptr;
919 GenerateTestAndBranch(if_instr, true_target, false_target, always_true_target);
836 GenerateTestAndBranch(HInstruction* instruction, Label* true_target, Label* false_target, Label* always_true_target) argument
H A Dcode_generator_x86_64.cc802 Label* always_true_target) {
808 if (always_true_target != nullptr) {
809 __ jmp(always_true_target);
873 Label* always_true_target = true_target; local
876 always_true_target = nullptr;
882 GenerateTestAndBranch(if_instr, true_target, false_target, always_true_target);
799 GenerateTestAndBranch(HInstruction* instruction, Label* true_target, Label* false_target, Label* always_true_target) argument

Completed in 117 milliseconds