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

1 2 3 4

  /external/llvm/include/llvm/Support/
CallSite.h 77 bool isInvoke() const { return getInstruction() && !I.getInt(); }
79 InstrTy *getInstruction() const { return I.getPointer(); }
86 assert(getInstruction() && "Not a call or invoke instruction!");
100 assert(getInstruction() && "Not a call or invoke instruction!");
117 assert(getInstruction() && "Not a call or invoke instruction!");
119 getInstruction()->setOperand(ArgNo, newVal);
125 assert(getInstruction() && "Not a call or invoke instruction!");
138 assert(getInstruction() && "Not a call or invoke instruction!");
156 InstrTy *II = getInstruction(); \
162 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/lib/Transforms/IPO/
Inliner.cpp 290 << ", Call: " << *CS.getInstruction() << "\n");
296 << ", Call: " << *CS.getInstruction() << "\n");
304 << ", Call: " << *CS.getInstruction() << "\n");
370 DEBUG(dbgs() << " NOT Inlining: " << *CS.getInstruction() <<
379 << ", Call: " << *CS.getInstruction() << '\n');
479 if (isInstructionTriviallyDead(CS.getInstruction(), TLI)) {
481 << *CS.getInstruction() << "\n");
484 CS.getInstruction()->eraseFromParent();
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
PacketUserauthInfoRequest.java 63 public String getInstruction()
  /external/llvm/include/llvm/MC/
MCDisassembler.h 66 /// getInstruction - Returns the disassembly of a single instruction.
82 virtual DecodeStatus getInstruction(MCInst& instr,
  /external/llvm/lib/Analysis/
TypeBasedAliasAnalysis.cpp 416 if (const MDNode *M = CS.getInstruction()->getMetadata(LLVMContext::MD_tbaa))
438 CS.getInstruction()->getMetadata(LLVMContext::MD_tbaa))
452 CS1.getInstruction()->getMetadata(LLVMContext::MD_tbaa))
454 CS2.getInstruction()->getMetadata(LLVMContext::MD_tbaa))
AliasAnalysis.cpp 95 MDNode *CSTag = CS.getInstruction()->getMetadata(LLVMContext::MD_tbaa);
153 MDNode *CS2Tag = CS2.getInstruction()->getMetadata(LLVMContext::MD_tbaa);
173 MDNode *CS1Tag = CS1.getInstruction()->getMetadata(LLVMContext::MD_tbaa);
427 if (!CS.getInstruction() || CS.getInstruction() == Object)
AliasAnalysisEvaluator.cpp 123 errs() << " " << Msg << ": " << *CSA.getInstruction()
124 << " <-> " << *CSB.getInstruction() << '\n';
275 Instruction *I = C->getInstruction();
AliasAnalysisCounter.cpp 168 errs() << "\t<->" << *CS.getInstruction() << '\n';
MemoryDependenceAnalysis.cpp 225 CS.getInstruction()->isIdenticalToWhenDefined(Inst))
629 assert(getDependency(QueryCS.getInstruction()).isNonLocal() &&
631 PerInstNLInfo &CacheP = NonLocalDeps[QueryCS.getInstruction()];
663 BasicBlock *QueryBB = QueryCS.getInstruction()->getParent();
715 QueryCS.getInstruction());
745 ReverseNonLocalDeps[Inst].insert(QueryCS.getInstruction());
    [all...]
  /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 699 SimplifiedValues[CS.getInstruction()] = C;
707 if (CS.isCall() && cast<CallInst>(CS.getInstruction())->canReturnTwice() &&
715 cast<CallInst>(CS.getInstruction())->hasFnAttr(Attribute::NoDuplicate))
725 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(CS.getInstruction())) {
738 if (F == CS.getInstruction()->getParent()->getParent()) {
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCAliasAnalysis.cpp 136 switch (GetBasicInstructionClass(CS.getInstruction())) {
  /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/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,
268 MipsDisassembler::getInstruction(MCInst &instr,
293 Mips64Disassembler::getInstruction(MCInst &instr,
  /external/llvm/tools/llvm-mc/
Disassembler.cpp 66 S = DisAsm.getInstruction(Inst, Size, memoryObject, Index,
  /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...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/widget/
WidgetCtsProvider.java 162 private TextData getInstruction(int state, Bundle options, int widgetId) {
245 TextData text = getInstruction(state, newOptions, appWidgetId);

Completed in 386 milliseconds

1 2 3 4