Home
last modified time | relevance | path

Searched refs:isBranch (Results 1 – 25 of 320) sorted by relevance

12345678910>>...13

/external/llvm/include/llvm/MC/
DMCInstrAnalysis.h34 virtual bool isBranch(const MCInst &Inst) const { in isBranch() function
35 return Info->get(Inst.getOpcode()).isBranch(); in isBranch()
DMCInstrDesc.h233 bool isBranch() const { return Flags & (1 << MCID::Branch); } in isBranch() function
244 return isBranch() & !isBarrier() & !isIndirectBranch(); in isConditionalBranch()
252 return isBranch() & isBarrier() & !isIndirectBranch(); in isUnconditionalBranch()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonBranchRelaxation.cpp118 if (MI.isBranch() && HII->isExtendable(MI)) in computeOffset()
181 (SecondTerm->isBranch() || SecondTerm->isCall()) && in isJumpOutOfRange()
199 if (!MI.isBranch() || !isJumpOutOfRange(MI, BlockToInstOffset)) in reGenerateBranch()
/external/llvm-project/llvm/lib/Target/Hexagon/
DHexagonBranchRelaxation.cpp118 if (MI.isBranch() && HII->isExtendable(MI)) in computeOffset()
181 (SecondTerm->isBranch() || SecondTerm->isCall()) && in isJumpOutOfRange()
199 if (!MI.isBranch() || !isJumpOutOfRange(MI, BlockToInstOffset)) in reGenerateBranch()
/external/llvm-project/llvm/include/llvm/MC/
DMCInstrAnalysis.h37 virtual bool isBranch(const MCInst &Inst) const { in isBranch() function
38 return Info->get(Inst.getOpcode()).isBranch(); in isBranch()
DMCInstrDesc.h290 bool isBranch() const { return Flags & (1ULL << MCID::Branch); } in isBranch() function
301 return isBranch() && !isBarrier() && !isIndirectBranch(); in isConditionalBranch()
309 return isBranch() && isBarrier() && !isIndirectBranch(); in isUnconditionalBranch()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
DMCInstrAnalysis.h37 virtual bool isBranch(const MCInst &Inst) const { in isBranch() function
38 return Info->get(Inst.getOpcode()).isBranch(); in isBranch()
DMCInstrDesc.h305 bool isBranch() const { return Flags & (1ULL << MCID::Branch); } in isBranch() function
316 return isBranch() && !isBarrier() && !isIndirectBranch(); in isConditionalBranch()
324 return isBranch() && isBarrier() && !isIndirectBranch(); in isUnconditionalBranch()
/external/llvm/lib/Target/Hexagon/
DHexagonIsetDx.td32 … [P0, R31], isCodeGenOnly = 1, isPredicated = 1, isPredicatedFalse = 1, isBranch = 1, isIndirectBr…
53 …= 1, isPredicatedFalse = 1, mayLoad = 1, accessSize = DoubleWordAccess, isBranch = 1, isIndirectBr…
122 … = [P0, R31], isCodeGenOnly = 1, isPredicated = 1, isPredicatedNew = 1, isBranch = 1, isIndirectBr…
211 …Only = 1, isPredicated = 1, mayLoad = 1, accessSize = DoubleWordAccess, isBranch = 1, isIndirectBr…
277 let Defs = [PC], Uses = [R31], isCodeGenOnly = 1, isBranch = 1, isIndirectBranch = 1, hasSideEffect…
536 …Only = 1, isPredicated = 1, isPredicatedFalse = 1, isPredicatedNew = 1, isBranch = 1, isIndirectBr…
560 …= [R30], isCodeGenOnly = 1, mayLoad = 1, accessSize = DoubleWordAccess, isBranch = 1, isIndirectBr…
599 let Defs = [PC], Uses = [P0, R31], isCodeGenOnly = 1, isPredicated = 1, isBranch = 1, isIndirectBra…
696 …d = 1, isPredicatedNew = 1, mayLoad = 1, accessSize = DoubleWordAccess, isBranch = 1, isIndirectBr…
706 …e = 1, isPredicatedNew = 1, mayLoad = 1, accessSize = DoubleWordAccess, isBranch = 1, isIndirectBr…
DHexagonBranchRelaxation.cpp167 (SecondTerm->isBranch() || SecondTerm->isCall()) && in isJumpOutOfRange()
186 if (!MI.isBranch() || !isJumpOutOfRange(MI, BlockToInstOffset)) in reGenerateBranch()
/external/llvm/lib/Target/X86/Disassembler/
DX86Disassembler.cpp279 static bool tryAddingSymbolicOperand(int64_t Value, bool isBranch, in tryAddingSymbolicOperand() argument
283 return Dis->tryAddingSymbolicOperand(MI, Value, Address, isBranch, in tryAddingSymbolicOperand()
369 bool isBranch = false; in translateImmediate() local
372 isBranch = true; in translateImmediate()
627 isBranch = true; in translateImmediate()
633 isBranch = true; in translateImmediate()
640 isBranch = true; in translateImmediate()
650 if(!tryAddingSymbolicOperand(immediate + pcrel, isBranch, insn.startLocation, in translateImmediate()
/external/llvm/lib/Target/SystemZ/Disassembler/
DSystemZDisassembler.cpp68 static bool tryAddingSymbolicOperand(int64_t Value, bool isBranch, in tryAddingSymbolicOperand() argument
73 return Dis->tryAddingSymbolicOperand(MI, Value, Address, isBranch, in tryAddingSymbolicOperand()
238 bool isBranch, in decodePCDBLOperand() argument
243 if (!tryAddingSymbolicOperand(Value, isBranch, Address, 2, N / 8, in decodePCDBLOperand()
/external/llvm-project/llvm/lib/Target/PowerPC/
DPPCHazardRecognizers.cpp59 if (!MCID->isBranch()) in isBCTRAfterSet()
177 if (CurSlots == 5 || (MCID->isBranch() && CurBranches == 1)) { in EmitInstruction()
197 if (MCID->isBranch()) in EmitInstruction()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCHazardRecognizers.cpp59 if (!MCID->isBranch()) in isBCTRAfterSet()
177 if (CurSlots == 5 || (MCID->isBranch() && CurBranches == 1)) { in EmitInstruction()
197 if (MCID->isBranch()) in EmitInstruction()
/external/llvm/lib/Target/PowerPC/
DPPCHazardRecognizers.cpp61 if (!MCID->isBranch()) in isBCTRAfterSet()
179 if (CurSlots == 5 || (MCID->isBranch() && CurBranches == 1)) { in EmitInstruction()
200 if (MCID->isBranch()) in EmitInstruction()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DIfConversion.cpp326 if (I.isBranch() && TBBInfo.IsBrAnalyzable && !Forked) { in MeetIfcvtSizeLimit()
335 if (I.isBranch() && FBBInfo.IsBrAnalyzable && !Forked) { in MeetIfcvtSizeLimit()
344 if (I.isBranch()) { in MeetIfcvtSizeLimit()
762 if (!TIB->isBranch()) in CountDuplicatedInstructions()
801 if (!RTIE->isBranch()) in CountDuplicatedInstructions()
852 assert(!E2->isBranch() && "Branch mis-match, one block is empty."); in verifySameBranchInstructions()
856 assert(!E1->isBranch() && "Branch mis-match, one block is empty."); in verifySameBranchInstructions()
860 if (E1->isBranch() || E2->isBranch()) in verifySameBranchInstructions()
1113 if (BranchUnpredicable && MI.isBranch()) { in ScanInstructions()
1890 if (!Prev->isBranch() && !Prev->isDebugInstr()) in IfConvertDiamondCommon()
[all …]
/external/llvm-project/llvm/lib/CodeGen/
DIfConversion.cpp327 if (I.isBranch() && TBBInfo.IsBrAnalyzable && !Forked) { in MeetIfcvtSizeLimit()
336 if (I.isBranch() && FBBInfo.IsBrAnalyzable && !Forked) { in MeetIfcvtSizeLimit()
345 if (I.isBranch()) { in MeetIfcvtSizeLimit()
757 if (!TIB->isBranch()) in CountDuplicatedInstructions()
796 if (!RTIE->isBranch()) in CountDuplicatedInstructions()
847 assert(!E2->isBranch() && "Branch mis-match, one block is empty."); in verifySameBranchInstructions()
851 assert(!E1->isBranch() && "Branch mis-match, one block is empty."); in verifySameBranchInstructions()
855 if (E1->isBranch() || E2->isBranch()) in verifySameBranchInstructions()
1113 if (BranchUnpredicable && MI.isBranch()) { in ScanInstructions()
1890 if (!Prev->isBranch() && !Prev->isDebugInstr()) in IfConvertDiamondCommon()
[all …]
/external/llvm-project/llvm/lib/Target/SystemZ/Disassembler/
DSystemZDisassembler.cpp73 static bool tryAddingSymbolicOperand(int64_t Value, bool isBranch, in tryAddingSymbolicOperand() argument
78 return Dis->tryAddingSymbolicOperand(MI, Value, Address, isBranch, in tryAddingSymbolicOperand()
249 bool isBranch, in decodePCDBLOperand() argument
254 if (!tryAddingSymbolicOperand(Value, isBranch, Address, 2, N / 8, in decodePCDBLOperand()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/Disassembler/
DSystemZDisassembler.cpp73 static bool tryAddingSymbolicOperand(int64_t Value, bool isBranch, in tryAddingSymbolicOperand() argument
78 return Dis->tryAddingSymbolicOperand(MI, Value, Address, isBranch, in tryAddingSymbolicOperand()
249 bool isBranch, in decodePCDBLOperand() argument
254 if (!tryAddingSymbolicOperand(Value, isBranch, Address, 2, N / 8, in decodePCDBLOperand()
/external/llvm/lib/Target/WebAssembly/
DWebAssemblyInstrControl.td17 let isBranch = 1, isTerminator = 1, hasCtrlDep = 1 in {
30 } // isBranch = 1, isTerminator = 1, hasCtrlDep = 1
/external/llvm-project/llvm/lib/MC/
DMCInstrDesc.cpp23 if (isBranch() || isCall() || isReturn() || isIndirectBranch()) in mayAffectControlFlow()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
DWebAssemblyInstrControl.td14 let isBranch = 1, isTerminator = 1, hasCtrlDep = 1 in {
27 } // isBranch = 1, isTerminator = 1, hasCtrlDep = 1
141 let isBranch = 1, isTerminator = 1, hasCtrlDep = 1 in
/external/llvm/lib/MC/
DMCInstrDesc.cpp35 if (isBranch() || isCall() || isReturn() || isIndirectBranch()) in mayAffectControlFlow()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DMCInstrDesc.cpp34 if (isBranch() || isCall() || isReturn() || isIndirectBranch()) in mayAffectControlFlow()
/external/llvm/include/llvm/Target/
DGenericOpcodes.td42 let isBranch = 1;

12345678910>>...13