HomeSort by relevance Sort by last modified time
    Searched refs:isReturn (Results 1 - 25 of 28) 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 205 bool isReturn() const {
337 /// 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/tools/llvm-objdump/
MCFunction.cpp 72 } else if (Ana->isReturn(Inst)) {
132 if (!Ana->isReturn(Inst.Inst) && llvm::next(i) != e)
  /external/llvm/lib/Target/Mips/
MipsDelaySlotFiller.cpp 191 assert((!candidate->isCall() && !candidate->isReturn()) &&
221 unsigned e = MI->isCall() || MI->isReturn() ? MCID.getNumOperands() :
  /external/llvm/lib/Target/X86/
X86VZeroUpper.cpp 223 bool isControlFlow = MI->isCall() || MI->isReturn();
  /external/llvm/lib/CodeGen/
DeadMachineInstructionElim.cpp 107 if (!MBB->empty() && MBB->back().isReturn())
CriticalAntiDepBreaker.cpp 58 bool IsReturnBlock = (BBSize != 0 && BB->back().isReturn());
PostRASchedulerList.cpp 419 if (!BB->empty() && BB->back().isReturn()) {
AggressiveAntiDepBreaker.cpp 151 bool IsReturnBlock = (!BB->empty() && BB->back().isReturn());
    [all...]
LiveVariables.cpp 630 if (!MBB->empty() && MBB->back().isReturn()
PrologEpilogInserter.cpp 696 if (!I->empty() && I->back().isReturn())
ShrinkWrapping.cpp 128 return (MBB && !MBB->empty() && MBB->back().isReturn());
    [all...]
TailDuplication.cpp 573 if (PreRegAlloc && I->isReturn())
    [all...]
RegAllocFast.cpp 788 if (MBB->empty() || !MBB->back().isReturn() || MBB->back().isCall())
    [all...]
  /external/llvm/lib/Target/ARM/
Thumb2ITBlockPass.cpp 202 (!MI->isBranch() && !MI->isReturn()) ; ++MBBI) {
  /external/llvm/lib/Target/MBlaze/
MBlazeDelaySlotFiller.cpp 212 I->isCall() || I->isReturn() || I->isBarrier() ||
  /external/llvm/utils/TableGen/
CodeGenInstruction.h 219 bool isReturn;
InstrInfoEmitter.cpp 299 if (Inst.isReturn) OS << "|(1<<MCID::Return)";
CodeGenInstruction.cpp 294 isReturn = R->getValueAsBit("isReturn");
  /external/llvm/include/llvm/CodeGen/
MachineInstr.h 341 bool isReturn(QueryType Type = AnyInBundle) const {
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCFrameLowering.cpp 67 if (!I->empty() && I->back().isReturn()) {
    [all...]
PPCISelDAGToDAG.cpp 213 if (!BB->empty() && BB->back().isReturn()) {
    [all...]

Completed in 1698 milliseconds

1 2