HomeSort by relevance Sort by last modified time
    Searched full:branch (Results 426 - 450 of 4746) sorted by null

<<11121314151617181920>>

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/bfin/
flow2.s 65 //IF CC JUMP pcrel11m2 ; /* branch if CC=1, branch predicted as not taken (a) */
70 //IF CC JUMP pcrel11m2 (bp) ; /* branch if CC=1, branch predicted as taken (a) */
74 //IF !CC JUMP pcrel11m2 ; /* branch if CC=0, branch predicted as not taken (a) */
78 //IF !CC JUMP pcrel11m2 (bp) ; /* branch if CC=0, branch predicted as taken (a) */
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/m68k-coff/
gas.exp 21 gas_test "p2430.s" "" $stdoptlist "local branch not in text section"
23 gas_test "p2430a.s" "" $stdoptlist "local branch not in text section"
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
micromips@branch-misc-4.d 2 #name: MIPS branch-misc-4
4 #source: branch-misc-4.s
mipsr6@branch-misc-1.d 2 #name: MIPS branch-misc-1
4 #source: branch-misc-1.s
micromips.l 18 .*:2622: Warning: branch bge is always true
19 .*:2625: Warning: branch bgeu is always true
20 .*:2634: Warning: branch bgeu is always true
21 .*:2709: Warning: branch ble is always true
22 .*:2724: Warning: branch bleu is always true
23 .*:2730: Warning: branch bleu is always true
24 .*:2733: Warning: branch bleu is always true
25 .*:2832: Warning: branch bgel is always true
26 .*:2835: Warning: branch bgeul is always true
27 .*:2844: Warning: branch bgeul is always tru
    [all...]
  /toolchain/binutils/binutils-2.25/include/mach-o/
arm.h 30 #define BFD_MACH_O_ARM_RELOC_BR24 5 /* 24bit branch. */
31 #define BFD_MACH_O_THUMB_RELOC_BR22 6 /* 22bit branch. */
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
branch-misc-1.d 1 #name: MIPS branch-misc-1
2 #source: ../../../gas/testsuite/gas/mips/branch-misc-1.s
  /tools/tradefederation/core/src/com/android/tradefed/build/
IBuildInfo.java 58 * the build flavor and branch name. [ie (branch name)-(build flavor)]
87 * Optional method to return the source control branch that the build being tested was
90 * @return the build branch or <code>null</code> if unset/not applicable
95 * Set the build branch
97 * @param branch the branch name
99 public void setBuildBranch(String branch);
  /external/llvm/lib/Target/MSP430/
