HomeSort by relevance Sort by last modified time
    Searched refs:StoreInst (Results 26 - 50 of 86) sorted by null

12 3 4

  /external/llvm/tools/llvm-diff/
DiffConsumer.cpp 55 if (isa<StoreInst>(V)) {
57 printValue(cast<StoreInst>(V)->getPointerOperand(), isL);
  /external/llvm/lib/CodeGen/
SjLjEHPrepare.cpp 236 new StoreInst(PersonalityFn, PersonalityFieldPtr, true,
245 new StoreInst(LSDA, LSDAFieldPtr, true, EntryBB->getTerminator());
440 new StoreInst(Val, FramePtr, true, EntryBB->getTerminator());
448 new StoreInst(Val, StackPtr, true, EntryBB->getTerminator());
509 Instruction *StoreStackAddr = new StoreInst(StackAddr, StackPtr, true);
  /external/llvm/lib/Transforms/Scalar/
LICM.cpp 648 Ptr = cast<StoreInst>(I)->getPointerOperand();
661 StoreInst *NewSI = new StoreInst(LiveInValue, SomePtr, InsertPos);
742 } else if (StoreInst *store = dyn_cast<StoreInst>(Use)) {
EarlyCSE.cpp 367 StoreInst *LastStore = 0;
473 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
CorrelatedValuePropagation.cpp 126 Pointer = cast<StoreInst>(I)->getPointerOperand();
GVN.cpp 905 StoreInst *DepSI,
    [all...]
SCCP.cpp 489 void visitStoreInst (StoreInst &I);
    [all...]
CodeGenPrepare.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 311 if (const StoreInst *SI = dyn_cast<StoreInst>(I1))
312 return SI->isVolatile() == cast<StoreInst>(I2)->isVolatile() &&
313 SI->getAlignment() == cast<StoreInst>(I2)->getAlignment() &&
314 SI->getOrdering() == cast<StoreInst>(I2)->getOrdering() &&
315 SI->getSynchScope() == cast<StoreInst>(I2)->getSynchScope();
FunctionAttrs.cpp 173 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
  /external/llvm/include/llvm/
Instructions.h 250 // StoreInst Class
253 /// StoreInst - an instruction for storing to memory
255 class StoreInst : public Instruction {
259 virtual StoreInst *clone_impl() const;
265 StoreInst(Value *Val, Value *Ptr, Instruction *InsertBefore);
266 StoreInst(Value *Val, Value *Ptr, BasicBlock *InsertAtEnd);
267 StoreInst(Value *Val, Value *Ptr, bool isVolatile = false,
269 StoreInst(Value *Val, Value *Ptr, bool isVolatile, BasicBlock *InsertAtEnd);
270 StoreInst(Value *Val, Value *Ptr, bool isVolatile,
272 StoreInst(Value *Val, Value *Ptr, bool isVolatile
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.h 67 class StoreInst;
527 void visitStore(const StoreInst &I);
535 void visitAtomicStore(const StoreInst &I);
  /external/llvm/lib/Analysis/
AliasAnalysis.cpp 228 AliasAnalysis::Location AliasAnalysis::getLocation(const StoreInst *SI) {
298 AliasAnalysis::getModRefInfo(const StoreInst *S, const Location &Loc) {
MemoryDependenceAnalysis.cpp 136 if (const StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
525 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombine.h 193 Instruction *visitStoreInst(StoreInst &SI);
362 bool SimplifyStoreAtEndOfBlock(StoreInst &SI);
InstCombineCalls.cpp 115 StoreInst *S = Builder->CreateStore(L, Dest, MI->isVolatile());
156 StoreInst *S = Builder->CreateStore(ConstantInt::get(ITy, Fill), Dest,
561 return new StoreInst(II->getArgOperand(0), Ptr);
572 return new StoreInst(II->getArgOperand(1), Ptr);
    [all...]
  /external/llvm/lib/Transforms/Utils/
AddrModeMatcher.cpp 427 if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
CodeExtractor.cpp 425 StoreInst *SI = new StoreInst(StructValues[i], GEP);
566 new StoreInst(outputs[out], GEP, NTRet);
568 new StoreInst(outputs[out], OAI, NTRet);
Local.cpp 792 StoreInst *SI, DIBuilder &Builder) {
    [all...]
  /external/clang/lib/CodeGen/
CGCleanup.cpp 291 new llvm::StoreInst(CGF.Builder.getInt32(Fixup.DestinationIndex),
774 new llvm::StoreInst(Builder.getInt32(Fixup.DestinationIndex),
    [all...]
CGCall.cpp 644 llvm::StoreInst *Store =
664 llvm::StoreInst *SI = CGF.Builder.CreateStore(Elt, EltPtr,
670 llvm::StoreInst *SI = CGF.Builder.CreateStore(Val, DestPtr, DestIsVolatile);
    [all...]
  /external/llvm/include/llvm/Support/
InstVisitor.h 171 RetTy visitStoreInst(StoreInst &I) { DELEGATE(Instruction);}
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 151 void visitStoreInst(StoreInst &I);
  /external/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp 296 return cast<StoreInst>(*I).getPointerOperand();
300 int IsWrite = isa<StoreInst>(*I);
657 (isa<StoreInst>(BI) && ClInstrumentWrites)) {
685 if (isa<StoreInst>(Inst) || isa<LoadInst>(Inst))
    [all...]
ProfilingUtils.cpp 129 new StoreInst(NewVal, ElementPtr, InsertPos);

Completed in 2819 milliseconds

12 3 4