Searched defs:null_check_branch (Results 1 - 2 of 2) sorted by relevance

/art/compiler/dex/quick/arm/
H A Dcall_arm.cc154 LIR* null_check_branch = nullptr; local
156 null_check_branch = nullptr; // No null check.
160 null_check_branch = OpCmpImmBranch(kCondEq, rs_r0, 0, nullptr);
179 if (null_check_branch != nullptr) {
180 null_check_branch->target = slow_path_target;
233 LIR* null_check_branch = nullptr; local
238 null_check_branch = nullptr; // No null check.
242 null_check_branch = OpCmpImmBranch(kCondEq, rs_r0, 0, nullptr);
269 if (null_check_branch != nullptr) {
270 null_check_branch
[all...]
/art/compiler/dex/quick/arm64/
H A Dcall_arm64.cc165 LIR* null_check_branch = nullptr; local
167 null_check_branch = nullptr; // No null check.
171 null_check_branch = OpCmpImmBranch(kCondEq, rs_x0, 0, nullptr);
189 if (null_check_branch != nullptr) {
190 null_check_branch->target = slow_path_target;
218 LIR* null_check_branch = nullptr; local
220 null_check_branch = nullptr; // No null check.
224 null_check_branch = OpCmpImmBranch(kCondEq, rs_x0, 0, nullptr);
252 if (null_check_branch != nullptr) {
253 null_check_branch
[all...]

Completed in 100 milliseconds