Home
last modified time | relevance | path

Searched refs:branch_type (Results 1 – 9 of 9) sorted by relevance

/external/vixl/src/aarch64/
Dinstructions-aarch64.h489 static int GetImmBranchRangeBitwidth(ImmBranchType branch_type);
492 static int ImmBranchRangeBitwidth(ImmBranchType branch_type)) { in ImmBranchRangeBitwidth() argument
493 return GetImmBranchRangeBitwidth(branch_type); in ImmBranchRangeBitwidth()
496 static int32_t GetImmBranchForwardRange(ImmBranchType branch_type);
499 static int32_t ImmBranchForwardRange(ImmBranchType branch_type)) {
500 return GetImmBranchForwardRange(branch_type);
503 static bool IsValidImmPCOffset(ImmBranchType branch_type, int64_t offset);
Dinstructions-aarch64.cc872 int Instruction::GetImmBranchRangeBitwidth(ImmBranchType branch_type) { in GetImmBranchRangeBitwidth() argument
873 switch (branch_type) { in GetImmBranchRangeBitwidth()
889 int32_t Instruction::GetImmBranchForwardRange(ImmBranchType branch_type) { in GetImmBranchForwardRange() argument
890 int32_t encoded_max = 1 << (GetImmBranchRangeBitwidth(branch_type) - 1); in GetImmBranchForwardRange()
895 bool Instruction::IsValidImmPCOffset(ImmBranchType branch_type, in IsValidImmPCOffset() argument
897 return IsIntN(GetImmBranchRangeBitwidth(branch_type), offset); in IsValidImmPCOffset()
Dmacro-assembler-aarch64.h199 BranchInfo(ptrdiff_t offset, Label* label, ImmBranchType branch_type) in BranchInfo() argument
200 : pc_offset_(offset), label_(label), branch_type_(branch_type) { in BranchInfo()
256 ImmBranchType branch_type);
403 static int BranchIndexFromType(ImmBranchType branch_type) { in BranchIndexFromType() argument
404 switch (branch_type) { in BranchIndexFromType()
417 bool IsValidBranchType(ImmBranchType branch_type) { in IsValidBranchType() argument
418 return (branch_type != UnknownBranchType) && in IsValidBranchType()
419 (branch_type != UncondBranchType); in IsValidBranchType()
6739 bool LabelIsOutOfRange(Label* label, ImmBranchType branch_type) { in LabelIsOutOfRange() argument
6740 return !Instruction::IsValidImmPCOffset(branch_type, in LabelIsOutOfRange()
Dmacro-assembler-aarch64.cc206 ImmBranchType branch_type) { in RegisterUnresolvedBranch() argument
208 BranchInfo branch_info = BranchInfo(branch_pos, label, branch_type); in RegisterUnresolvedBranch()
/external/mesa3d/src/compiler/spirv/
Dvtn_cfg.c676 block->branch_type = vtn_handle_branch(b, cf_parent, branch_block); in vtn_process_block()
678 if (block->branch_type == vtn_branch_type_none) in vtn_process_block()
686 block->branch_type = vtn_branch_type_return; in vtn_process_block()
691 block->branch_type = vtn_branch_type_discard; in vtn_process_block()
696 block->branch_type = vtn_branch_type_terminate; in vtn_process_block()
713 block->branch_type = vtn_handle_branch(b, cf_parent, then_block); in vtn_process_block()
715 if (block->branch_type == vtn_branch_type_none) in vtn_process_block()
929 vtn_emit_branch(struct vtn_builder *b, enum vtn_branch_type branch_type, in vtn_emit_branch() argument
932 switch (branch_type) { in vtn_emit_branch()
1073 if (block->branch_type != vtn_branch_type_none) { in vtn_emit_cf_list_structured()
[all …]
Dvtn_private.h229 enum vtn_branch_type branch_type; member
/external/llvm-project/lldb/source/Plugins/Instruction/ARM64/
DEmulateInstructionARM64.cpp486 BranchTo(bits(N) target, BranchType branch_type) in BranchTo()
487 Hint_Branch(branch_type); in BranchTo()
1056 if branch_type == BranchType_CALL then X[30] = PC[] + 4; in EmulateB()
1057 BranchTo(PC[] + offset, branch_type); in EmulateB()
1070 BranchType branch_type = Bit32(opcode, 31) ? BranchType_CALL : BranchType_JMP; in EmulateB() local
1074 switch (branch_type) { in EmulateB()
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/ir/
Dtf_ops_a_m.cc789 FunctionType branch_type = branch_func.getType(); in VerifyCaseOrIfOpBranchFunctions() local
791 TypeRangeWithDesc branch_input{branch_type.getInputs(), desc}; in VerifyCaseOrIfOpBranchFunctions()
796 TypeRangeWithDesc branch_result{branch_type.getResults(), desc}; in VerifyCaseOrIfOpBranchFunctions()
800 branch_types.push_back(branch_type); in VerifyCaseOrIfOpBranchFunctions()
811 [i](FunctionType &branch_type) { return branch_type.getInput(i); }); in VerifyCaseOrIfOpBranchFunctions() argument
/external/vixl/test/aarch64/
Dtest-assembler-aarch64.cc2807 TEST(branch_type) { in TEST() argument