Home
last modified time | relevance | path

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

/external/clang/lib/CodeGen/
DCGAtomic.cpp228 bool IsWeak = false);
270 bool IsWeak = false);
376 static void emitAtomicCmpXchg(CodeGenFunction &CGF, AtomicExpr *E, bool IsWeak, in emitAtomicCmpXchg() argument
389 Pair->setWeak(IsWeak); in emitAtomicCmpXchg()
425 bool IsWeak, Address Dest, in emitAtomicCmpXchgFailureSet() argument
450 emitAtomicCmpXchg(CGF, E, IsWeak, Dest, Ptr, Val1, Val2, Size, in emitAtomicCmpXchgFailureSet()
474 emitAtomicCmpXchg(CGF, E, IsWeak, Dest, Ptr, Val1, Val2, in emitAtomicCmpXchgFailureSet()
480 emitAtomicCmpXchg(CGF, E, IsWeak, Dest, Ptr, Val1, Val2, in emitAtomicCmpXchgFailureSet()
490 emitAtomicCmpXchg(CGF, E, IsWeak, Dest, Ptr, Val1, Val2, in emitAtomicCmpXchgFailureSet()
502 llvm::Value *IsWeak, llvm::Value *FailureOrder, in EmitAtomicOp() argument
[all …]
DCodeGenFunction.h2449 bool IsWeak = false, AggValueSlot Slot = AggValueSlot::ignored());
/external/v8/src/
Dglobal-handles.cc193 bool IsWeak() const { return state() == WEAK; } in IsWeak() function in v8::internal::GlobalHandles::Node
661 bool GlobalHandles::IsWeak(Object** location) { in IsWeak() function in v8::internal::GlobalHandles
662 return Node::FromLocation(location)->IsWeak(); in IsWeak()
686 if (it.node()->IsWeak() && f(it.node()->location())) { in IdentifyWeakHandles()
719 node->IsWeak() && f(isolate_->heap(), node->location())) { in IdentifyNewSpaceWeakIndependentHandles()
751 if (node->IsWeak() && !is_unmodified(node->location())) { in IdentifyWeakUnmodifiedObjects()
763 if ((node->is_independent() || !node->is_active()) && node->IsWeak() && in MarkNewSpaceWeakUnmodifiedObjectsPending()
1182 if (node->has_wrapper_class_id() && node->IsWeak()) { in IterateWeakRootsInNewSpaceWithClassIds()
1265 it.node()->IsWeak() ? " (weak)" : ""); in Print()
Dglobal-handles.h179 static bool IsWeak(Object** location);
/external/v8/test/cctest/
Dtest-weaksets.cc86 CHECK(!global_handles->IsWeak(key.location())); in TEST()
112 CHECK(global_handles->IsWeak(key.location())); in TEST()
Dtest-weakmaps.cc83 CHECK(!global_handles->IsWeak(key.location())); in TEST()
113 CHECK(global_handles->IsWeak(key.location())); in TEST()
Dtest-api.cc4250 if (map.IsWeak()) { in TestGlobalValueMap()
4655 CHECK(g1s1.handle.IsWeak()); in THREADED_TEST()
4656 CHECK(g1s2.handle.IsWeak()); in THREADED_TEST()
4664 CHECK(g2s1.handle.IsWeak()); in THREADED_TEST()
4665 CHECK(g2s2.handle.IsWeak()); in THREADED_TEST()
4673 CHECK(g3s1.handle.IsWeak()); in THREADED_TEST()
4674 CHECK(g3s2.handle.IsWeak()); in THREADED_TEST()
4682 CHECK(g4s1.handle.IsWeak()); in THREADED_TEST()
4683 CHECK(g4s2.handle.IsWeak()); in THREADED_TEST()
/external/v8/include/
Dv8-util.h173 bool IsWeak() { return Traits::kCallbackType != kNotWeak; }
330 if (Traits::kCallbackType != kNotWeak && p.IsWeak()) {
Dv8.h603 V8_INLINE bool IsWeak() const;
7754 bool PersistentBase<T>::IsWeak() const {
/external/clang/lib/Sema/
DSemaExprObjC.cpp2981 bool IsWeak = in BuildInstanceMessage() local
2983 if (!IsWeak && Sel.isUnarySelector()) in BuildInstanceMessage()
2984 IsWeak = ReturnType.getObjCLifetime() & Qualifiers::OCL_Weak; in BuildInstanceMessage()
2985 if (IsWeak && in BuildInstanceMessage()
/external/llvm/include/llvm/IR/
DInstructions.h565 void setWeak(bool IsWeak) {
567 (IsWeak << 8));