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

1 2 3 4

  /external/llvm/lib/Target/MBlaze/Disassembler/
MBlazeDisassembler.h 38 /// getInstruction - See MCDisassembler.
39 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 276 if (instruction.getInstruction().opcode != Opcode.NOP ||
277 instruction.getInstruction().getFormat().variableSizeFormat) {
287 if (nextInstruction.getInstruction().getFormat().variableSizeFormat) {
414 encodedMethod.codeItem, currentCodeAddress, instruction.getInstruction());
418 if (instruction.getInstruction().getFormat() == Format.UnresolvedOdexInstruction) {
445 if (baksmali.registerInfo != 0 && !instruction.getInstruction().getFormat().variableSizeFormat) {
453 currentCodeAddress += instruction.getInstruction().getSize(currentCodeAddress);
  /external/llvm/lib/Target/X86/Disassembler/
X86Disassembler.h 115 /// getInstruction - See MCDisassembler.
116 DecodeStatus getInstruction(MCInst &instr,
  /external/llvm/include/llvm/MC/
MCDisassembler.h 62 /// getInstruction - Returns the disassembly of a single instruction.
78 virtual DecodeStatus getInstruction(MCInst& instr,
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 267 << ", Call: " << *CS.getInstruction() << "\n");
273 << ", Call: " << *CS.getInstruction() << "\n");
281 << ", Call: " << *CS.getInstruction() << "\n");
347 DEBUG(dbgs() << " NOT Inlining: " << *CS.getInstruction() <<
356 << ", Call: " << *CS.getInstruction() << '\n');
456 if (isInstructionTriviallyDead(CS.getInstruction(), TLI)) {
458 << *CS.getInstruction() << "\n");
461 CS.getInstruction()->eraseFromParent();
  /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))
AliasAnalysis.cpp 94 MDNode *CSTag = CS.getInstruction()->getMetadata(LLVMContext::MD_tbaa);
152 MDNode *CS2Tag = CS2.getInstruction()->getMetadata(LLVMContext::MD_tbaa);
172 MDNode *CS1Tag = CS1.getInstruction()->getMetadata(LLVMContext::MD_tbaa);
444 if (!CS.getInstruction() || CS.getInstruction() == Object)
AliasAnalysisEvaluator.cpp 121 errs() << " " << Msg << ": " << *CSA.getInstruction()
122 << " <-> " << *CSB.getInstruction() << '\n';
203 Instruction *I = C->getInstruction();
AliasAnalysisCounter.cpp 168 errs() << "\t<->" << *CS.getInstruction() << '\n';
  /external/llvm/lib/Analysis/IPA/
CallGraph.cpp 283 if (I->first == CS.getInstruction()) {
327 if (I->first == CS.getInstruction()) {
329 I->first = NewCS.getInstruction();
InlineCost.cpp 695 SimplifiedValues[CS.getInstruction()] = C;
703 if (CS.isCall() && cast<CallInst>(CS.getInstruction())->canReturnTwice() &&
711 cast<CallInst>(CS.getInstruction())->hasFnAttr(Attribute::NoDuplicate))
721 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(CS.getInstruction())) {
734 if (F == CS.getInstruction()->getParent()->getParent()) {
    [all...]
  /external/llvm/lib/Target/Mips/Disassembler/
MipsDisassembler.cpp 59 /// getInstruction - See MCDisassembler.
60 virtual DecodeStatus getInstruction(MCInst &instr,
78 /// getInstruction - See MCDisassembler.
79 virtual DecodeStatus getInstruction(MCInst &instr,
269 MipsDisassembler::getInstruction(MCInst &instr,
294 Mips64Disassembler::getInstruction(MCInst &instr,
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCAliasAnalysis.cpp 136 switch (GetBasicInstructionClass(CS.getInstruction())) {
  /external/llvm/tools/llvm-mc/
Disassembler.cpp 66 S = DisAsm.getInstruction(Inst, Size, memoryObject, Index,
  /external/llvm/include/llvm/Analysis/
CallGraph.h 262 assert(!CS.getInstruction() ||
265 CalledFunctions.push_back(std::make_pair(CS.getInstruction(), M));
PtrUseVisitor.h 278 PI.setEscaped(CS.getInstruction());
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp     [all...]
  /external/clang/lib/CodeGen/
CGCUDANV.cpp 109 llvm::Value *CSZero = CGF.Builder.CreateICmpEQ(CS.getInstruction(), Zero);
  /external/llvm/tools/llvm-objdump/
MCFunction.cpp 56 if (DisAsm->getInstruction(Inst, Size, Region, Index, DebugOut, nulls())){
  /external/llvm/utils/TableGen/
CodeGenTarget.h 155 CodeGenInstruction &getInstruction(const Record *InstRec) const {
DAGISelEmitter.cpp 47 CodeGenInstruction &II = CGP.getTargetInfo().getInstruction(Op);
  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp     [all...]

Completed in 638 milliseconds

1 2 3 4