Searched refs:getInstruction (Results 1 - 25 of 166) sorted by relevance

1234567

/external/llvm/lib/IR/
H A DStatepoint.cpp22 if (!CS.getInstruction())
44 return CS.getInstruction() && isa<GCRelocateInst>(CS.getInstruction());
48 return CS.getInstruction() && isa<GCResultInst>(CS.getInstruction());
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DCallSite.h78 bool isInvoke() const { return getInstruction() && !I.getInt(); }
80 InstrTy *getInstruction() const { return I.getPointer(); } function in class:llvm::CallSiteBase
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/llvm/include/llvm/IR/
H A DCallSite.h82 bool isInvoke() const { return getInstruction() && !I.getInt(); }
84 InstrTy *getInstruction() const { return I.getPointer(); } function in class:llvm::CallSiteBase
89 BBTy* getParent() const { return getInstruction()->getParent(); }
94 assert(getInstruction() && "Not a call or invoke instruction!");
108 assert(getInstruction() && "Not a call or invoke instruction!");
129 assert(getInstruction() == U->getUser());
140 assert(getInstruction() == U->getUser());
164 assert(getInstruction() && "Not a call or invoke instruction!");
166 getInstruction()->setOperand(ArgNo, newVal);
178 assert(getInstruction()
[all...]
H A DStatepoint.h125 InstructionTy *getInstruction() const { function in class:llvm::StatepointFlags::StatepointBase
126 return getCallSite().getInstruction();
238 return gc_args_begin() - getInstruction()->op_begin();
256 for (auto *U : getInstruction()->users())
409 for (const User *U : getInstruction()->users())
418 cast<InvokeInst>(getInstruction())->getLandingPadInst();
/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
H A DSmaliLabel.java54 public SmaliInstruction getInstruction() { method in class:SmaliLabel
64 SmaliInstruction instruction = getInstruction();
/external/llvm/lib/Target/AArch64/Disassembler/
H A DAArch64Disassembler.h32 getInstruction(MCInst &Instr, uint64_t &Size, ArrayRef<uint8_t> Bytes,
/external/llvm/lib/Target/Lanai/Disassembler/
H A DLanaiDisassembler.h32 // getInstruction - See MCDisassembler.
34 getInstruction(MCInst &Instr, uint64_t &Size, ArrayRef<uint8_t> Bytes,
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/Disassembler/
H A DMBlazeDisassembler.h42 /// getInstruction - See MCDisassembler.
43 MCDisassembler::DecodeStatus getInstruction(MCInst &instr,
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
H A DPreInstructionRegisterInfoMethodItem.java108 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...]
/external/llvm/lib/Analysis/
H A DScopedNoAliasAA.cpp100 if (!mayAliasInScopes(Loc.AATags.Scope, CS.getInstruction()->getMetadata(
105 CS.getInstruction()->getMetadata(LLVMContext::MD_alias_scope),
118 CS1.getInstruction()->getMetadata(LLVMContext::MD_alias_scope),
119 CS2.getInstruction()->getMetadata(LLVMContext::MD_noalias)))
123 CS2.getInstruction()->getMetadata(LLVMContext::MD_alias_scope),
124 CS1.getInstruction()->getMetadata(LLVMContext::MD_noalias)))
H A DCallGraph.cpp206 if (I->first == CS.getInstruction()) {
250 if (I->first == CS.getInstruction()) {
252 I->first = NewCS.getInstruction();
/external/llvm/include/llvm/Analysis/
H A DIndirectCallSiteVisitor.h26 Instruction *I = CS.getInstruction();
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
H A DBasicInliner.cpp105 CS.getInstruction()->getParent()->getParent() == Callee) {
113 <<", call: " << *CS.getInstruction());
116 <<", call: " << *CS.getInstruction());
123 << ", call: " << *CS.getInstruction());
127 << ", call: " << *CS.getInstruction());
/external/llvm/lib/Transforms/IPO/
H A DInliner.cpp228 DebugLoc DLoc = CS.getInstruction()->getDebugLoc();
308 << ", Call: " << *CS.getInstruction() << "\n");
316 << ", Call: " << *CS.getInstruction() << "\n");
326 << ", Call: " << *CS.getInstruction() << "\n");
336 DEBUG(dbgs() << " NOT Inlining: " << *CS.getInstruction()
348 << ", Call: " << *CS.getInstruction() << '\n');
461 if (isInstructionTriviallyDead(CS.getInstruction(), &TLI)) {
463 << *CS.getInstruction() << "\n");
466 CS.getInstruction()->eraseFromParent();
485 DebugLoc DLoc = CS.getInstruction()
[all...]
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
H A DInliner.cpp223 << ", Call: " << *CS.getInstruction() << "\n");
229 << ", Call: " << *CS.getInstruction() << "\n");
241 << ", Call: " << *CS.getInstruction() << "\n");
302 DEBUG(dbgs() << " NOT Inlining: " << *CS.getInstruction() <<
311 << ", Call: " << *CS.getInstruction() << '\n');
411 if (isInstructionTriviallyDead(CS.getInstruction())) {
413 << *CS.getInstruction() << "\n");
416 CS.getInstruction()->eraseFromParent();
/external/llvm/include/llvm/MC/MCDisassembler/
H A DMCDisassembler.h76 virtual DecodeStatus getInstruction(MCInst &Instr, uint64_t &Size,
/external/llvm/lib/Target/WebAssembly/
H A DWebAssemblyOptimizeReturned.cpp58 Instruction *Inst = CS.getInstruction();
/external/swiftshader/third_party/LLVM/include/llvm/MC/
H A DMCDisassembler.h64 /// getInstruction - Returns the disassembly of a single instruction.
80 virtual DecodeStatus getInstruction(MCInst& instr,
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DTypeBasedAliasAnalysis.cpp258 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))
H A DAliasAnalysis.cpp90 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);
/external/swiftshader/third_party/LLVM/lib/Target/X86/Disassembler/
H A DX86Disassembler.h115 /// getInstruction - See MCDisassembler.
116 DecodeStatus getInstruction(MCInst &instr,
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/flow/
H A DLabelInfoTest.java46 assertNull(LabelInfo.getInstruction(label));
167 assertSame(instruction, LabelInfo.getInstruction(label));
/external/llvm/lib/Target/WebAssembly/Disassembler/
H A DWebAssemblyDisassembler.cpp36 DecodeStatus getInstruction(MCInst &Instr, uint64_t &Size,
63 MCDisassembler::DecodeStatus WebAssemblyDisassembler::getInstruction( function in class:WebAssemblyDisassembler
/external/llvm/lib/Target/AMDGPU/Disassembler/
H A DAMDGPUDisassembler.h40 DecodeStatus getInstruction(MCInst &MI, uint64_t &Size,
/external/swiftshader/third_party/LLVM/lib/Analysis/IPA/
H A DCallGraph.cpp285 if (I->first == CS.getInstruction()) {
329 if (I->first == CS.getInstruction()) {
331 I->first = NewCS.getInstruction();

Completed in 741 milliseconds

1234567