Searched refs:null_check_branch (Results 1 – 2 of 2) sorted by relevance
/art/compiler/dex/quick/arm64/ |
D | call_arm64.cc | 198 LIR* null_check_branch = nullptr; in GenMonitorEnter() local 200 null_check_branch = nullptr; // No null check. in GenMonitorEnter() 204 null_check_branch = OpCmpImmBranch(kCondEq, rs_x0, 0, NULL); in GenMonitorEnter() 217 if (null_check_branch != nullptr) { in GenMonitorEnter() 218 null_check_branch->target = slow_path_target; in GenMonitorEnter() 246 LIR* null_check_branch = nullptr; in GenMonitorExit() local 248 null_check_branch = nullptr; // No null check. in GenMonitorExit() 252 null_check_branch = OpCmpImmBranch(kCondEq, rs_x0, 0, NULL); in GenMonitorExit() 265 if (null_check_branch != nullptr) { in GenMonitorExit() 266 null_check_branch->target = slow_path_target; in GenMonitorExit()
|
/art/compiler/dex/quick/arm/ |
D | call_arm.cc | 186 LIR* null_check_branch = nullptr; in GenMonitorEnter() local 188 null_check_branch = nullptr; // No null check. in GenMonitorEnter() 192 null_check_branch = OpCmpImmBranch(kCondEq, rs_r0, 0, NULL); in GenMonitorEnter() 207 if (null_check_branch != nullptr) { in GenMonitorEnter() 208 null_check_branch->target = slow_path_target; in GenMonitorEnter() 254 LIR* null_check_branch = nullptr; in GenMonitorExit() local 259 null_check_branch = nullptr; // No null check. in GenMonitorExit() 263 null_check_branch = OpCmpImmBranch(kCondEq, rs_r0, 0, NULL); in GenMonitorExit() 276 if (null_check_branch != nullptr) { in GenMonitorExit() 277 null_check_branch->target = slow_path_target; in GenMonitorExit()
|