Searched refs:branch_type (Results 1 - 10 of 10) sorted by relevance
/third_party/mesa3d/src/compiler/spirv/ |
H A D | vtn_cfg.c | 724 block->branch_type = vtn_handle_branch(b, cf_parent, branch_block); in vtn_process_block() 726 if (block->branch_type == vtn_branch_type_none) in vtn_process_block() 734 block->branch_type = vtn_branch_type_return; in vtn_process_block() 738 block->branch_type = vtn_branch_type_discard; in vtn_process_block() 742 block->branch_type = vtn_branch_type_terminate_invocation; in vtn_process_block() 746 block->branch_type = vtn_branch_type_ignore_intersection; in vtn_process_block() 750 block->branch_type = vtn_branch_type_terminate_ray; in vtn_process_block() 977 vtn_emit_branch(struct vtn_builder *b, enum vtn_branch_type branch_type, in vtn_emit_branch() argument 980 switch (branch_type) { in vtn_emit_branch() 1122 if (block->branch_type ! in vtn_emit_cf_list_structured() [all...] |
H A D | vtn_private.h | 239 enum vtn_branch_type branch_type; member
|
/third_party/node/deps/v8/src/codegen/arm64/ |
H A D | instructions-arm64.h | 311 static int ImmBranchRangeBitwidth(ImmBranchType branch_type) { in ImmBranchRangeBitwidth() argument 312 switch (branch_type) { in ImmBranchRangeBitwidth() 327 static int32_t ImmBranchRange(ImmBranchType branch_type) { in ImmBranchRange() argument 328 return (1 << (ImmBranchRangeBitwidth(branch_type) + kInstrSizeLog2)) / 2 - in ImmBranchRange() 419 static bool IsValidImmPCOffset(ImmBranchType branch_type, ptrdiff_t offset);
|
H A D | instructions-arm64.cc | 213 bool Instruction::IsValidImmPCOffset(ImmBranchType branch_type, in IsValidImmPCOffset() argument 216 return is_intn(offset / kInstrSize, ImmBranchRangeBitwidth(branch_type)); in IsValidImmPCOffset()
|
H A D | macro-assembler-arm64.h | 1510 ImmBranchType branch_type);
|
/third_party/vixl/src/aarch64/ |
H A D | instructions-aarch64.h | 578 static int GetImmBranchRangeBitwidth(ImmBranchType branch_type); 581 static int ImmBranchRangeBitwidth(ImmBranchType branch_type)) { 582 return GetImmBranchRangeBitwidth(branch_type); 585 static int32_t GetImmBranchForwardRange(ImmBranchType branch_type); 588 static int32_t ImmBranchForwardRange(ImmBranchType branch_type)) { 589 return GetImmBranchForwardRange(branch_type); 592 static bool IsValidImmPCOffset(ImmBranchType branch_type, int64_t offset);
|
H A D | instructions-aarch64.cc | 870 int Instruction::GetImmBranchRangeBitwidth(ImmBranchType branch_type) { in GetImmBranchRangeBitwidth() argument 871 switch (branch_type) { in GetImmBranchRangeBitwidth() 887 int32_t Instruction::GetImmBranchForwardRange(ImmBranchType branch_type) { in GetImmBranchForwardRange() argument 888 int32_t encoded_max = 1 << (GetImmBranchRangeBitwidth(branch_type) - 1); in GetImmBranchForwardRange() 893 bool Instruction::IsValidImmPCOffset(ImmBranchType branch_type, in IsValidImmPCOffset() argument 895 return IsIntN(GetImmBranchRangeBitwidth(branch_type), offset); in IsValidImmPCOffset()
|
H A D | macro-assembler-aarch64.h | 217 BranchInfo(ptrdiff_t offset, Label* label, ImmBranchType branch_type) in BranchInfo() argument 218 : pc_offset_(offset), label_(label), branch_type_(branch_type) { in BranchInfo() 274 ImmBranchType branch_type); 436 static int BranchIndexFromType(ImmBranchType branch_type) { in BranchIndexFromType() argument 437 switch (branch_type) { in BranchIndexFromType() 450 bool IsValidBranchType(ImmBranchType branch_type) { in IsValidBranchType() argument 451 return (branch_type != UnknownBranchType) && in IsValidBranchType() 452 (branch_type != UncondBranchType); in IsValidBranchType() 8313 bool LabelIsOutOfRange(Label* label, ImmBranchType branch_type) { in LabelIsOutOfRange() argument 8314 return !Instruction::IsValidImmPCOffset(branch_type, in LabelIsOutOfRange() [all...] |
H A D | macro-assembler-aarch64.cc | 232 ImmBranchType branch_type) { in RegisterUnresolvedBranch() 234 BranchInfo branch_info = BranchInfo(branch_pos, label, branch_type); in RegisterUnresolvedBranch() 230 RegisterUnresolvedBranch(ptrdiff_t branch_pos, Label* label, ImmBranchType branch_type) RegisterUnresolvedBranch() argument
|
/third_party/vixl/test/aarch64/ |
H A D | test-assembler-aarch64.cc | 2835 TEST(branch_type) {
|
Completed in 44 milliseconds