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

<<31323334353637383940>>

  /dalvik/dexgen/src/com/android/dexgen/dex/code/
OutputFinisher.java 251 * Reverses a branch which is buried a given number of instructions
253 * indicated instruction really is a reversible branch.
255 * @param which how many instructions back to find the branch;
258 * @param newTarget {@code non-null;} the new target for the reversed branch
332 * constant pool index, or branch target size issues</li>
526 * <p>This method ignores issues of branch target size, since
652 * the branch target size requirement of each branch instruction
655 * case of a conditional branch that doesn't fit, the sense of the
656 * test is reversed in order to branch around a {@code goto
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
OutputFinisher.java 278 * Reverses a branch which is buried a given number of instructions
280 * indicated instruction really is a reversible branch.
282 * @param which how many instructions back to find the branch;
286 * reversed branch
385 * constant pool index, or branch target size issues</li>
606 * <p>This method ignores issues of branch target size, since
749 * the branch target size requirement of each branch instruction
752 * case of a conditional branch that doesn't fit, the sense of the
753 * test is reversed in order to branch around a {@code goto
    [all...]
  /external/kernel-headers/original/uapi/linux/
perf_event.h 150 * the kernel uses the event's priv level. Branch and event priv levels do
151 * not have to match. Branch priv level is checked for permissions.
153 * The branch types can be combined, however BRANCH_ANY covers all types
161 PERF_SAMPLE_BRANCH_ANY_SHIFT = 3, /* any branch types */
162 PERF_SAMPLE_BRANCH_ANY_CALL_SHIFT = 4, /* any call branch */
163 PERF_SAMPLE_BRANCH_ANY_RETURN_SHIFT = 5, /* any return branch */
958 * single taken branch record layout:
960 * from: source instruction (may not always be a branch insn)
961 * to: branch target
962 * mispred: branch target was mispredicte
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/SystemZ/
SystemZInstrInfo.cpp 209 // Conditional branch is a special case.
234 // A terminator that isn't a branch can't easily be handled
268 return true; // Can't handle indirect branch.
270 // Working from the bottom, handle the first conditional branch.
279 // conditional branches branch to the same destination.
283 // Only handle the case where all conditional branches branch to
310 // Remove the branch.
327 "SystemZ branch conditions have one component!");
330 // Unconditional branch?
331 assert(!FBB && "Unconditional branch with multiple successors!")
    [all...]
  /external/v8/src/ppc/
constants-ppc.h 107 BCX = 16 << 26, // Branch Conditional
109 BX = 18 << 26, // Branch
155 BCLRX = 16 << 1, // Branch Conditional Link Register
166 BCCTRX = 528 << 1 // Branch Conditional to Count Register
388 DCBNZF = 0 << 21, // Decrement CTR; branch if CTR != 0 and condition false
389 DCBEZF = 2 << 21, // Decrement CTR; branch if CTR == 0 and condition false
390 BF = 4 << 21, // Branch if condition false
391 DCBNZT = 8 << 21, // Decrement CTR; branch if CTR != 0 and condition true
392 DCBEZT = 10 << 21, // Decrement CTR; branch if CTR == 0 and condition true
393 BT = 12 << 21, // Branch if condition tru
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
tc-frv.c 57 VLIW_BRANCH_TYPE, /* A Branch. */
60 VLIW_BRANCH_HAS_NOPS /* A Branch that requires NOPS. */
565 1) A VLIW insn that contains both a branch and the branch destination.
567 branch. The first consists of two nops. The second consists of
570 2) A single instruction VLIW insn which is the destination of a branch
572 insn containing two nops before the branch.
575 branch that is in the next VLIW insn. This requires the insertion of
576 a VLIW insn containing a single nop before the branch.
578 4) A single instruction VLIW insn which contains branch destination (x)
    [all...]
  /external/llvm/lib/CodeGen/
