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

1 2 3

  /external/llvm/lib/Target/MBlaze/Disassembler/
MBlazeDisassembler.h 40 /// getInstruction - See MCDisassembler.
41 MCDisassembler::DecodeStatus getInstruction(MCInst &instr,
  /external/llvm/include/llvm/Support/
CallSite.h 78 bool isInvoke() const { return getInstruction() && !I.getInt(); }
80 InstrTy *getInstruction() const { return I.getPointer(); }
87 assert(getInstruction() && "Not a call or invoke instruction!");
101 assert(getInstruction() && "Not a call or invoke instruction!");
118 assert(getInstruction() && "Not a call or invoke instruction!");
120 getInstruction()->setOperand(ArgNo, newVal);
126 assert(getInstruction() && "Not a call or invoke instruction!");
139 assert(getInstruction() && "Not a call or invoke instruction!");
157 InstrTy *II = getInstruction(); \
163 InstrTy *II = getInstruction(); \
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
PreInstructionRegisterInfoMethodItem.java 95 if (analyzedInstruction.getInstruction() instanceof RegisterRangeInstruction) {
96 RegisterRangeInstruction instruction = (RegisterRangeInstruction)analyzedInstruction.getInstruction();
100 } else if (analyzedInstruction.getInstruction() instanceof FiveRegisterInstruction) {
101 FiveRegisterInstruction instruction = (FiveRegisterInstruction)analyzedInstruction.getInstruction();
119 } else if (analyzedInstruction.getInstruction() instanceof ThreeRegisterInstruction) {
120 ThreeRegisterInstruction instruction = (ThreeRegisterInstruction)analyzedInstruction.getInstruction();
124 } else if (analyzedInstruction.getInstruction() instanceof TwoRegisterInstruction) {
125 TwoRegisterInstruction instruction = (TwoRegisterInstruction)analyzedInstruction.getInstruction();
128 } else if (analyzedInstruction.getInstruction() instanceof SingleRegisterInstruction) {
129 SingleRegisterInstruction instruction = (SingleRegisterInstruction)analyzedInstruction.getInstruction();
    [all...]
MethodDefinition.java 275 if (instruction.getInstruction().opcode != Opcode.NOP ||
276 instruction.getInstruction().getFormat().variableSizeFormat) {
286 if (nextInstruction.getInstruction().getFormat().variableSizeFormat) {
403 encodedMethod.codeItem, currentCodeAddress, instruction.getInstruction());
407 if (instruction.getInstruction().getFormat() == Format.UnresolvedOdexInstruction) {
434 if (baksmali.registerInfo != 0 && !instruction.getInstruction().getFormat().variableSizeFormat) {
442 currentCodeAddress += instruction.getInstruction().getSize(currentCodeAddress);
  /external/llvm/lib/Target/X86/Disassembler/
X86Disassembler.h 117 /// getInstruction - See MCDisassembler.
118 DecodeStatus getInstruction(MCInst &instr,
  /external/llvm/include/llvm/MC/
MCDisassembler.h 64 /// getInstruction - Returns the disassembly of a single instruction.
80 virtual DecodeStatus getInstruction(MCInst& instr,
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 229 << ", Call: " << *CS.getInstruction() << "\n");
235 << ", Call: " << *CS.getInstruction() << "\n");
243 << ", Call: " << *CS.getInstruction() << "\n");
309 DEBUG(dbgs() << " NOT Inlining: " << *CS.getInstruction() <<
318 << ", Call: " << *CS.getInstruction() << '\n');
417 if (isInstructionTriviallyDead(CS.getInstruction())) {
419 << *CS.getInstruction() << "\n");
422 CS.getInstruction()->eraseFromParent();
InlineAlways.cpp 87 cast<CallInst>(CS.getInstruction())->canReturnTwice())
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
PacketUserauthInfoRequest.java 63 public String getInstruction()
  /external/llvm/lib/Analysis/
TypeBasedAliasAnalysis.cpp 258 if (const MDNode *M = CS.getInstruction()->getMetadata(LLVMContext::MD_tbaa))
279 CS.getInstruction()->getMetadata(LLVMContext::MD_tbaa))
293 CS1.getInstruction()->getMetadata(LLVMContext::MD_tbaa))
295 CS2.getInstruction()->getMetadata(LLVMContext::MD_tbaa))
AliasAnalysisEvaluator.cpp 121 errs() << " " << Msg << ": " << *CSA.getInstruction()
122 << " <-> " << *CSB.getInstruction() << '\n';
203 Instruction *I = C->getInstruction();
AliasAnalysis.cpp 90 MDNode *CSTag = CS.getInstruction()->getMetadata(LLVMContext::MD_tbaa);
148 MDNode *CS2Tag = CS2.getInstruction()->getMetadata(LLVMContext::MD_tbaa);
168 MDNode *CS1Tag = CS1.getInstruction()->getMetadata(LLVMContext::MD_tbaa);
AliasAnalysisCounter.cpp 168 errs() << "\t<->" << *CS.getInstruction() << '\n';
MemoryDependenceAnalysis.cpp 227 CS.getInstruction()->isIdenticalToWhenDefined(Inst))
392 if (!CS.getInstruction()) return AliasAnalysis::ModRef;
397 if (isa<Constant>(Object) || CS.getInstruction() == Object || CB.Captured)
679 assert(getDependency(QueryCS.getInstruction()).isNonLocal() &&
681 PerInstNLInfo &CacheP = NonLocalDeps[QueryCS.getInstruction()];
713 BasicBlock *QueryBB = QueryCS.getInstruction()->getParent();
765 QueryCS.getInstruction());
795 ReverseNonLocalDeps[Inst].insert(QueryCS.getInstruction());
    [all...]
