HomeSort by relevance Sort by last modified time
    Searched refs:JT (Results 1 - 25 of 27) sorted by null

1 2

  /external/libpcap/
optimize.c 228 if (JT(b)) {
229 find_levels_r(JT(b));
231 level = MAX(JT(b)->level, JF(b)->level) + 1;
281 if (JT(b) == 0)
283 SET_INTERSECT(JT(b)->dom, b->dom, nodewords);
351 if (JT(b) == 0)
353 SET_UNION(JT(b)->closure, b->closure, nodewords);
530 p->out_use |= JT(p)->in_use | JF(p)->in_use;
692 struct block *tmp = JT(b);
694 JT(b) = JF(b)
2127 int jt, jf; local
    [all...]
gencode.h 192 struct slist *jt; /*only for relative jump in block*/ member in struct:stmt
235 int longjt; /* jt branch requires long jump */
329 #define JT(b) ((b)->et.succ)
gencode.c 447 * which of the jt and jf fields has been resolved and which is a pointer
459 next = JT(list);
460 JT(list) = target;
471 * which of jt and jf is the link.
481 p = !((*p)->sense) ? &JT(*p) : &JF(*p);
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430ISelDAGToDAG.cpp 51 int JT;
56 ES(0), JT(-1), Align(0) {
60 return GV != 0 || CP != 0 || ES != 0 || JT != -1;
82 } else if (JT != -1)
83 errs() << " JT" << JT << " Align" << Align << '\n';
160 AM.JT = J->getIndex();
274 else if (AM.JT != -1)
275 Disp = CurDAG->getTargetJumpTable(AM.JT, MVT::i16, 0/*AM.SymbolFlags*/);
  /external/llvm/lib/CodeGen/
ELFCodeEmitter.cpp 63 // the later may reference JT or CP entry address.
168 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
169 if (JT.empty()) return;
181 // For each JT, record its offset from the start of the section
182 for (unsigned i = 0, e = JT.size(); i != e; ++i) {
183 const std::vector<MachineBasicBlock*> &MBBs = JT[i].MBBs;
185 // Record JT 'i' offset in the JT section
198 // Output placeholder for MBB in the JT section
ELFWriter.cpp 222 const MCSectionELF *JT =
224 return getSection(JT->getSectionName(), JT->getType(), JT->getFlags(),
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp     [all...]
  /frameworks/compile/libbcc/lib/CodeGen/
CodeEmitter.cpp 781 const std::vector<llvm::MachineJumpTableEntry> &JT =
783 if (JT.empty())
787 for (int i = 0, e = JT.size(); i != e; i++)
788 NumEntries += JT[i].MBBs.size();
804 const std::vector<llvm::MachineJumpTableEntry> &JT =
806 if (JT.empty() || mpJumpTableBase == 0)
816 for (int i = 0, ie = JT.size(); i != ie; i++) {
817 const std::vector<llvm::MachineBasicBlock*> &MBBs = JT[i].MBBs;
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreAsmPrinter.cpp 212 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
213 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs;
XCoreISelLowering.cpp 337 JumpTableSDNode *JT = cast<JumpTableSDNode>(Table);
338 unsigned JTI = JT->getIndex();
341 SDValue TargetJT = DAG.getTargetJumpTable(JT->getIndex(), MVT::i32);
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp 71 int JT;
77 Segment(), GV(0), CP(0), BlockAddr(0), ES(0), JT(-1), Align(0),
82 return GV != 0 || CP != 0 || ES != 0 || JT != -1 || BlockAddr != 0;
135 dbgs() << " JT" << JT << " Align" << Align << '\n';
249 else if (AM.JT != -1)
250 Disp = CurDAG->getTargetJumpTable(AM.JT, MVT::i32, AM.SymbolFlags);
653 AM.JT = J->getIndex();
684 AM.JT = J->getIndex();
746 if (!AM.ES && AM.JT != -1) return true
    [all...]
  /external/llvm/lib/Target/ARM/
ARMConstantIslandPass.cpp 520 continue; // Ignore other JT branches
    [all...]
ARMBaseInstrInfo.cpp 528 static unsigned getNumJTEntries(const std::vector<MachineJumpTableEntry> &JT,
530 static unsigned getNumJTEntries(const std::vector<MachineJumpTableEntry> &JT,
532 assert(JTI < JT.size());
533 return JT[JTI].MBBs.size();
601 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
602 assert(JTI < JT.size());
603 // Thumb instructions are 2 byte aligned, but JT entries are 4 byte
605 // the JT entries. The size does not include this padding; the
611 unsigned NumEntries = getNumJTEntries(JT, JTI);
    [all...]
ARMAsmPrinter.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.h 466 void visitJumpTable(JumpTable &JT);
467 void visitJumpTableHeader(JumpTable &JT, JumpTableHeader &JTH,
InstrEmitter.cpp 361 } else if (JumpTableSDNode *JT = dyn_cast<JumpTableSDNode>(Op)) {
362 MI->addOperand(MachineOperand::CreateJTI(JT->getIndex(),
363 JT->getTargetFlags()));
    [all...]
SelectionDAGBuilder.cpp     [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelLowering.cpp 767 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
768 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy());
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]
  /external/llvm/lib/Target/MBlaze/
MBlazeISelLowering.cpp 614 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
616 SDValue JTI = DAG.getTargetJumpTable(JT->getIndex(), PtrVT, 0);
    [all...]
  /external/clang/lib/Analysis/
CFG.cpp 557 JumpTarget JT = LI->second;
559 JT.scopePosition);
560 addSuccessor(B, JT.block);
    [all...]
  /external/llvm/lib/Target/Alpha/
AlphaISelLowering.cpp 196 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
197 SDValue JTI = DAG.getTargetJumpTable(JT->getIndex(), PtrVT);
    [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.cpp     [all...]
  /external/llvm/lib/Target/CellSPU/
SPUISelLowering.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp     [all...]

Completed in 151 milliseconds

1 2