MachineVerifier.cpp 664 report("MBB exits via unconditional branch but doesn't have "
667 report("MBB exits via unconditional branch but the CFG "
671 report("MBB exits via unconditional branch but doesn't contain "
674 report("MBB exits via unconditional branch but doesn't end with a "
677 report("MBB exits via unconditional branch but the branch isn't a "
687 // A conditional branch with only one successor is weird, but allowed.
689 report("MBB exits via conditional branch/fall-through but only has "
692 report("MBB exits via conditional branch/fall-through but the CFG "
695 report("MBB exits via conditional branch/fall-through but doesn't have
    [all...]
BranchFolding.h 1 //===-- BranchFolding.h - Fold machine code branch instructions -*- C++ -*-===//
109 /// \brief This class keeps track of branch frequencies of newly created
  /external/llvm/include/llvm/ADT/
IntervalMap.h 190 // Both leaf and branch nodes store vectors of pairs.
205 // 4 4 24 0 Branch<4> (32-bit pointers)
206 // 8 4 16 0 Leaf<4,4>, Branch<4>
207 // 8 8 12 0 Leaf<4,8>, Branch<8>
451 // Determine the branching factor for branch nodes.
456 /// Allocator - The recycling allocator used for both branch and leaf nodes.
479 // A NodeRef doesn't know whether it references a leaf node or a branch node.
514 /// subtree - Access the i'th subtree reference in a branch node.
515 /// This depends on branch nodes storing the NodeRef array as their first
682 // A branch node stores references to 1--N subtrees all of the same height
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
IntervalMap.h 169 // Both leaf and branch nodes store vectors of pairs.
184 // 4 4 24 0 Branch<4> (32-bit pointers)
185 // 8 4 16 0 Leaf<4,4>, Branch<4>
186 // 8 8 12 0 Leaf<4,8>, Branch<8>
430 // Determine the branching factor for branch nodes.
435 /// Allocator - The recycling allocator used for both branch and leaf nodes.
458 // A NodeRef doesn't know whether it references a leaf node or a branch node.
493 /// subtree - Access the i'th subtree reference in a branch node.
494 /// This depends on branch nodes storing the NodeRef array as their first
661 // A branch node stores references to 1--N subtrees all of the same height
    [all...]
  /art/compiler/optimizing/
graph_checker_test.cc 111 // Test case with an invalid graph containing a non-branch last
124 // branch instruction).
  /build/kati/testcase/
parse_benchcmp.go 86 fmt.Fprintln(os.Stderr, "current branch is master.")
87 fmt.Fprintln(os.Stderr, "run in branch to compare with master.")
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/packed_switch/
Test_packed_switch.java 102 * @title branch target shall be inside the method
110 * @title branch target shall not be "inside" instruction
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/sparse_switch/
Test_sparse_switch.java 103 * @title branch target shall be inside the method
111 * @title branch target shall not be "inside" instruction
  /docs/source.android.com/src/compatibility/cts/
downloads.jd 130 'android-cts-4.4_r4' branch in the open source tree.</p>
148 Jelly Bean-MR2. Source code for Android 4.3 is found in the 'android-4.3_r2.2-cts' branch in the open source tree.</p>
161 branch in the open source tree.</p>
177 Android 4.0.3 is found in the 'android-4.0.3_r1' branch in the open source tree.</p>
184 Gingerbread. Source code for Android 2.3 is found in the 'gingerbread' branch in
192 FroYo. Source code for Android 2.2 is found in the 'froyo' branch in the
199 Eclair. Source code for Android 2.1 is found in the 'eclair' branch in the
208 in the 'donut' branch in the open source tree.</p>
  /docs/source.android.com/src/devices/tech/test_infra/tradefed/fundamentals/
machine_setup.jd 28 the branch <code>tradefed</code> to actually pull down the Trade Federation source. The actual
33 <p>Trade Federation is set up in a lightweight "unbundled" branch that uses slightly different build
  /external/autotest/site_utils/
automated_deploy_unittest.py 43 # Test whether rebase to prod-next branch when the hash is not given.
57 run_cmd.return_value = 'Fail to push prod branch'
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 415 // The branch node builder does not generate autotransitions.
428 ExplodedNode *generateNode(ProgramStateRef State, bool branch,
431 const CFGBlock *getTargetBlock(bool branch) const {
432 return branch ? DstT : DstF;
435 void markInfeasible(bool branch) {
436 if (branch)
442 bool isFeasible(bool branch) {
443 return branch ? !InFeasibleTrue : !InFeasibleFalse;
  /external/clang/test/SemaCXX/
warn-infinite-recursion.cpp 120 // This branch gets removed during <0, 0> instantiation in so CFG for this
121 // function goes straight to the else branch.
  /external/curl/docs/
RELEASE-PROCEDURE 11 - make sure all relevant changes are committed on the master branch
40 - make sure all relevant changes are committed and pushed on the master branch
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_rss/
feedManipulation.xml 47 branch="${branch}"
  /external/elfutils/tests/
run-get-files.sh 50 file[2] = "/home/geoffk/objs/laurel-000912-branch/lib/gcc-lib/powerpc-unknown-linux-gnu/2.96-laurel-000912/include/stddef.h"
51 file[3] = "/home/geoffk/objs/laurel-000912-branch/lib/gcc-lib/powerpc-unknown-linux-gnu/2.96-laurel-000912/include/stdarg.h"
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
LineImpl.java 25 /** Max branch counter value for which singletons are created */
100 /** branch counter */
  /external/llvm/include/llvm/CodeGen/
MachineBranchProbabilityInfo.h 1 //=- MachineBranchProbabilityInfo.h - Branch Probability Analysis -*- C++ -*-=//
10 // This pass is used to evaluate branch probabilties on machine basic blocks.
  /external/llvm/include/llvm/Support/
BlockFrequency.h 38 /// \brief Multiplies with a branch probability. The computation will never
43 /// \brief Divide by a non-zero branch probability using saturating

Completed in 918 milliseconds

<<31323334353637383940>>