MSP430InstrInfo.cpp 120 // Remove the branch.
136 default: llvm_unreachable("Invalid branch condition!");
165 // Conditional branch is a special case.
191 // A terminator that isn't a branch can't easily be handled
228 assert(I->getOpcode() == MSP430::JCC && "Invalid conditional branch");
234 // Working from the bottom, handle the first conditional branch.
243 // conditional branches branch to the same destination.
247 // Only handle the case where all conditional branches branch to
271 "MSP430 branch conditions have one component!");
274 // Unconditional branch
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZInstrInfo.h 67 // Classifies a branch.
96 // Information about a branch instruction.
97 struct Branch {
98 // The type of the branch.
104 // CCMASK_<N> is set if the branch should be taken when CC == N.
107 // The target of the branch.
110 Branch(BranchType type, unsigned ccValid, unsigned ccMask,
118 // Relative branch - CRJ etc.
121 // Indirect branch, used for return - CRBReturn etc.
124 // Indirect branch, used for sibcall - CRBCall etc
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/MSP430/
MSP430InstrInfo.cpp 120 // Remove the branch.
137 assert(0 && "Invalid branch condition!");
167 // Conditional branch is a special case.
193 // A terminator that isn't a branch can't easily be handled
230 assert(I->getOpcode() == MSP430::JCC && "Invalid conditional branch");
236 // Working from the bottom, handle the first conditional branch.
245 // conditional branches branch to the same destination.
249 // Only handle the case where all conditional branches branch to
273 "MSP430 branch conditions have one component!");
276 // Unconditional branch
    [all...]
  /art/test/656-loop-deopt/src/
Main.java 44 // contains 'Main' (which makes the only branch using 'a' dead).
50 // We make this branch the only true user of the 'a' phi. All other uses
62 // contains 'Main' (which makes the only branch using 'a' dead).
68 // We make this branch the only true user of the 'o' phi. All other uses
85 // We make this branch the only true user of the 'a' phi. All other uses
  /external/autotest/client/common_lib/
revision_control.py 165 @param remote_branch: Specify the remote branch to clone. None if to
166 clone master branch.
222 Reset repo to the given branch or git sha.
224 @param branch_or_sha: Name of a local or remote branch or git sha.
269 everything so that local repo reflects the upstream branch requested.
271 @param remote_branch: branch to check out.
334 Get the top commit hash of the current local git branch.
336 @return: Top commit hash of local git branch
345 Get the top commit hash of the current remote git branch.
347 @return: Top commit hash of remote git branch
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
UninitializedValues.h 32 struct Branch {
52 SmallVector<Branch, 2> UninitBranches;
59 void addUninitBranch(Branch B) {
73 /// The use is uninitialized whenever a certain branch is taken.
93 typedef SmallVectorImpl<Branch>::const_iterator branch_iterator;
  /external/llvm/lib/Target/XCore/
XCoreInstrInfo.cpp 99 // Branch Analysis
133 /// the correspondent Branch instruction opcode.
145 /// GetCondBranchFromCond - Return the Branch instruction
174 /// 2. If this block ends with only an unconditional branch, it sets TBB to be
176 /// 3. If this block ends with an conditional branch and it falls through to
177 /// an successor block, it sets TBB to be the branch destination block and a
181 /// 4. If this block ends with an conditional branch and an unconditional
215 return true; // Can't handle indirect branch.
217 // Conditional branch
236 // If the block ends with conditional branch followed by unconditional
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
MachineBranchProbabilityInfo.cpp 1 //===- MachineBranchProbabilityInfo.cpp - Machine Branch Probability Info -===//
22 INITIALIZE_PASS_BEGIN(MachineBranchProbabilityInfo, "machine-branch-prob",
23 "Machine Branch Probability Analysis", false, true)
24 INITIALIZE_PASS_END(MachineBranchProbabilityInfo, "machine-branch-prob",
25 "Machine Branch Probability Analysis", false, true)
  /external/swiftshader/third_party/LLVM/lib/Target/XCore/
XCoreInstrInfo.cpp 95 // Branch Analysis
129 /// the correspondent Branch instruction opcode.
141 /// GetCondBranchFromCond - Return the Branch instruction
170 /// 2. If this block ends with only an unconditional branch, it sets TBB to be
172 /// 3. If this block ends with an conditional branch and it falls through to
173 /// an successor block, it sets TBB to be the branch destination block and a
177 /// 4. If this block ends with an conditional branch and an unconditional
216 return true; // Can't handle indirect branch.
218 // Conditional branch
238 // If the block ends with conditional branch followed by unconditional
    [all...]
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-m68hc11/
relax-group.s 45 ;; Next branch is always relative. It must be adjusted while
84 ;;; Relax group for brset (with backward branch)
95 ;;; Relax group for brset (with forward branch)
106 ;;; Relax group for brclr (with backward branch)
117 ;;; Relax group for brclr (with forward branch)
  /toolchain/binutils/binutils-2.25/cpu/
lm32.cpu 133 (df f-branch "branch offset field" (PCREL-ADDR) 15 16 INT
152 (dnop branch "branch offset" () h-iaddr f-branch)
321 (dni b "branch" ()
328 (dni bi "branch immediate" ()
335 (dni be "branch equal" ()
336 "be $r0,$r1,$branch"
337 (+ OP_BE r0 r1 branch)
    [all...]
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsNaClELFStreamer.cpp 15 // emitted in the same bundle. It aligns call + branch delay to the bundle end,
47 // with branch delays and aligned to the bundle end.
53 // JALR is an indirect branch if the link register is $0.
83 // indirect branch.
103 // Sandbox indirect branch or return instruction by inserting mask operation
143 report_fatal_error("Dangerous instruction in branch delay slot!");
161 report_fatal_error("Dangerous instruction in branch delay slot!");
168 // Sandbox calls by aligning call and branch delay to the bundle end.
173 report_fatal_error("Dangerous instruction in branch delay slot!");
186 // Finish the sandboxing sequence by emitting branch delay
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ViaParser.java 98 if (name.equals(Via.BRANCH)) {
101 throw new ParseException("null branch Id", lexer.getPtr());
232 * via[] = { "Via: SIP/2.0/UDP 135.180.130.133;branch=-12345\n", "Via:
233 * SIP/2.0/UDP 166.34.120.100;branch=0000045d-00000001"+ ",SIP/2.0/UDP
237 * branch=C1C3344E2710000000E299E568E7potato10potato0potato0\n", "Via:
239 * branch=C1C3344E2710000000E299E568E7potato10potato0potato0\n", "Via:
244 * "Via: SIP/2.0/UDP ss2.wcom.com:5060;branch=721e418c4.1"+ ", SIP/2.0/UDP
245 * ss1.wcom.com:5060;branch=2d4790.1"+ " , SIP/2.0/UDP here.com:5060( Hello
247 * ss1.wcom.com:5060;branch=2d4790.1\n", "Via: SIP/2.0/UDP
248 * first.example.com:4000;ttl=16"+ ";maddr=224.2.0.1 ;branch=a7c6a8dlze.
    [all...]
  /external/valgrind/cachegrind/
cg_branchpred.c 3 /*--- Branch predictor simulation cg_branchpred.c ---*/
32 /* This file contains the actual branch predictor simulator and its
37 - a branch target address predictor for indirect branches
62 conditional branch) at instr_addr. Once that's done, update the
68 counters. Given the address of the branch instruction, the array
69 index to use is computed both from the low order bits of the branch
72 makes the predictor able to correlate this branch's behaviour with
135 /* A very simple indirect branch predictor. Use the branch's address
137 branch (or whatever aliased with it) and use that as th
    [all...]
  /art/compiler/utils/mips/
assembler_mips.h 80 uint32_t prev_branch_id_plus_one_; // To get distance from preceding branch, if any.
206 for (auto& branch : branches_) {
207 CHECK(branch.IsResolved());
300 // to the following R2 and R6 branch/jump instructions with imm16, imm21, addr26
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
Via.java 63 /** The branch parameter is included by every forking proxy.
65 public static final String BRANCH = ParameterNames.BRANCH;
507 * Gets the branch paramater of the ViaHeader. Returns null if branch
510 * @return the string branch value of ViaHeader
513 return getParameter(ParameterNames.BRANCH);
517 * Sets the branch parameter of the ViaHeader to the newly supplied
518 * branch value.
520 * @param branch - the new string branch parmameter of the ViaHeader
    [all...]
  /external/v8/src/compiler/
common-operator-reducer.cc 77 // Swap IfTrue/IfFalse on {branch} if {cond} is a BooleanNot and use the input
78 // to BooleanNot as new condition for {branch}. Note we assume that {cond} was
98 // Update the condition of {branch}. No need to mark the uses for revisit,
99 // since we tell the graph reducer that the {branch} was changed and the
102 // Negate the hint for {branch}.
104 node, common()->Branch(NegateBranchHint(BranchHintOf(node->op()))));
169 // c) and the {IfTrue} and {IfFalse} nodes point to the same {Branch}.
182 Node* const branch = if_true->InputAt(0); local
183 DCHECK_EQ(IrOpcode::kBranch, branch->opcode());
184 DCHECK(branch->OwnedBy(if_true, if_false))
239 Node* const branch = if_true->InputAt(0); local
    [all...]

Completed in 848 milliseconds

<<11121314151617181920>>