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

1 2 3 4

  /external/llvm/include/llvm/IR/
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!");
119 assert(getInstruction() && "Not a call or invoke instruction!");
121 getInstruction()->setOperand(ArgNo, newVal);
133 assert(getInstruction() && "Not a call or invoke instruction!");
146 assert(getInstruction() && "Not a call or invoke instruction!");
166 return isCall() && cast<CallInst>(getInstruction())->isMustTailCall();
171 return isCall() && cast<CallInst>(getInstruction())->isTailCall()
    [all...]
  /external/llvm/lib/Target/AArch64/Disassembler/
AArch64Disassembler.h 31 /// getInstruction - See MCDisassembler.
33 getInstruction(MCInst &instr, uint64_t &size, const MemoryObject &region,
  /external/llvm/lib/Target/X86/Disassembler/
X86Disassembler.h 102 /// getInstruction - See MCDisassembler.
103 DecodeStatus getInstruction(MCInst &instr, uint64_t &size,
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
PreInstructionRegisterInfoMethodItem.java 108 if (analyzedInstruction.getInstruction() instanceof RegisterRangeInstruction) {
109 RegisterRangeInstruction instruction = (RegisterRangeInstruction)analyzedInstruction.getInstruction();
113 } else if (analyzedInstruction.getInstruction() instanceof FiveRegisterInstruction) {
114 FiveRegisterInstruction instruction = (FiveRegisterInstruction)analyzedInstruction.getInstruction();
132 } else if (analyzedInstruction.getInstruction() instanceof ThreeRegisterInstruction) {
133 ThreeRegisterInstruction instruction = (ThreeRegisterInstruction)analyzedInstruction.getInstruction();
137 } else if (analyzedInstruction.getInstruction() instanceof TwoRegisterInstruction) {
138 TwoRegisterInstruction instruction = (TwoRegisterInstruction)analyzedInstruction.getInstruction();
141 } else if (analyzedInstruction.getInstruction() instanceof OneRegisterInstruction) {
142 OneRegisterInstruction instruction = (OneRegisterInstruction)analyzedInstruction.getInstruction();
    [all...]
MethodDefinition.java 406 this, currentCodeAddress, instruction.getInstruction());
410 if (instruction.getInstruction().getOpcode().format == Format.UnresolvedOdexInstruction) {
438 !instruction.getInstruction().getOpcode().format.isPayloadFormat) {
447 currentCodeAddress += instruction.getInstruction().getCodeUnits();
  /external/llvm/include/llvm/MC/
MCDisassembler.h 63 /// getInstruction - Returns the disassembly of a single instruction.
79 virtual DecodeStatus getInstruction(MCInst& instr,
  /external/llvm/lib/Analysis/
NoAliasAnalysis.cpp 61 CS.getInstruction()->getMetadata(LLVMContext::MD_tbaa));
TypeBasedAliasAnalysis.cpp 496 if (const MDNode *M = CS.getInstruction()->getMetadata(LLVMContext::MD_tbaa))
518 CS.getInstruction()->getMetadata(LLVMContext::MD_tbaa))
532 CS1.getInstruction()->getMetadata(LLVMContext::MD_tbaa))
534 CS2.getInstruction()->getMetadata(LLVMContext::MD_tbaa))
AliasAnalysisEvaluator.cpp 122 errs() << " " << Msg << ": " << *CSA.getInstruction()
123 << " <-> " << *CSB.getInstruction() << '\n';
274 Instruction *I = C->getInstruction();
AliasAnalysisCounter.cpp 167 errs() << "\t<->" << *CS.getInstruction() << '\n';
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 307 DebugLoc DLoc = CS.getInstruction()->getDebugLoc();
318 << ", Call: " << *CS.getInstruction() << "\n");
326 << ", Call: " << *CS.getInstruction() << "\n");
336 << ", Call: " << *CS.getInstruction() << "\n");
405 DEBUG(dbgs() << " NOT Inlining: " << *CS.getInstruction() <<
419 << ", Call: " << *CS.getInstruction() << '\n');
524 if (isInstructionTriviallyDead(CS.getInstruction(), TLI)) {
526 << *CS.getInstruction() << "\n");
529 CS.getInstruction()->eraseFromParent();
548 DebugLoc DLoc = CS.getInstruction()->getDebugLoc()
    [all...]
  /external/llvm/lib/Analysis/IPA/
CallGraph.cpp 185 if (I->first == CS.getInstruction()) {
229 if (I->first == CS.getInstruction()) {
231 I->first = NewCS.getInstruction();
InlineCost.cpp 702 SimplifiedValues[CS.getInstruction()] = C;
718 cast<CallInst>(CS.getInstruction())->cannotDuplicate())
728 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(CS.getInstruction())) {
741 if (F == CS.getInstruction()->getParent()->getParent()) {
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCAliasAnalysis.cpp 137 switch (GetBasicInstructionClass(CS.getInstruction())) {
  /external/llvm/lib/Transforms/Instrumentation/
DataFlowSanitizer.cpp     [all...]
  /external/llvm/include/llvm/Analysis/
CallGraph.h 232 assert(!CS.getInstruction() || !CS.getCalledFunction() ||
234 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-mc/
Disassembler.cpp 69 S = DisAsm.getInstruction(Inst, Size, memoryObject, Index,
  /external/llvm/utils/TableGen/
CodeGenTarget.h 155 CodeGenInstruction &getInstruction(const Record *InstRec) const {
DAGISelEmitter.cpp 49 CodeGenInstruction &II = CGP.getTargetInfo().getInstruction(Op);
CodeEmitterGen.cpp 75 CodeGenInstruction &CGI = Target.getInstruction(R);
201 CodeGenInstruction &CGI = Target.getInstruction(R);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
AnalyzedInstruction.java 130 public Instruction getInstruction() {
  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp     [all...]

Completed in 625 milliseconds

1 2 3 4