Home
last modified time | relevance | path

Searched refs:null_check_branch (Results 1 – 2 of 2) sorted by relevance

/art/compiler/dex/quick/arm64/
Dcall_arm64.cc198 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/
Dcall_arm.cc186 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()