OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Store1
(Results
1 - 4
of
4
) sorted by null
/external/llvm/unittests/Analysis/
MixedTBAATest.cpp
45
auto *
Store1
= new StoreInst(Value, Addr, BB);
63
Store1
->setMetadata(LLVMContext::MD_tbaa, MD2);
AliasAnalysisTest.cpp
180
auto *
Store1
= new StoreInst(Value, Addr, BB);
196
EXPECT_EQ(AA.getModRefInfo(
Store1
, MemoryLocation()), MRI_Mod);
197
EXPECT_EQ(AA.getModRefInfo(
Store1
), MRI_Mod);
/external/llvm/lib/Transforms/Scalar/
MergedLoadStoreMotion.cpp
421
StoreInst *
Store1
= cast<StoreInst>(Inst);
424
MemoryLocation Loc1 = MemoryLocation::get(
Store1
);
425
if (AA->isMustAlias(Loc0, Loc1) && Store0->isSameOperationAs(
Store1
) &&
426
!isStoreSinkBarrierInRange(*(std::next(BasicBlock::iterator(
Store1
))),
430
return
Store1
;
/external/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp
419
SDValue
Store1
, Store2;
420
Store1
= DAG.getTruncStore(Chain, dl,
435
DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Store1
, Store2);
[
all
...]
Completed in 741 milliseconds