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

  /external/llvm/include/llvm/MC/
MCInstrAnalysis.h 34 virtual bool isBranch(const MCInst &Inst) const {
35 return Info->get(Inst.getOpcode()).isBranch();
MCInstrDesc.h 233 bool isBranch() const { return Flags & (1 << MCID::Branch); }
244 return isBranch() & !isBarrier() & !isIndirectBranch();
252 return isBranch() & isBarrier() & !isIndirectBranch();
365 /// 3. Calling, branching, returning: use isCall/isReturn/isBranch.
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCInstrAnalysis.h 31 virtual bool isBranch(const MCInst &Inst) const {
32 return Info->get(Inst.getOpcode()).isBranch();
36 return Info->get(Inst.getOpcode()).isBranch();
MCInstrDesc.h 323 /// isBranch - Returns true if this is a conditional, unconditional, or
327 bool isBranch() const {
342 return isBranch() & !isBarrier() & !isIndirectBranch();
350 return isBranch() & isBarrier() & !isIndirectBranch();
430 /// 3. Calling, branching, returning: use isCall/isReturn/isBranch.
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
MCInstrAnalysis.h 37 virtual bool isBranch(const MCInst &Inst) const {
38 return Info->get(Inst.getOpcode()).isBranch();
MCInstrDesc.h 275 bool isBranch() const { return Flags & (1ULL << MCID::Branch); }
286 return isBranch() & !isBarrier() & !isIndirectBranch();
294 return isBranch() & isBarrier() & !isIndirectBranch();
407 /// 3. Calling, branching, returning: use isCall/isReturn/isBranch.
  /external/swiftshader/third_party/LLVM/lib/MC/MCDisassembler/
EDInst.cpp 84 bool EDInst::isBranch() {
111 if (isBranch() &&
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/Disassembler/
X86Disassembler.cpp 282 /// @param isBranch - If the instruction is a branch instruction
292 /// returns zero and isBranch is true then a symbol look up for immediate Value
296 static bool tryAddingSymbolicOperand(int64_t Value, bool isBranch,
300 return Dis->tryAddingSymbolicOperand(MI, Value, Address, isBranch,
386 bool isBranch = false;
389 isBranch = true;
671 if(!tryAddingSymbolicOperand(immediate + pcrel, isBranch, insn.startLocation,
    [all...]
  /external/llvm/lib/Target/X86/Disassembler/
X86Disassembler.cpp 265 /// @param isBranch - If the instruction is a branch instruction
275 /// returns zero and isBranch is true then a symbol look up for immediate Value
279 static bool tryAddingSymbolicOperand(int64_t Value, bool isBranch,
283 return Dis->tryAddingSymbolicOperand(MI, Value, Address, isBranch,
369 bool isBranch = false;
372 isBranch = true;
627 isBranch = true;
633 isBranch = true;
640 isBranch = true;
650 if(!tryAddingSymbolicOperand(immediate + pcrel, isBranch, insn.startLocation
    [all...]
  /external/swiftshader/src/Pipeline/
Shader.cpp 1098 bool Shader::Instruction::isBranch() const
    [all...]
  /external/swiftshader/src/Shader/
Shader.cpp 1098 bool Shader::Instruction::isBranch() const
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
CodeGenInstruction.h 220 bool isBranch;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
MachineInstr.h 509 bool isBranch(QueryType Type = AnyInBundle) const {
524 return isBranch(Type) & !isBarrier(Type) & !isIndirectBranch(Type);
532 return isBranch(Type) & isBarrier(Type) & !isIndirectBranch(Type);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
R600InstrInfo.cpp 670 static bool isBranch(unsigned Opcode) {
689 if (isBranch(I->getOpcode()))
    [all...]
  /external/v8/src/mips64/
assembler-mips64.cc 505 bool Assembler::IsBranch(Instr instr) {
510 bool isBranch =
518 if (!isBranch && kArchVariant == kMips64r6) {
521 isBranch |= opcode == POP10 || opcode == POP30 || opcode == BC ||
526 return isBranch;
681 DCHECK(IsBranch(instr));
790 DCHECK(IsBranch(instr) || IsJ(instr) || IsJal(instr) || IsLui(instr) ||
794 if (IsBranch(instr)) {
893 if (IsBranch(instr)) {
1049 if (IsBranch(instr))
    [all...]
  /external/v8/src/mips/
assembler-mips.cc 526 bool Assembler::IsBranch(Instr instr) {
531 bool isBranch =
539 if (!isBranch && IsMipsArchVariant(kMips32r6)) {
542 isBranch |= opcode == POP10 || opcode == POP30 || opcode == BC ||
547 return isBranch;
712 DCHECK(IsBranch(instr));
859 DCHECK(IsBranch(instr) || IsLui(instr) || IsMov(instr, t8, ra));
860 if (IsBranch(instr)) {
949 DCHECK(IsBranch(instr) || IsLui(instr) || IsMov(instr, t8, ra));
950 if (IsBranch(instr))
    [all...]
  /external/owasp/sanitizer/tools/findbugs/lib/
findbugs.jar 

Completed in 3126 milliseconds