Home
last modified time | relevance | path

Searched refs:IsWeak (Results 1 – 11 of 11) sorted by relevance

/external/clang/lib/CodeGen/
DCGAtomic.cpp216 bool IsWeak = false);
247 bool IsWeak = false);
338 static void emitAtomicCmpXchg(CodeGenFunction &CGF, AtomicExpr *E, bool IsWeak, in emitAtomicCmpXchg() argument
353 Pair->setWeak(IsWeak); in emitAtomicCmpXchg()
391 bool IsWeak, llvm::Value *Dest, in emitAtomicCmpXchgFailureSet() argument
416 emitAtomicCmpXchg(CGF, E, IsWeak, Dest, Ptr, Val1, Val2, Size, Align, in emitAtomicCmpXchgFailureSet()
440 emitAtomicCmpXchg(CGF, E, IsWeak, Dest, Ptr, Val1, Val2, in emitAtomicCmpXchgFailureSet()
446 emitAtomicCmpXchg(CGF, E, IsWeak, Dest, Ptr, Val1, Val2, in emitAtomicCmpXchgFailureSet()
456 emitAtomicCmpXchg(CGF, E, IsWeak, Dest, Ptr, Val1, Val2, in emitAtomicCmpXchgFailureSet()
468 llvm::Value *IsWeak, llvm::Value *FailureOrder, in EmitAtomicOp() argument
[all …]
DCodeGenFunction.h2230 bool IsWeak = false, AggValueSlot Slot = AggValueSlot::ignored());
/external/v8/src/
Dglobal-handles.cc154 bool IsWeak() const { return state() == WEAK; } in IsWeak() function in v8::internal::GlobalHandles::Node
510 bool GlobalHandles::IsWeak(Object** location) { in IsWeak() function in v8::internal::GlobalHandles
511 return Node::FromLocation(location)->IsWeak(); in IsWeak()
524 if (it.node()->IsWeak() && f(it.node()->location())) { in IdentifyWeakHandles()
549 node->IsWeak() && f(isolate_->heap(), node->location())) { in IdentifyNewSpaceWeakIndependentHandles()
808 it.node()->IsWeak() ? " (weak)" : ""); in Print()
Dglobal-handles.h154 static bool IsWeak(Object** location);
/external/v8/test/cctest/
Dtest-weaksets.cc98 CHECK(!global_handles->IsWeak(key.location())); in TEST()
124 CHECK(global_handles->IsWeak(key.location())); in TEST()
Dtest-weakmaps.cc98 CHECK(!global_handles->IsWeak(key.location())); in TEST()
124 CHECK(global_handles->IsWeak(key.location())); in TEST()
Dtest-api.cc3690 if (map.IsWeak()) { in TestPersistentValueMap()
4060 CHECK(g1s1.handle.IsWeak()); in THREADED_TEST()
4061 CHECK(g1s2.handle.IsWeak()); in THREADED_TEST()
4067 CHECK(g2s1.handle.IsWeak()); in THREADED_TEST()
4068 CHECK(g2s2.handle.IsWeak()); in THREADED_TEST()
4074 CHECK(g3s1.handle.IsWeak()); in THREADED_TEST()
4075 CHECK(g3s2.handle.IsWeak()); in THREADED_TEST()
4081 CHECK(g4s1.handle.IsWeak()); in THREADED_TEST()
4082 CHECK(g4s2.handle.IsWeak()); in THREADED_TEST()
/external/v8/include/
Dv8-util.h135 bool IsWeak() { return Traits::kCallbackType != kNotWeak; } in IsWeak() function
341 if (Traits::kCallbackType != kNotWeak && p.IsWeak()) { in Release()
Dv8.h544 V8_INLINE bool IsWeak() const;
6049 bool PersistentBase<T>::IsWeak() const {
/external/clang/lib/Sema/
DSemaExprObjC.cpp2730 bool IsWeak = in BuildInstanceMessage() local
2732 if (!IsWeak && Sel.isUnarySelector()) in BuildInstanceMessage()
2733 IsWeak = ReturnType.getObjCLifetime() & Qualifiers::OCL_Weak; in BuildInstanceMessage()
2734 if (IsWeak && in BuildInstanceMessage()
/external/llvm/include/llvm/IR/
DInstructions.h527 void setWeak(bool IsWeak) {
529 (IsWeak << 8));