Searched refs:Inst (Results 126 - 150 of 157) sorted by relevance

1234567

/external/regex-re2/re2/
H A Ddfa.cc630 Prog::Inst* ip = prog_->inst(id);
842 Prog::Inst* ip = prog_->inst(id);
925 Prog::Inst* ip = prog_->inst(id);
1514 Prog::Inst* ip = prog_->inst(s->inst_[i]);
H A Donepass.cc367 // (1) for any other Inst nip, there is at most one input-free
430 Prog::Inst* ip = inst(id);
/external/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp352 MCInst Inst; local
354 if (DisAsm->getInstruction(Inst, Size, memoryObject, Index,
361 IP->printInst(&Inst, outs(), "");
/external/clang/lib/CodeGen/
H A DCGCall.cpp1915 CodeGenFunction::AddObjCARCExceptionMetadata(llvm::Instruction *Inst) { argument
1918 Inst->setMetadata("clang.arc.no_objc_arc_exceptions",
2009 llvm::Instruction *Inst; local
2011 Inst = Builder.CreateCall(Callee, Args, Name);
2014 Inst = Builder.CreateInvoke(Callee, ContBB, InvokeDest, Args, Name);
2021 AddObjCARCExceptionMetadata(Inst);
2023 return Inst;
H A DCodeGenFunction.cpp1274 protection.Inst = inst;
1279 if (!protection.Inst) return;
1282 protection.Inst->eraseFromParent();
H A DCodeGenFunction.h992 llvm::Instruction *Inst; member in class:clang::CodeGen::PeepholeProtection
996 PeepholeProtection() : Inst(0) {}
2795 void AddObjCARCExceptionMetadata(llvm::Instruction *Inst);
H A DCodeGenModule.h501 static void DecorateInstruction(llvm::Instruction *Inst,
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c1161 CAMLprim value llvm_instr_get_opcode(LLVMValueRef Inst) {
1163 if (!LLVMIsAInstruction(Inst))
1165 o = LLVMGetInstructionOpcode(Inst);
1186 CAMLprim value llvm_instruction_call_conv(LLVMValueRef Inst) { argument
1187 return Val_int(LLVMGetInstructionCallConv(Inst));
1191 CAMLprim value llvm_set_instruction_call_conv(value CC, LLVMValueRef Inst) { argument
1192 LLVMSetInstructionCallConv(Inst, Int_val(CC));
/external/llvm/lib/Transforms/Scalar/
H A DGVN.cpp492 assert(I->first != V && "Inst still occurs in value numbering map!");
1326 static bool isLifetimeStart(const Instruction *Inst) { argument
1327 if (const IntrinsicInst* II = dyn_cast<IntrinsicInst>(Inst))
2587 void GVN::verifyRemoved(const Instruction *Inst) const {
2588 VN.verifyRemoved(Inst);
2595 assert(Node->Val != Inst && "Inst still in value numbering scope!");
2599 assert(Node->Val != Inst && "Inst still in value numbering scope!");
H A DSROA.cpp1250 virtual void updateDebugInfo(Instruction *Inst) const {
1254 if (StoreInst *SI = dyn_cast<StoreInst>(Inst))
1256 else if (LoadInst *LI = dyn_cast<LoadInst>(Inst))
1263 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
1272 } else if (LoadInst *LI = dyn_cast<LoadInst>(Inst)) {
1279 Inst);
/external/clang/lib/AST/
H A DASTContext.cpp969 ASTContext::setInstantiatedFromStaticDataMember(VarDecl *Inst, VarDecl *Tmpl, argument
972 assert(Inst->isStaticDataMember() && "Not a static data member");
974 assert(!InstantiatedFromStaticDataMember[Inst] &&
976 InstantiatedFromStaticDataMember[Inst]
1009 ASTContext::setInstantiatedFromUsingDecl(UsingDecl *Inst, NamedDecl *Pattern) { argument
1014 assert(!InstantiatedFromUsingDecl[Inst] && "pattern already exists");
1015 InstantiatedFromUsingDecl[Inst] = Pattern;
1019 ASTContext::getInstantiatedFromUsingShadowDecl(UsingShadowDecl *Inst) { argument
1021 = InstantiatedFromUsingShadowDecl.find(Inst);
1029 ASTContext::setInstantiatedFromUsingShadowDecl(UsingShadowDecl *Inst, argument
1044 setInstantiatedFromUnnamedFieldDecl(FieldDecl *Inst, FieldDecl *Tmpl) argument
[all...]
/external/llvm/include/llvm/MC/
H A DMCStreamer.h588 virtual void EmitInstruction(const MCInst &Inst) = 0;
/external/llvm/lib/MC/
H A DMCDwarf.cpp1334 MCCFIInstruction Inst = local
1336 Instructions.push_back(Inst);
1341 MCCFIInstruction Inst = local
1343 Instructions.push_back(Inst);
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombine.h340 /// SimplifyDemandedInstructionBits - Inst is an integer instruction that
343 bool SimplifyDemandedInstructionBits(Instruction &Inst);
H A DInstCombineCalls.cpp847 Instruction *Inst = --I; local
852 if (Inst->mayWriteToMemory())
/external/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp1158 Instruction *Inst = ToInstrument[i]; local
1161 if (isInterestingMemoryAccess(Inst, &IsWrite))
1162 instrumentMop(Inst);
1164 instrumentMemIntrinsic(cast<MemIntrinsic>(Inst));
/external/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp583 // The user of the global must be a GEP Inst or a ConstantExpr GEP.
1161 const Instruction *Inst = cast<Instruction>(*UI); local
1163 if (isa<LoadInst>(Inst) || isa<CmpInst>(Inst)) {
1167 if (const StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
1174 if (isa<GetElementPtrInst>(Inst) && Inst->getNumOperands() >= 3) {
1175 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(Inst, GV, PHIs))
1180 if (const PHINode *PN = dyn_cast<PHINode>(Inst)) {
1189 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Inst)) {
[all...]
/external/clang/lib/Sema/
H A DSemaTemplateDeduction.cpp2234 InstantiatingTemplate Inst(*this, Partial->getLocation(), Partial,
2236 if (Inst)
2320 InstantiatingTemplate Inst(*this, FunctionTemplate->getLocation(),
2324 if (Inst)
2572 InstantiatingTemplate Inst(*this, FunctionTemplate->getLocation(),
2576 if (Inst)
4186 InstantiatingTemplate Inst(*this, PS2->getLocation(), PS2,
4203 InstantiatingTemplate Inst(*this, PS1->getLocation(), PS1,
H A DSemaTemplate.cpp2013 InstantiatingTemplate Inst(*this, TemplateLoc, Template);
2014 if (Inst)
2573 Sema::InstantiatingTemplate Inst(SemaRef, TemplateLoc,
2576 if (Inst)
2623 Sema::InstantiatingTemplate Inst(SemaRef, TemplateLoc,
2626 if (Inst)
2673 Sema::InstantiatingTemplate Inst(SemaRef, TemplateLoc,
2676 if (Inst)
2808 InstantiatingTemplate Inst(*this, TemplateLoc, Template,
2811 if (Inst)
[all...]
/external/llvm/lib/Analysis/
H A DLint.cpp653 if (Instruction *Inst = dyn_cast<Instruction>(V)) {
654 if (Value *W = SimplifyInstruction(Inst, TD, TLI, DT))
/external/llvm/lib/Transforms/Utils/
H A DPromoteMemoryToRegister.cpp382 Instruction *Inst = cast<Instruction>(*UI); local
384 Inst->eraseFromParent();
H A DSimplifyCFG.cpp1884 static bool checkCSEInPredecessor(Instruction *Inst, BasicBlock *PB) { argument
1885 if (!isa<BinaryOperator>(Inst) && !isa<CmpInst>(Inst))
1889 // Check whether Inst and PBI generate the same value.
1890 if (Inst->isIdenticalTo(PBI)) {
1891 Inst->replaceAllUsesWith(PBI);
1892 Inst->eraseFromParent();
/external/llvm/utils/TableGen/
H A DFixedLenDecoderEmitter.cpp375 BitsInit &Bits = getBitsField(*AllInstructions[Opcode]->TheDef, "Inst");
378 // may differ from the value in "Inst" and yet still be valid, but the
429 // Inst{20} = 1 && Inst{3-0} == 0b1111 represents two islands of yet-to-be
750 << Len << ", // Inst{";
995 getBitsField(*AllInstructions[Opcodes[i]]->TheDef, "Inst"));
1002 // Inst{20} = 1 && Inst{3-0} == 0b1111 represents two islands of yet-to-be
1243 BitsInit *InstBits = AllInstructions[Opc]->TheDef->getValueAsBitsInit("Inst");
1266 << " is set but Inst{" <<
[all...]
H A DCodeGenDAGPatterns.cpp1602 const DAGInstruction &Inst = CDP.getInstruction(getOperator()); local
1613 MadeChange |= UpdateNodeTypeFromInst(ResNo, Inst.getResult(ResNo), TP);
1638 for (unsigned i = 0, e = Inst.getNumOperands(); i != e; ++i) {
1639 Record *OperandNode = Inst.getOperand(i);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp1491 if (const Instruction *Inst = dyn_cast<Instruction>(PHIOp))
1492 DL = Inst->getDebugLoc();

Completed in 3095 milliseconds

1234567