HomeSort by relevance Sort by last modified time
    Searched refs:branch_type (Results 1 - 15 of 15) sorted by null

  /external/v8/src/arm64/
instructions-arm64.h 291 static int ImmBranchRangeBitwidth(ImmBranchType branch_type) {
292 switch (branch_type) {
308 static int32_t ImmBranchRange(ImmBranchType branch_type) {
310 (1 << (ImmBranchRangeBitwidth(branch_type) + kInstructionSizeLog2)) / 2 -
372 static bool IsValidImmPCOffset(ImmBranchType branch_type, ptrdiff_t offset);
instructions-arm64.cc 211 bool Instruction::IsValidImmPCOffset(ImmBranchType branch_type,
213 return is_intn(offset, ImmBranchRangeBitwidth(branch_type));
macro-assembler-arm64.h     [all...]
  /external/vixl/src/aarch64/
instructions-aarch64.cc 260 int Instruction::GetImmBranchRangeBitwidth(ImmBranchType branch_type) {
261 switch (branch_type) {
277 int32_t Instruction::GetImmBranchForwardRange(ImmBranchType branch_type) {
278 int32_t encoded_max = 1 << (GetImmBranchRangeBitwidth(branch_type) - 1);
283 bool Instruction::IsValidImmPCOffset(ImmBranchType branch_type,
285 return IsIntN(GetImmBranchRangeBitwidth(branch_type), offset);
instructions-aarch64.h 314 static int GetImmBranchRangeBitwidth(ImmBranchType branch_type);
317 static int ImmBranchRangeBitwidth(ImmBranchType branch_type)) {
318 return GetImmBranchRangeBitwidth(branch_type);
321 static int32_t GetImmBranchForwardRange(ImmBranchType branch_type);
324 static int32_t ImmBranchForwardRange(ImmBranchType branch_type)) {
325 return GetImmBranchForwardRange(branch_type);
328 static bool IsValidImmPCOffset(ImmBranchType branch_type, int64_t offset);
macro-assembler-aarch64.h 194 BranchInfo(ptrdiff_t offset, Label* label, ImmBranchType branch_type)
195 : pc_offset_(offset), label_(label), branch_type_(branch_type) {
250 ImmBranchType branch_type);
396 static int BranchIndexFromType(ImmBranchType branch_type) {
397 switch (branch_type) {
410 bool IsValidBranchType(ImmBranchType branch_type) {
411 return (branch_type != UnknownBranchType) &&
412 (branch_type != UncondBranchType);
    [all...]
macro-assembler-aarch64.cc 201 ImmBranchType branch_type) {
203 BranchInfo branch_info = BranchInfo(branch_pos, label, branch_type);
    [all...]
  /external/mesa3d/src/compiler/spirv/
vtn_cfg.c 310 block->branch_type = vtn_get_branch_type(branch_block,
314 if (block->branch_type != vtn_branch_type_none)
323 block->branch_type = vtn_branch_type_return;
327 block->branch_type = vtn_branch_type_discard;
446 enum vtn_branch_type branch_type = local
450 if (branch_type != vtn_branch_type_none) {
455 assert(branch_type == vtn_branch_type_loop_continue);
544 vtn_emit_branch(struct vtn_builder *b, enum vtn_branch_type branch_type,
547 switch (branch_type) {
603 if (block->branch_type != vtn_branch_type_none)
    [all...]
vtn_private.h 144 enum vtn_branch_type branch_type; member in struct:vtn_block
  /external/autotest/site_utils/suite_scheduler/
manifest_versions.py 180 @return {(branch_type, milestone): [manifests, oldest, to, newest]}
196 @return {(branch_type, milestone): [manifests, oldest, to, newest]}
250 @return {(branch_type, milestone): [manifests, oldest, to, newest]}
  /toolchain/binutils/binutils-2.25/bfd/
elf32-arm.c 2628 enum arm_st_branch_type branch_type; member in struct:elf32_arm_stub_hash_entry
2749 enum arm_st_branch_type branch_type; member in struct:a8_erratum_fix
2762 enum arm_st_branch_type branch_type; member in struct:a8_erratum_reloc
3648 enum arm_st_branch_type branch_type = *actual_branch_type; local
4292 enum arm_st_branch_type branch_type local
4319 branch_type, (struct elf_link_hash_entry *) stub_entry->h, local
5116 enum arm_st_branch_type branch_type; local
    [all...]
  /external/v8/src/crankshaft/arm64/
lithium-codegen-arm64.h 201 BranchType branch_type, Register reg = NoReg,
lithium-codegen-arm64.cc 855 LInstruction* instr, DeoptimizeReason deopt_reason, BranchType branch_type,
900 __ B(&dont_trap, InvertBranchType(branch_type), reg, bit);
909 if (branch_type == always &&
924 __ B(&jump_table_.last()->label, branch_type, reg, bit);
    [all...]
  /external/valgrind/VEX/priv/
guest_arm64_toIR.c 6770 UInt branch_type = INSN(22,21); local
    [all...]
  /external/vixl/test/aarch64/
test-assembler-aarch64.cc     [all...]

Completed in 229 milliseconds