HomeSort by relevance Sort by last modified time
    Searched defs:Branch (Results 1 - 19 of 19) sorted by null

  /external/clang/include/clang/Analysis/Analyses/
UninitializedValues.h 32 struct Branch {
46 SmallVector<Branch, 2> UninitBranches;
52 void addUninitBranch(Branch B) {
63 /// The use is uninitialized whenever a certain branch is taken.
75 typedef SmallVectorImpl<Branch>::const_iterator branch_iterator;
  /external/chromium_org/third_party/skia/src/core/
SkRTree.h 97 * A branch of the tree, this may contain a pointer to another interior node, or a data value
99 struct Branch {
116 Branch* child(size_t index) {
117 return reinterpret_cast<Branch*>(this + 1) + index;
126 bool operator()(const SkRTree::Branch lhs, const SkRTree::Branch rhs) const {
134 bool operator()(const SkRTree::Branch lhs, const SkRTree::Branch rhs) {
141 bool operator()(const SkRTree::Branch lhs, const SkRTree::Branch rhs)
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZInstrInfo.h 64 // Classifies a branch.
85 // Information about a branch instruction.
86 struct Branch {
87 // The type of the branch.
93 // CCMASK_<N> is set if the branch should be taken when CC == N.
96 // The target of the branch.
99 Branch(BranchType type, unsigned ccValid, unsigned ccMask,
189 // Return true if MI is a conditional or unconditional branch.
191 // values on which the instruction will branch, and set Target
192 // to the operand that contains the branch target. This targe
    [all...]
SystemZLongBranch.cpp 1 //===-- SystemZLongBranch.cpp - Branch lengthening for SystemZ ------------===//
13 // to be in range with a longer form (branch relaxation). A simple
17 // quadratic in the number of blocks; relaxing branch N can make branch N-1
18 // go out of range, which in turn can make branch N-2 go out of range,
24 // in range (branch shortening). This too can be implemented as a function
27 // shortening is also quadratic in the worst case; shortening branch N
28 // can bring branch N-1 in range of the short form, which in turn can do
29 // the same for branch N-2, and so on. The main advantage of shortening
36 // which are relatively rare to begin with, and the long branch sequence
    [all...]
  /external/skia/src/core/
SkRTree.h 97 * A branch of the tree, this may contain a pointer to another interior node, or a data value
99 struct Branch {
116 Branch* child(size_t index) {
117 return reinterpret_cast<Branch*>(this + 1) + index;
126 bool operator()(const SkRTree::Branch lhs, const SkRTree::Branch rhs) const {
134 bool operator()(const SkRTree::Branch lhs, const SkRTree::Branch rhs) {
141 bool operator()(const SkRTree::Branch lhs, const SkRTree::Branch rhs)
    [all...]
  /external/llvm/lib/Target/R600/
SILowerControlFlow.cpp 37 /// // branch if all the bits of
39 /// %VGPR0 = V_ADD_F32 %VGPR0, %VGPR0 // Do the IF block of the branch
44 /// S_BRANCH_EXECZ label1 // Use our branch optimization
86 void Branch(MachineInstr &MI);
285 void SILowerControlFlowPass::Branch(MachineInstr &MI) {
472 Branch(MI);
  /external/llvm/include/llvm/MC/
MCInstrDesc.h 107 Branch,
225 /// a basic block. Typically this is things like return and branch
235 /// indirect branch. Predicates below can be used to discriminate between
239 return Flags & (1 << MCID::Branch);
242 /// \brief Return true if this is an indirect branch, such as a
243 /// branch through a register.
248 /// \brief Return true if this is a branch which may fall
251 /// information about this branch.
256 /// \brief Return true if this is a branch which always
259 /// about this branch
    [all...]
  /external/clang/lib/Analysis/
UninitializedValues.cpp 582 UninitUse::Branch Branch;
583 Branch.Terminator = Label;
584 Branch.Output = 0; // Ignored.
585 Use.addUninitBranch(Branch);
587 UninitUse::Branch Branch;
588 Branch.Terminator = Term;
589 Branch.Output = I - Block->succ_begin();
590 Use.addUninitBranch(Branch);
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkScript2.h 187 struct Branch {
188 Branch() {
191 Branch(Op op, int depth, unsigned offset) : fOffset(offset), fOpStackDepth(depth), fOperator(op),
205 unsigned fOffset : 16; // offset in generated stream where branch needs to go
207 Op fOperator : 6; // operand which generated branch
208 mutable Primed fPrimed : 1; // mark when next instruction generates branch
209 Done fDone : 1; // mark when branch is complete
249 void resolveBranch(Branch& );
254 SkTDStack<Branch> fBranchStack; // logical operators, slot to store forward branch
    [all...]
  /external/emma/core/java12/com/vladium/emma/instr/
InstrVisitor.java 737 boolean branch = false;
755 if (branch)
757 // previous instruction was a branch: this one is a leader
759 branch = false;
    [all...]
  /external/javassist/src/main/javassist/bytecode/
CodeIterator.java 303 * Branch offsets and the exception table are also updated.
325 * Branch offsets and the exception table are also updated.
350 * Branch offsets and the exception table are also updated.
376 * Branch offsets and the exception table are also updated.
398 * Branch offsets and the exception table are also updated.
423 * Branch offsets and the exception table are also updated.
470 * Branch offsets and the exception table are also updated.
487 * Branch offsets and the exception table are also updated.
509 * Branch offsets and the exception table are also updated.
526 * Branch offsets and the exception table are also updated
    [all...]
  /external/skia/src/animator/
SkScript2.h 187 struct Branch {
188 Branch() {
191 Branch(Op op, int depth, unsigned offset) : fOffset(offset), fOpStackDepth(depth), fOperator(op),
205 unsigned fOffset : 16; // offset in generated stream where branch needs to go
207 Op fOperator : 6; // operand which generated branch
208 mutable Primed fPrimed : 1; // mark when next instruction generates branch
209 Done fDone : 1; // mark when branch is complete
249 void resolveBranch(Branch& );
254 SkTDStack<Branch> fBranchStack; // logical operators, slot to store forward branch
    [all...]
  /external/llvm/lib/CodeGen/
MachineScheduler.cpp 906 // For now, assume targets can only fuse with the branch.
907 MachineInstr *Branch = DAG->ExitSU.getInstr();
908 if (!Branch)
913 if (!TII->shouldScheduleAdjacent(SU->getInstr(), Branch)
    [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp     [all...]
  /prebuilts/tools/common/m2/internal/dom4j/dom4j/1.6.1/
dom4j-1.6.1.jar 
  /external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
FlexAntTasks.jar 
  /external/emma/lib/
emma.jar 
  /external/robolectric/lib/main/
javassist-3.14.0-GA.jar 
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
compiler.jar 

Completed in 3680 milliseconds