Home
last modified time | relevance | path

Searched refs:tlabel (Results 1 – 12 of 12) sorted by relevance

/external/mesa3d/src/intel/tools/
Di965_asm.c132 struct target_label *tlabel; in i965_postprocess_labels() local
137 LIST_FOR_EACH_ENTRY(tlabel, &target_labels, link) { in i965_postprocess_labels()
139 if (!strcmp(tlabel->name, ilabel->name)) { in i965_postprocess_labels()
142 int relative_offset = (tlabel->offset - ilabel->offset) / sizeof(brw_inst); in i965_postprocess_labels()
/external/v8/src/compiler/backend/arm64/
Dcode-generator-arm64.cc2708 Label* tlabel = branch->true_label; in AssembleArchBranch() local
2717 __ Cbz(i.InputRegister32(0), tlabel); in AssembleArchBranch()
2720 __ Cbnz(i.InputRegister32(0), tlabel); in AssembleArchBranch()
2729 __ Cbz(i.InputRegister64(0), tlabel); in AssembleArchBranch()
2732 __ Cbnz(i.InputRegister64(0), tlabel); in AssembleArchBranch()
2741 __ Tbz(i.InputRegister32(0), i.InputInt5(1), tlabel); in AssembleArchBranch()
2744 __ Tbnz(i.InputRegister32(0), i.InputInt5(1), tlabel); in AssembleArchBranch()
2753 __ Tbz(i.InputRegister64(0), i.InputInt6(1), tlabel); in AssembleArchBranch()
2756 __ Tbnz(i.InputRegister64(0), i.InputInt6(1), tlabel); in AssembleArchBranch()
2763 __ B(cc, tlabel); in AssembleArchBranch()
[all …]
/external/v8/src/compiler/backend/mips64/
Dcode-generator-mips64.cc3742 Label* tlabel, Label* flabel, bool fallthru) { in AssembleBranchToLabels() argument
3757 __ Branch(tlabel, cc, kScratchReg, Operand(zero_reg)); in AssembleBranchToLabels()
3763 __ Branch(tlabel, cc, kScratchReg2, Operand(kScratchReg)); in AssembleBranchToLabels()
3769 __ Branch(tlabel, lt, kScratchReg, Operand(zero_reg)); in AssembleBranchToLabels()
3772 __ Branch(tlabel, ge, kScratchReg, Operand(zero_reg)); in AssembleBranchToLabels()
3782 __ Branch(tlabel, ne, kScratchReg, Operand(zero_reg)); in AssembleBranchToLabels()
3785 __ Branch(tlabel, eq, kScratchReg, Operand(zero_reg)); in AssembleBranchToLabels()
3793 __ Branch(tlabel, cc, i.InputRegister(0), i.InputOperand(1)); in AssembleBranchToLabels()
3802 __ Branch(tlabel, cc, lhs_register, Operand(i.InputRegister(0))); in AssembleBranchToLabels()
3808 __ BranchTrueF(tlabel); in AssembleBranchToLabels()
[all …]
/external/v8/src/compiler/backend/mips/
Dcode-generator-mips.cc3500 Label* tlabel, Label* flabel, bool fallthru) { in AssembleBranchToLabels() argument
3515 __ Branch(tlabel, cc, kScratchReg, Operand(zero_reg)); in AssembleBranchToLabels()
3521 __ Branch(tlabel, lt, kScratchReg, Operand(zero_reg)); in AssembleBranchToLabels()
3524 __ Branch(tlabel, ge, kScratchReg, Operand(zero_reg)); in AssembleBranchToLabels()
3534 __ Branch(tlabel, ne, kScratchReg, Operand(zero_reg)); in AssembleBranchToLabels()
3537 __ Branch(tlabel, eq, kScratchReg, Operand(zero_reg)); in AssembleBranchToLabels()
3545 __ Branch(tlabel, cc, i.InputRegister(0), i.InputOperand(1)); in AssembleBranchToLabels()
3554 __ Branch(tlabel, cc, lhs_register, Operand(i.InputRegister(0))); in AssembleBranchToLabels()
3560 __ BranchTrueF(tlabel); in AssembleBranchToLabels()
3562 __ BranchFalseF(tlabel); in AssembleBranchToLabels()
[all …]
/external/deqp-deps/SPIRV-Tools/source/val/
Dvalidate_cfg.cpp1068 uint32_t tlabel = inst->GetOperandAs<uint32_t>(1); in CfgPass() local
1070 CFG_ASSERT(FirstBlockAssert, tlabel); in CfgPass()
1073 _.current_function().RegisterBlockEnd({tlabel, flabel}, opcode); in CfgPass()
/external/swiftshader/third_party/SPIRV-Tools/source/val/
Dvalidate_cfg.cpp1059 uint32_t tlabel = inst->GetOperandAs<uint32_t>(1); in CfgPass() local
1061 CFG_ASSERT(FirstBlockAssert, tlabel); in CfgPass()
1064 _.current_function().RegisterBlockEnd({tlabel, flabel}, opcode); in CfgPass()
/external/angle/third_party/spirv-tools/src/source/val/
Dvalidate_cfg.cpp1068 uint32_t tlabel = inst->GetOperandAs<uint32_t>(1); in CfgPass() local
1070 CFG_ASSERT(FirstBlockAssert, tlabel); in CfgPass()
1073 _.current_function().RegisterBlockEnd({tlabel, flabel}, opcode); in CfgPass()
/external/v8/src/compiler/backend/x64/
Dcode-generator-x64.cc4177 Label* tlabel = branch->true_label; in AssembleArchBranch() local
4182 __ j(parity_even, tlabel); in AssembleArchBranch()
4184 __ j(FlagsConditionToCondition(branch->condition), tlabel); in AssembleArchBranch()
4206 Label* tlabel = branch->true_label; in AssembleArchDeoptBranch() local
4212 __ j(parity_even, tlabel); in AssembleArchDeoptBranch()
4214 __ j(FlagsConditionToCondition(branch->condition), tlabel); in AssembleArchDeoptBranch()
4230 __ jmp(tlabel); in AssembleArchDeoptBranch()
4250 Label* tlabel = ool->entry(); in AssembleArchTrap() local
4255 __ j(parity_even, tlabel); in AssembleArchTrap()
4257 __ j(FlagsConditionToCondition(condition), tlabel); in AssembleArchTrap()
/external/v8/src/compiler/backend/ppc/
Dcode-generator-ppc.cc3450 Label* tlabel = branch->true_label; in AssembleArchBranch() local
3463 __ bunordered(tlabel, cr); in AssembleArchBranch()
3467 __ b(cond, tlabel, cr); in AssembleArchBranch()
3544 Label* tlabel = ool->entry(); in AssembleArchTrap() local
3556 __ bunordered(tlabel, cr); in AssembleArchTrap()
3560 __ b(cond, tlabel, cr); in AssembleArchTrap()
/external/v8/src/compiler/backend/s390/
Dcode-generator-s390.cc4385 Label* tlabel = branch->true_label; in AssembleArchBranch() local
4397 __ bunordered(tlabel); in AssembleArchBranch()
4400 __ b(cond, tlabel); in AssembleArchBranch()
4476 Label* tlabel = ool->entry(); in AssembleArchTrap() local
4486 __ bunordered(tlabel); in AssembleArchTrap()
4489 __ b(cond, tlabel); in AssembleArchTrap()
/external/v8/src/compiler/backend/ia32/
Dcode-generator-ia32.cc4375 Label* tlabel = branch->true_label; in AssembleArchBranch() local
4380 __ j(parity_even, tlabel); in AssembleArchBranch()
4382 __ j(FlagsConditionToCondition(branch->condition), tlabel); in AssembleArchBranch()
4448 Label* tlabel = ool->entry(); in AssembleArchTrap() local
4453 __ j(parity_even, tlabel); in AssembleArchTrap()
4455 __ j(FlagsConditionToCondition(condition), tlabel); in AssembleArchTrap()
/external/v8/src/compiler/backend/arm/
Dcode-generator-arm.cc3497 Label* tlabel = branch->true_label; in AssembleArchBranch() local
3500 __ b(cc, tlabel); in AssembleArchBranch()
3576 Label* tlabel = ool->entry(); in AssembleArchTrap() local
3578 __ b(cc, tlabel); in AssembleArchTrap()