InlineCost.cpp 627 if (CS.isCall() && cast<CallInst>(CS.getInstruction())->canReturnTwice() &&
634 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(CS.getInstruction())) {
658 if (F == CS.getInstruction()->getParent()->getParent()) {
840 if (InvokeInst *II = dyn_cast<InvokeInst>(CS.getInstruction())) {
843 } else if (isa<UnreachableInst>(++BasicBlock::iterator(CS.getInstruction())))
    [all...]
  /frameworks/compile/libbcc/lib/Disassembler/
Disassembler.cpp 119 if (Disassmbler->getInstruction(Inst, Size, *BufferMObj, Index,
  /external/llvm/lib/Analysis/IPA/
CallGraph.cpp 278 if (I->first == CS.getInstruction()) {
322 if (I->first == CS.getInstruction()) {
324 I->first = NewCS.getInstruction();
  /external/llvm/include/llvm/Analysis/
CallGraph.h 262 assert(!CS.getInstruction() ||
265 CalledFunctions.push_back(std::make_pair(CS.getInstruction(), M));
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp     [all...]
  /external/clang/lib/CodeGen/
CGCUDANV.cpp 110 llvm::Value *CSZero = CGF.Builder.CreateICmpEQ(CS.getInstruction(), Zero);
  /external/llvm/lib/MC/MCDisassembler/
Disassembler.cpp 156 S = DisAsm->getInstruction(Inst, Size, MemoryObject, PC,
  /external/llvm/lib/Target/Mips/Disassembler/
MipsDisassembler.cpp 44 /// getInstruction - See MCDisassembler.
45 DecodeStatus getInstruction(MCInst &instr,
72 /// getInstruction - See MCDisassembler.
73 DecodeStatus getInstruction(MCInst &instr,
312 MipsDisassembler::getInstruction(MCInst &instr,
336 Mips64Disassembler::getInstruction(MCInst &instr,
  /external/llvm/tools/llvm-objdump/
MCFunction.cpp 56 if (DisAsm->getInstruction(Inst, Size, Region, Index, DebugOut, nulls())){
  /external/llvm/utils/TableGen/
CodeGenTarget.h 149 CodeGenInstruction &getInstruction(const Record *InstRec) const {
DAGISelEmitter.cpp 35 CodeGenInstruction &II = CGP.getTargetInfo().getInstruction(Op);

Completed in 457 milliseconds

1 2 3