Home
last modified time | relevance | path

Searched refs:SynchScope (Results 1 – 10 of 10) sorted by relevance

/external/llvm/include/llvm/
DInstructions.h153 SynchronizationScope SynchScope = CrossThread,
157 SynchronizationScope SynchScope,
213 SynchronizationScope SynchScope = CrossThread) {
215 setSynchScope(SynchScope);
276 SynchronizationScope SynchScope = CrossThread,
280 SynchronizationScope SynchScope,
333 SynchronizationScope SynchScope = CrossThread) {
335 setSynchScope(SynchScope);
384 void Init(AtomicOrdering Ordering, SynchronizationScope SynchScope);
396 SynchronizationScope SynchScope = CrossThread,
[all …]
/external/llvm/include/llvm/CodeGen/
DSelectionDAGNodes.h994 void InitAtomic(AtomicOrdering Ordering, SynchronizationScope SynchScope) {
998 assert((SynchScope & 1) == SynchScope &&
1001 SubclassData |= SynchScope << 12;
1003 assert(getSynchScope() == SynchScope && "Synch-scope encoding error!");
1023 AtomicOrdering Ordering, SynchronizationScope SynchScope)
1025 InitAtomic(Ordering, SynchScope);
1031 AtomicOrdering Ordering, SynchronizationScope SynchScope)
1033 InitAtomic(Ordering, SynchScope);
1039 AtomicOrdering Ordering, SynchronizationScope SynchScope)
1041 InitAtomic(Ordering, SynchScope);
DSelectionDAG.h597 SynchronizationScope SynchScope);
602 SynchronizationScope SynchScope);
609 SynchronizationScope SynchScope);
613 SynchronizationScope SynchScope);
621 SynchronizationScope SynchScope);
625 SynchronizationScope SynchScope);
/external/llvm/lib/VMCore/
DInstructions.cpp971 SynchronizationScope SynchScope, in LoadInst() argument
977 setAtomic(Order, SynchScope); in LoadInst()
984 SynchronizationScope SynchScope, in LoadInst() argument
990 setAtomic(Order, SynchScope); in LoadInst()
1118 SynchronizationScope SynchScope, in StoreInst() argument
1128 setAtomic(Order, SynchScope); in StoreInst()
1162 SynchronizationScope SynchScope, in StoreInst() argument
1172 setAtomic(Order, SynchScope); in StoreInst()
1191 SynchronizationScope SynchScope) { in Init() argument
1196 setSynchScope(SynchScope); in Init()
[all …]
DAsmWriter.cpp1150 void writeAtomic(AtomicOrdering Ordering, SynchronizationScope SynchScope);
1182 SynchronizationScope SynchScope) { in writeAtomic() argument
1186 switch (SynchScope) { in writeAtomic()
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp2477 SynchronizationScope SynchScope = GetDecodedSynchScope(Record[OpNum+3]); in ParseFunctionBody() local
2480 Ordering, SynchScope); in ParseFunctionBody()
2511 SynchronizationScope SynchScope = GetDecodedSynchScope(Record[OpNum+3]); in ParseFunctionBody() local
2516 Ordering, SynchScope); in ParseFunctionBody()
2534 SynchronizationScope SynchScope = GetDecodedSynchScope(Record[OpNum+2]); in ParseFunctionBody() local
2535 I = new AtomicCmpXchgInst(Ptr, Cmp, New, Ordering, SynchScope); in ParseFunctionBody()
2556 SynchronizationScope SynchScope = GetDecodedSynchScope(Record[OpNum+3]); in ParseFunctionBody() local
2557 I = new AtomicRMWInst(Operation, Ptr, Val, Ordering, SynchScope); in ParseFunctionBody()
2569 SynchronizationScope SynchScope = GetDecodedSynchScope(Record[1]); in ParseFunctionBody() local
2570 I = new FenceInst(Context, Ordering, SynchScope); in ParseFunctionBody()
/external/llvm/include/llvm/Support/
DIRBuilder.h799 SynchronizationScope SynchScope = CrossThread) {
800 return Insert(new FenceInst(Context, Ordering, SynchScope));
804 SynchronizationScope SynchScope = CrossThread) {
805 return Insert(new AtomicCmpXchgInst(Ptr, Cmp, New, Ordering, SynchScope));
809 SynchronizationScope SynchScope = CrossThread) {
810 return Insert(new AtomicRMWInst(Op, Ptr, Val, Ordering, SynchScope));
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp3842 SynchronizationScope SynchScope) { in getAtomic() argument
3858 Ordering, SynchScope); in getAtomic()
3866 SynchronizationScope SynchScope) { in getAtomic() argument
3884 SynchScope); in getAtomic()
3896 SynchronizationScope SynchScope) { in getAtomic() argument
3918 Ordering, SynchScope); in getAtomic()
3926 SynchronizationScope SynchScope) { in getAtomic() argument
3956 Ordering, SynchScope); in getAtomic()
3968 SynchronizationScope SynchScope) { in getAtomic() argument
3989 Ordering, SynchScope); in getAtomic()
[all …]
/external/llvm/lib/Target/CppBackend/
DCPPBackend.cpp1052 static StringRef ConvertAtomicSynchScope(SynchronizationScope SynchScope) { in ConvertAtomicSynchScope() argument
1053 switch (SynchScope) { in ConvertAtomicSynchScope()
/external/llvm/lib/Bitcode/Writer/
DBitcodeWriter.cpp140 static unsigned GetEncodedSynchScope(SynchronizationScope SynchScope) { in GetEncodedSynchScope() argument
141 switch (SynchScope) { in GetEncodedSynchScope()