Searched refs:Inst (Results 101 - 125 of 157) sorted by relevance

1234567

/external/regex-re2/re2/
H A Dnfa.cc67 int id; // Inst to process
223 Prog::Inst* ip = prog_->inst(id);
309 Prog::Inst* ip = prog_->inst(id);
525 Prog::Inst* ip = prog_->inst(id);
634 Prog::Inst* ip = prog_->inst(id);
H A Dbitstate.cc63 uint32 *visited_; // bitmap: (Inst*, char*) pairs already backtracked
170 Prog::Inst* ip = prog_->inst(id);
/external/clang/include/clang/Sema/
H A DTemplate.h329 void InstantiatedLocal(const Decl *D, Decl *Inst);
330 void InstantiatedLocalPackArg(const Decl *D, Decl *Inst);
/external/llvm/include/llvm/Analysis/
H A DAliasSetTracker.h272 bool aliasesUnknownInst(Instruction *Inst, AliasAnalysis &AA) const;
428 AliasSet *findAliasSetForUnknownInst(Instruction *Inst);
H A DRegionInfo.h370 /// @param Inst The Instruction that might be contained in this region.
372 bool contains(const Instruction *Inst) const {
373 return contains(Inst->getParent());
H A DLoopInfo.h116 bool contains(const InstT *Inst) const {
117 return contains(Inst->getParent());
/external/llvm/include/llvm-c/
H A DCore.h1757 LLVMValueRef LLVMGetParamParent(LLVMValueRef Inst);
2132 LLVMBasicBlockRef LLVMGetInstructionParent(LLVMValueRef Inst);
2142 LLVMValueRef LLVMGetNextInstruction(LLVMValueRef Inst);
2150 LLVMValueRef LLVMGetPreviousInstruction(LLVMValueRef Inst);
2160 void LLVMInstructionEraseFromParent(LLVMValueRef Inst);
2167 LLVMOpcode LLVMGetInstructionOpcode(LLVMValueRef Inst);
2177 LLVMIntPredicate LLVMGetICmpPredicate(LLVMValueRef Inst);
2315 void LLVMSetInstDebugLocation(LLVMBuilderRef Builder, LLVMValueRef Inst);
/external/llvm/lib/MC/
H A DWinCOFFStreamer.cpp83 virtual void EmitInstToData(const MCInst &Inst) { argument
89 getAssembler().getEmitter().EncodeInstruction(Inst, VecOS, Fixups);
/external/llvm/lib/Target/R600/
H A DSIAnnotateControlFlow.cpp246 } else if (Instruction *Inst = dyn_cast<Instruction>(Cond)) {
247 BasicBlock *Parent = Inst->getParent();
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombinePHI.cpp559 Instruction *Inst; // The trunc instruction. member in struct:__anon9882::PHIUsageRecord
562 : PHIId(pn), Shift(Sh), Inst(User) {}
569 return Inst->getType()->getPrimitiveSizeInBits() <
570 RHS.Inst->getType()->getPrimitiveSizeInBits();
708 Type *Ty = PHIUsers[UserI].Inst->getType();
781 ReplaceInstUsesWith(*PHIUsers[UserI].Inst, EltPHI);
H A DInstCombineSimplifyDemanded.cpp50 /// SimplifyDemandedInstructionBits - Inst is an integer instruction that
53 bool InstCombiner::SimplifyDemandedInstructionBits(Instruction &Inst) { argument
54 unsigned BitWidth = Inst.getType()->getScalarSizeInBits();
58 Value *V = SimplifyDemandedUseBits(&Inst, DemandedMask,
61 if (V == &Inst) return true;
62 ReplaceInstUsesWith(Inst, V);
/external/llvm/lib/IR/
H A DCore.cpp451 int LLVMHasMetadata(LLVMValueRef Inst) { argument
452 return unwrap<Instruction>(Inst)->hasMetadata();
455 LLVMValueRef LLVMGetMetadata(LLVMValueRef Inst, unsigned KindID) { argument
456 return wrap(unwrap<Instruction>(Inst)->getMetadata(KindID));
459 void LLVMSetMetadata(LLVMValueRef Inst, unsigned KindID, LLVMValueRef MD) { argument
460 unwrap<Instruction>(Inst)->setMetadata(KindID, MD? unwrap<MDNode>(MD) : NULL);
1608 LLVMBasicBlockRef LLVMGetInstructionParent(LLVMValueRef Inst) { argument
1609 return wrap(unwrap<Instruction>(Inst)->getParent());
1628 LLVMValueRef LLVMGetNextInstruction(LLVMValueRef Inst) { argument
1629 Instruction *Instr = unwrap<Instruction>(Inst);
1636 LLVMGetPreviousInstruction(LLVMValueRef Inst) argument
1644 LLVMInstructionEraseFromParent(LLVMValueRef Inst) argument
1648 LLVMGetICmpPredicate(LLVMValueRef Inst) argument
1657 LLVMGetInstructionOpcode(LLVMValueRef Inst) argument
1812 LLVMSetInstDebugLocation(LLVMBuilderRef Builder, LLVMValueRef Inst) argument
[all...]
/external/llvm/utils/TableGen/
H A DDAGISelMatcherGen.cpp621 GetInstPatternNode(const DAGInstruction &Inst, const TreePatternNode *N) { argument
622 const TreePattern *InstPat = Inst.getPattern();
675 const DAGInstruction &Inst = CGP.getInstruction(Op); local
683 const TreePatternNode *InstPatNode = GetInstPatternNode(Inst, N);
712 unsigned NumResults = Inst.getNumResults();
H A DCodeGenSchedule.h327 unsigned getSchedClassIdx(const CodeGenInstruction &Inst) const;
/external/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp500 Instruction *Inst,
504 AliasAnalysis::Location getLoadStoreLocation(Instruction *Inst);
2408 LoopVectorizationLegality::getLoadStoreLocation(Instruction *Inst) { argument
2409 if (StoreInst *Store = dyn_cast<StoreInst>(Inst))
2411 else if (LoadInst *Load = dyn_cast<LoadInst>(Inst))
2420 Instruction *Inst,
2424 AliasAnalysis::Location ThisLoc = getLoadStoreLocation(Inst);
2432 if (I == Inst)
2612 Instruction *Inst = (*MI).second; local
2626 WriteObjects[*UI].push_back(Inst);
2418 hasPossibleGlobalWriteReorder( Value *Object, Instruction *Inst, AliasMultiMap& WriteObjects, unsigned MaxByteWidth) argument
2680 Instruction *Inst = (*MI).second; local
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp177 void RewriteMemIntrinUserOfAlloca(MemIntrinsic *MI, Instruction *Inst,
1088 virtual void updateDebugInfo(Instruction *Inst) const {
1092 if (StoreInst *SI = dyn_cast<StoreInst>(Inst))
1094 else if (LoadInst *LI = dyn_cast<LoadInst>(Inst))
1101 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
1110 } else if (LoadInst *LI = dyn_cast<LoadInst>(Inst)) {
1117 Inst);
2165 void SROA::RewriteMemIntrinUserOfAlloca(MemIntrinsic *MI, Instruction *Inst, argument
2175 if (Inst == MTI->getRawDest())
2178 assert(Inst
[all...]
H A DJumpThreading.cpp1317 if (Instruction *Inst = dyn_cast<Instruction>(IV)) {
1318 DenseMap<Instruction*, Value*>::iterator I = ValueMap.find(Inst);
1398 if (Instruction *Inst = dyn_cast<Instruction>(New->getOperand(i))) {
1399 DenseMap<Instruction*, Value*>::iterator I = ValueMapping.find(Inst);
1540 if (Instruction *Inst = dyn_cast<Instruction>(New->getOperand(i))) {
1541 DenseMap<Instruction*, Value*>::iterator I = ValueMapping.find(Inst);
H A DLoopStrengthReduce.cpp612 static bool isAddressUse(Instruction *Inst, Value *OperandVal) { argument
613 bool isAddress = isa<LoadInst>(Inst);
614 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
617 } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
636 static Type *getAccessType(const Instruction *Inst) { argument
637 Type *AccessTy = Inst->getType();
638 if (const StoreInst *SI = dyn_cast<StoreInst>(Inst))
640 else if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
2966 if (const Instruction *Inst = dyn_cast<Instruction>(V)) {
2968 if (L->contains(Inst)) continu
4174 Instruction *Inst = *I; local
[all...]
/external/llvm/include/llvm/MC/
H A DMCAssembler.h295 /// Inst - The instruction this is a fragment for.
296 MCInst Inst; member in class:llvm::MCRelaxableFragment
306 : MCEncodedFragmentWithFixups(FT_Relaxable, SD), Inst(_Inst) {
312 const MCInst &getInst() const { return Inst; }
313 void setInst(const MCInst& Value) { Inst = Value; }
/external/llvm/tools/lto/
H A DLTOModule.cpp739 virtual void EmitInstruction(const MCInst &Inst) { argument
741 for (unsigned i = Inst.getNumOperands(); i--; )
742 if (Inst.getOperand(i).isExpr())
743 AddValueSymbols(Inst.getOperand(i).getExpr());
/external/regex-re2/re2/testing/
H A Dbacktrack.cc74 uint32 *visited_; // bitmap: (Inst*, char*) pairs already backtracked
165 Prog::Inst* ip = prog_->inst(id);
/external/llvm/lib/Analysis/
H A DValueTracking.cpp1931 const Operator *Inst = dyn_cast<Operator>(V); local
1932 if (!Inst)
1935 for (unsigned i = 0, e = Inst->getNumOperands(); i != e; ++i)
1936 if (Constant *C = dyn_cast<Constant>(Inst->getOperand(i)))
1940 switch (Inst->getOpcode()) {
1946 return isKnownNonZero(Inst->getOperand(1), TD);
1949 Value *Op = Inst->getOperand(1);
1963 const LoadInst *LI = cast<LoadInst>(Inst);
1969 if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
/external/clang/include/clang/AST/
H A DASTContext.h612 /// \brief Note that the static data member \p Inst is an instantiation of
614 void setInstantiatedFromStaticDataMember(VarDecl *Inst, VarDecl *Tmpl,
618 /// \brief If the given using decl \p Inst is an instantiation of a
621 NamedDecl *getInstantiatedFromUsingDecl(UsingDecl *Inst);
623 /// \brief Remember that the using decl \p Inst is an instantiation
625 void setInstantiatedFromUsingDecl(UsingDecl *Inst, NamedDecl *Pattern);
627 void setInstantiatedFromUsingShadowDecl(UsingShadowDecl *Inst,
629 UsingShadowDecl *getInstantiatedFromUsingShadowDecl(UsingShadowDecl *Inst);
633 void setInstantiatedFromUnnamedFieldDecl(FieldDecl *Inst, FieldDecl *Tmpl);
/external/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.cpp112 unsigned ValueEnumerator::getInstructionID(const Instruction *Inst) const {
113 InstructionMapType::const_iterator I = InstructionMap.find(Inst);
/external/llvm/lib/Target/R600/MCTargetDesc/
H A DR600MCCodeEmitter.cpp182 uint64_t Inst = getBinaryCodeForInstr(MI, Fixups); local
184 Emit(Inst, OS);

Completed in 490 milliseconds

1234567