Lines Matching defs:label
287 void TurboAssembler::B(Label* label) {
289 b(label);
293 void TurboAssembler::B(Condition cond, Label* label) {
295 B(label, cond);
312 void TurboAssembler::Bind(Label* label, BranchTargetIdentifier id) {
315 bind(label);
320 bind(label);
333 void TurboAssembler::BindExceptionHandler(Label* label) {
334 BindJumpTarget(label);
343 void TurboAssembler::BindJumpTarget(Label* label) {
345 Bind(label, BranchTargetIdentifier::kBtiJump);
347 Bind(label);
363 void TurboAssembler::BindJumpOrCallTarget(Label* label) {
365 Bind(label, BranchTargetIdentifier::kBtiJumpCall);
367 Bind(label);
371 void TurboAssembler::Bl(Label* label) {
373 bl(label);
1359 Condition cond, Label* label) {
1363 Cbz(lhs, label);
1365 Cbnz(lhs, label);
1369 B(cond, label);
1375 Label* label) {
1377 CompareAndBranch(lhs.W(), rhs.ToW(), cond, label);
1379 CompareAndBranch(lhs, rhs, cond, label);
1385 Label* label) {
1389 Tbnz(reg, MaskToBit(bit_pattern), label);
1392 B(ne, label);
1398 Label* label) {
1402 Tbz(reg, MaskToBit(bit_pattern), label);
1405 B(eq, label);