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.cc165 LIR* null_check_branch = nullptr; in GenMonitorEnter() local
167 null_check_branch = nullptr; // No null check. in GenMonitorEnter()
171 null_check_branch = OpCmpImmBranch(kCondEq, rs_x0, 0, nullptr); in GenMonitorEnter()
189 if (null_check_branch != nullptr) { in GenMonitorEnter()
190 null_check_branch->target = slow_path_target; in GenMonitorEnter()
218 LIR* null_check_branch = nullptr; in GenMonitorExit() local
220 null_check_branch = nullptr; // No null check. in GenMonitorExit()
224 null_check_branch = OpCmpImmBranch(kCondEq, rs_x0, 0, nullptr); in GenMonitorExit()
252 if (null_check_branch != nullptr) { in GenMonitorExit()
253 null_check_branch->target = slow_path_target; in GenMonitorExit()
/art/compiler/dex/quick/arm/
Dcall_arm.cc154 LIR* null_check_branch = nullptr; in GenMonitorEnter() local
156 null_check_branch = nullptr; // No null check. in GenMonitorEnter()
160 null_check_branch = OpCmpImmBranch(kCondEq, rs_r0, 0, nullptr); in GenMonitorEnter()
179 if (null_check_branch != nullptr) { in GenMonitorEnter()
180 null_check_branch->target = slow_path_target; in GenMonitorEnter()
233 LIR* null_check_branch = nullptr; in GenMonitorExit() local
238 null_check_branch = nullptr; // No null check. in GenMonitorExit()
242 null_check_branch = OpCmpImmBranch(kCondEq, rs_r0, 0, nullptr); in GenMonitorExit()
269 if (null_check_branch != nullptr) { in GenMonitorExit()
270 null_check_branch->target = slow_path_target; in GenMonitorExit()