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.cc194 bool IsWeak() const { return state() == WEAK; } in IsWeak() function in v8::internal::GlobalHandles::Node
643 bool GlobalHandles::IsWeak(Object** location) { in IsWeak() function in v8::internal::GlobalHandles
644 return Node::FromLocation(location)->IsWeak(); in IsWeak()
667 if (it.node()->IsWeak() && f(it.node()->location())) { in IdentifyWeakHandles()
700 node->IsWeak() && f(isolate_->heap(), node->location())) { in IdentifyNewSpaceWeakIndependentHandles()
730 if (node->IsWeak() && !is_unmodified(node->location())) { in IdentifyWeakUnmodifiedObjects()
742 if ((node->is_independent() || !node->is_active()) && node->IsWeak() && in MarkNewSpaceWeakUnmodifiedObjectsPending()
1054 if (node->has_wrapper_class_id() && node->IsWeak()) { in IterateWeakRootsInNewSpaceWithClassIds()
1137 it.node()->IsWeak() ? " (weak)" : ""); in Print()
Dglobal-handles.h180 static bool IsWeak(Object** location);
/external/v8/test/cctest/
Dtest-weaksets.cc87 CHECK(!global_handles->IsWeak(key.location())); in TEST()
113 CHECK(global_handles->IsWeak(key.location())); in TEST()
Dtest-weakmaps.cc84 CHECK(!global_handles->IsWeak(key.location())); in TEST()
114 CHECK(global_handles->IsWeak(key.location())); in TEST()
Dtest-api.cc3942 if (map.IsWeak()) { in TestGlobalValueMap()
4347 CHECK(g1s1.handle.IsWeak()); in THREADED_TEST()
4348 CHECK(g1s2.handle.IsWeak()); in THREADED_TEST()
4356 CHECK(g2s1.handle.IsWeak()); in THREADED_TEST()
4357 CHECK(g2s2.handle.IsWeak()); in THREADED_TEST()
4365 CHECK(g3s1.handle.IsWeak()); in THREADED_TEST()
4366 CHECK(g3s2.handle.IsWeak()); in THREADED_TEST()
4374 CHECK(g4s1.handle.IsWeak()); in THREADED_TEST()
4375 CHECK(g4s2.handle.IsWeak()); in THREADED_TEST()
/external/v8/include/
Dv8-util.h173 bool IsWeak() { return Traits::kCallbackType != kNotWeak; }
319 if (Traits::kCallbackType != kNotWeak && p.IsWeak()) {
Dv8.h626 V8_INLINE bool IsWeak() const;
7351 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));