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

1 2

  /external/llvm/include/llvm/MC/
MCInstrAnalysis.h 51 virtual bool isReturn(const MCInst &Inst) const {
52 return Info->get(Inst.getOpcode()).isReturn();
MCInstrDesc.h 208 bool isReturn() const {
268 if (isBranch() || isCall() || isReturn() || isIndirectBranch())
368 /// 3. Calling, branching, returning: use isCall/isReturn/isBranch.
  /external/javassist/src/main/javassist/bytecode/analysis/
Util.java 44 public static boolean isReturn(int opcode) {
SubroutineScanner.java 99 if (Util.isReturn(opcode) || opcode == RET || opcode == ATHROW)
Analyzer.java 201 } else if (opcode != ATHROW && ! Util.isReturn(opcode)) {
  /external/llvm/lib/Target/X86/
X86PadShortFunction.cpp 130 assert(ReturnLoc->isReturn() && !ReturnLoc->isCall() &&
187 if (MI->isReturn() && !MI->isCall()) {
X86VZeroUpper.cpp 236 bool isControlFlow = MI->isCall() || MI->isReturn();
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_debug.cpp 411 if (TID.isReturn()) {
  /external/llvm/lib/Target/ARM/
Thumb2ITBlockPass.cpp 198 (!MI->isBranch() && !MI->isReturn()) ; ++MBBI) {
  /external/llvm/lib/Target/NVPTX/
NVPTXPrologEpilogPass.cpp 72 if (!I->empty() && I->back().isReturn())
  /external/llvm/utils/TableGen/
CodeGenInstruction.h 218 bool isReturn;
CodeGenInstruction.cpp 296 isReturn = R->getValueAsBit("isReturn");
InstrInfoEmitter.cpp 454 if (Inst.isReturn) OS << "|(1<<MCID::Return)";
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_debug.cpp 411 if (TID.isReturn()) {
  /external/llvm/include/llvm/CodeGen/
MachineInstr.h 345 bool isReturn(QueryType Type = AnyInBundle) const {
    [all...]
  /external/llvm/lib/CodeGen/
CriticalAntiDepBreaker.cpp 58 bool IsReturnBlock = (BBSize != 0 && BB->back().isReturn());
AggressiveAntiDepBreaker.cpp 150 bool IsReturnBlock = (!BB->empty() && BB->back().isReturn());
    [all...]
PrologEpilogInserter.cpp 705 if (!I->empty() && I->back().isReturn())
    [all...]
ShrinkWrapping.cpp 127 return (MBB && !MBB->empty() && MBB->back().isReturn());
    [all...]
TailDuplication.cpp 582 if (PreRegAlloc && I->isReturn())
    [all...]
  /external/llvm/lib/Target/Mips/
MipsDelaySlotFiller.cpp 543 assert((!I->isCall() && !I->isReturn() && !I->isBranch()) &&
  /external/llvm/lib/Target/PowerPC/
PPCFrameLowering.cpp 62 if (!I->empty() && I->back().isReturn()) {
117 if (MBB.empty() || !MBB.back().isReturn())
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDILCFGStructurizer.cpp     [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonVLIWPacketizer.cpp     [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILCFGStructurizer.cpp     [all...]

Completed in 3080 milliseconds

1 2