/dalvik/vm/compiler/codegen/arm/ |
GlobalOptimizations.cpp | 23 * branch itself. 33 /* Branch to the next instruction */ 41 * Is the branch target the next instruction? 49 * Found real useful stuff between the branch and the target. 51 * method-based JIT the branch might be the last real
|
/dalvik/vm/mterp/armv5te/ |
bincmp.S | 1 %verify "branch taken" 2 %verify "branch not taken" 4 * Generic two-operand compare-and-branch operation. Provide a "revcmp" 16 FETCH_S(r1, 1) @ r1<- branch offset, in code units 18 mov${revcmp} r1, #2 @ r1<- BYTE branch dist for not-taken
|
zcmp.S | 1 %verify "branch taken" 2 %verify "branch not taken" 4 * Generic one-operand compare-and-branch operation. Provide a "revcmp" 13 FETCH_S(r1, 1) @ r1<- branch offset, in code units 15 mov${revcmp} r1, #2 @ r1<- inst branch dist for not-taken
|
OP_GOTO.S | 4 * Unconditional branch, 8-bit offset. 6 * The branch distance is a signed code-unit offset, which we need to 14 @ If backwards branch refresh rIBASE
|
OP_GOTO_16.S | 4 * Unconditional branch, 16-bit offset. 6 * The branch distance is a signed code-unit offset, which we need to
|
OP_GOTO_32.S | 4 * Unconditional branch, 32-bit offset. 6 * The branch distance is a signed code-unit offset, which we need to 9 * Unlike most opcodes, this one is allowed to branch to itself, so 10 * our "backward branch" test must be "<=0" instead of "<0". Because
|
/dalvik/vm/mterp/armv6t2/ |
bincmp.S | 1 %verify "branch taken" 2 %verify "branch not taken" 4 * Generic two-operand compare-and-branch operation. Provide a "revcmp" 15 FETCH_S(r1, 1) @ r1<- branch offset, in code units 17 mov${revcmp} r1, #2 @ r1<- BYTE branch dist for not-taken
|
/dalvik/vm/mterp/mips/ |
OP_GOTO.S | 4 * Unconditional branch, 8-bit offset. 6 * The branch distance is a signed code-unit offset, which we need to 13 /* If backwards branch refresh rBASE */
|
OP_GOTO_16.S | 4 * Unconditional branch, 16-bit offset. 6 * The branch distance is a signed code-unit offset, which we need to
|
OP_GOTO_32.S | 4 * Unconditional branch, 32-bit offset. 6 * The branch distance is a signed code-unit offset, which we need to 9 * Unlike most opcodes, this one is allowed to branch to itself, so 10 * our "backward branch" test must be "<=0" instead of "<0".
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
branch_utility.py | 15 one of 'stable', 'beta', 'dev', or 'trunk'. |branch| and |version| correspond 17 |branch| and |version| can occasionally be the same for separate channels 22 def __init__(self, channel, branch, version): 24 assert isinstance(branch, basestring), branch 29 self.branch = branch 46 '''Provides methods for working with Chrome channel, branch, and version 54 self._branch_object_store = create_object_store('branch') 79 representing the next most recent Chrome version/branch combination [all...] |
/dalvik/vm/mterp/x86/ |
OP_GOTO.S | 4 * Unconditional branch, 8-bit offset. 6 * The branch distance is a signed code-unit offset, which we need to
|
bincmp.S | 1 %verify "branch taken" 2 %verify "branch not taken" 4 * Generic two-operand compare-and-branch operation. Provide a "revcmp" 19 movswl 2(rPC),%eax # Get signed branch offset
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/isismtt/ |
ISISMTTObjectIdentifiers.java | 10 static final ASN1ObjectIdentifier id_isismtt_cp = id_isismtt.branch("1"); 19 static final ASN1ObjectIdentifier id_isismtt_cp_accredited = id_isismtt_cp.branch("1"); 21 static final ASN1ObjectIdentifier id_isismtt_at = id_isismtt.branch("3"); 30 static final ASN1ObjectIdentifier id_isismtt_at_dateOfCertGen = id_isismtt_at.branch("1"); 36 static final ASN1ObjectIdentifier id_isismtt_at_procuration = id_isismtt_at.branch("2"); 42 static final ASN1ObjectIdentifier id_isismtt_at_admission = id_isismtt_at.branch("3"); 51 static final ASN1ObjectIdentifier id_isismtt_at_monetaryLimit = id_isismtt_at.branch("4"); 57 static final ASN1ObjectIdentifier id_isismtt_at_declarationOfMajority = id_isismtt_at.branch("5"); 67 static final ASN1ObjectIdentifier id_isismtt_at_iCCSN = id_isismtt_at.branch("6"); 78 static final ASN1ObjectIdentifier id_isismtt_at_PKReference = id_isismtt_at.branch("7") [all...] |
/external/clang/test/Analysis/ |
complex.c | 7 // This branch should be infeasible 12 // If p != 0 then this branch is feasible; otherwise it is not.
|
/external/chromium_org/tools/ |
sync-webkit-git.py | 37 """Returns the user-configured override branch name, if any.""" 38 override_config_name = 'chromium.sync-branch' 43 """Returns the name of the magic branch that lets us know that DEPS is 45 # Is there an override branch specified? 48 return 'refs/heads/gclient' # No override, so return the default branch. 50 # Verify that the branch from config exists. 57 print ("The specified override branch ('%s') doesn't appear to exist." % 128 branch = GetOverrideShortBranchName() 129 if not branch: 130 branch = 'gclient [all...] |
/external/proguard/src/proguard/classfile/instruction/ |
BranchInstruction.java | 82 // Do we need an ordinary branch or a wide branch? 85 // Can we replace the wide branch by an ordinary branch? 97 // Should we replace the ordinary branch by a wide branch? 108 throw new IllegalArgumentException("Branch instruction can't be widened ("+this.toString()+")"); 125 throw new IllegalArgumentException("Instruction has invalid branch offset size ("+this.toString(offset)+")"); 161 * Returns the branch offset size for this instruction. 172 * Computes the required branch offset size for this instruction's branc [all...] |
/cts/tools/dasm/src/dasm/ |
DasmCatchBuilder.java | 59 * @param branch 63 String branch) { 66 add(exception, branch); 70 * Adds new exception type and branch label to current "from-to" block 79 * @param branch 82 void add(String exception, String branch) { 90 if (s != null && s.compareToIgnoreCase(branch) != 0) 93 + ") but different branch addresses (" + s 94 + " and " + branch + ")"); 95 type_branch.put(type, branch); 196 String branch = uc.type_branch.get(type); local [all...] |
/external/llvm/lib/Target/PowerPC/ |
PPCBranchSelector.cpp | 13 // positions pass, and a branch pseudo op to machine branch opcode pass. This 18 #define DEBUG_TYPE "ppc-branch-select" 48 return "PowerPC Branch Selector"; 54 INITIALIZE_PASS(PPCBSel, "ppc-branch-select", "PowerPC Branch Selector", 57 /// createPPCBranchSelectionPass - returns an instance of the Branch Selection 86 // If the entire function is smaller than the displacement of a branch field, 94 // For each conditional branch, if the offset to its destination is larger 95 // than the offset field allows, transform it into a long branch sequenc [all...] |
/external/chromium_org/third_party/skia/src/core/ |
SkRTree.h | 98 * A branch of the tree, this may contain a pointer to another interior node, or a data value 100 struct Branch { 117 Branch* child(size_t index) { 118 return reinterpret_cast<Branch*>(this + 1) + index; 127 bool operator()(const SkRTree::Branch lhs, const SkRTree::Branch rhs) const { 135 bool operator()(const SkRTree::Branch lhs, const SkRTree::Branch rhs) { 142 bool operator()(const SkRTree::Branch lhs, const SkRTree::Branch rhs) [all...] |
/external/skia/src/core/ |
SkRTree.h | 98 * A branch of the tree, this may contain a pointer to another interior node, or a data value 100 struct Branch { 117 Branch* child(size_t index) { 118 return reinterpret_cast<Branch*>(this + 1) + index; 127 bool operator()(const SkRTree::Branch lhs, const SkRTree::Branch rhs) const { 135 bool operator()(const SkRTree::Branch lhs, const SkRTree::Branch rhs) { 142 bool operator()(const SkRTree::Branch lhs, const SkRTree::Branch rhs) [all...] |
/dalvik/dx/tests/032-bb-live-code/ |
info.txt | 5 branch are checked for liveness as well.
|
/dalvik/dx/tests/109-int-branch/ |
info.txt | 1 This tests that an int branch with valid arguments is properly translated.
|
/dalvik/vm/mterp/c/ |
OP_GOTO.cpp | 7 ILOGV("> branch taken");
|
OP_GOTO_16.cpp | 9 ILOGV("> branch taken");
|