Home
last modified time | relevance | path

Searched refs:nexus (Results 1 – 18 of 18) sorted by relevance

/external/v8/test/cctest/
Dtest-feedback-vector.cc213 CallICNexus nexus(feedback_vector, slot); in TEST() local
214 CHECK_EQ(MONOMORPHIC, nexus.StateFromFeedback()); in TEST()
216 CHECK(!nexus.FindFirstMap()); in TEST()
219 CHECK_EQ(GENERIC, nexus.StateFromFeedback()); in TEST()
223 CHECK_EQ(GENERIC, nexus.StateFromFeedback()); in TEST()
227 nexus.Clear(f->shared()->code()); in TEST()
229 CHECK_EQ(MONOMORPHIC, nexus.StateFromFeedback()); in TEST()
230 CHECK(nexus.GetFeedback()->IsAllocationSite()); in TEST()
233 CHECK_EQ(MONOMORPHIC, nexus.StateFromFeedback()); in TEST()
254 LoadICNexus nexus(feedback_vector, slot); in TEST() local
[all …]
/external/v8/src/
Dtype-info.cc80 LoadICNexus nexus(feedback_vector_, slot); in LoadInlineCacheState() local
81 return nexus.StateFromFeedback(); in LoadInlineCacheState()
83 KeyedLoadICNexus nexus(feedback_vector_, slot); in LoadInlineCacheState() local
84 return nexus.StateFromFeedback(); in LoadInlineCacheState()
98 StoreICNexus nexus(feedback_vector_, slot); in StoreIsUninitialized() local
99 return nexus.StateFromFeedback() == UNINITIALIZED; in StoreIsUninitialized()
101 KeyedStoreICNexus nexus(feedback_vector_, slot); in StoreIsUninitialized() local
102 return nexus.StateFromFeedback() == UNINITIALIZED; in StoreIsUninitialized()
144 KeyedStoreICNexus nexus(feedback_vector_, slot); in GetStoreModeAndKeyType() local
145 *store_mode = nexus.GetKeyedAccessStoreMode(); in GetStoreModeAndKeyType()
[all …]
Dtype-feedback-vector.cc197 CallICNexus nexus(this, slot); in ClearSlotsImpl() local
198 nexus.Clear(shared->code()); in ClearSlotsImpl()
202 LoadICNexus nexus(this, slot); in ClearSlotsImpl() local
203 nexus.Clear(shared->code()); in ClearSlotsImpl()
207 KeyedLoadICNexus nexus(this, slot); in ClearSlotsImpl() local
208 nexus.Clear(shared->code()); in ClearSlotsImpl()
212 StoreICNexus nexus(this, slot); in ClearSlotsImpl() local
213 nexus.Clear(shared->code()); in ClearSlotsImpl()
217 KeyedStoreICNexus nexus(this, slot); in ClearSlotsImpl() local
218 nexus.Clear(shared->code()); in ClearSlotsImpl()
[all …]
Dobjects-printer.cc611 LoadICNexus nexus(this, slot); in TypeFeedbackVectorPrint() local
612 os << Code::ICState2String(nexus.StateFromFeedback()); in TypeFeedbackVectorPrint()
616 KeyedLoadICNexus nexus(this, slot); in TypeFeedbackVectorPrint() local
617 os << Code::ICState2String(nexus.StateFromFeedback()); in TypeFeedbackVectorPrint()
621 CallICNexus nexus(this, slot); in TypeFeedbackVectorPrint() local
622 os << Code::ICState2String(nexus.StateFromFeedback()); in TypeFeedbackVectorPrint()
626 StoreICNexus nexus(this, slot); in TypeFeedbackVectorPrint() local
627 os << Code::ICState2String(nexus.StateFromFeedback()); in TypeFeedbackVectorPrint()
631 KeyedStoreICNexus nexus(this, slot); in TypeFeedbackVectorPrint() local
632 os << Code::ICState2String(nexus.StateFromFeedback()); in TypeFeedbackVectorPrint()
/external/v8/src/ic/
Dic.h29 IC(FrameDepth depth, Isolate* isolate, FeedbackNexus* nexus = NULL);
73 static bool IsCleared(FeedbackNexus* nexus) { in IsCleared() argument
74 InlineCacheState state = nexus->StateFromFeedback(); in IsCleared()
207 Handle<TypeFeedbackVector> vector() const { return nexus()->vector_handle(); } in vector()
208 FeedbackVectorSlot slot() const { return nexus()->slot(); } in slot()
217 FeedbackNexus* nexus() const { return nexus_; } in nexus() function
230 nexus()->ExtractMaps(&target_maps_); in FindTargetMaps()
278 CallIC(Isolate* isolate, CallICNexus* nexus) in CallIC() argument
279 : IC(EXTRA_CALL_FRAME, isolate, nexus) { in CallIC()
280 DCHECK(nexus != NULL); in CallIC()
[all …]
Dic.cc94 UseVector() ? nexus()->StateFromFeedback() : raw_target()->ic_state(); in TraceIC()
142 IC::IC(FrameDepth depth, Isolate* isolate, FeedbackNexus* nexus) in IC() argument
147 nexus_(nexus) { in IC()
185 state_ = UseVector() ? nexus->StateFromFeedback() : target_->ic_state(); in IC()
261 maybe_handler_ = nexus()->FindHandlerForMap(receiver_map()); in TryRemoveInvalidPrototypeDependentStub()
312 UseVector() ? nexus()->FindFirstName() : target()->FindFirstName(); in IsNameCompatibleWithPrototypeFailure()
479 void KeyedLoadIC::Clear(Isolate* isolate, Code* host, KeyedLoadICNexus* nexus) { in Clear() argument
480 if (IsCleared(nexus)) return; in Clear()
484 nexus->ConfigurePremonomorphic(); in Clear()
489 void CallIC::Clear(Isolate* isolate, Code* host, CallICNexus* nexus) { in Clear() argument
[all …]
/external/testng/
DREADME.dev20 <id>sonatype-nexus-snapshots</id>
25 <id>sonatype-nexus-staging</id>
Dbuild.gradle24 classpath "io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.5.3"
/external/v8/src/compiler/
Djs-native-context-specialization.cc454 LoadICNexus nexus(p.feedback().vector(), p.feedback().slot()); in ReduceJSLoadNamed() local
455 if (nexus.ExtractMaps(&receiver_maps) == 0) return NoChange(); in ReduceJSLoadNamed()
472 StoreICNexus nexus(p.feedback().vector(), p.feedback().slot()); in ReduceJSStoreNamed() local
473 if (nexus.ExtractMaps(&receiver_maps) == 0) return NoChange(); in ReduceJSStoreNamed()
879 Node* node, Node* index, Node* value, FeedbackNexus const& nexus, in ReduceKeyedAccess() argument
887 if (nexus.ExtractMaps(&receiver_maps) == 0) return NoChange(); in ReduceKeyedAccess()
912 if (Name* name = nexus.FindFirstName()) { in ReduceKeyedAccess()
932 KeyedLoadICNexus nexus(p.feedback().vector(), p.feedback().slot()); in ReduceJSLoadProperty() local
935 return ReduceKeyedAccess(node, index, value, nexus, AccessMode::kLoad, in ReduceJSLoadProperty()
948 KeyedStoreICNexus nexus(p.feedback().vector(), p.feedback().slot()); in ReduceJSStoreProperty() local
[all …]
Djs-inlining-heuristic.cc82 CallICNexus nexus(p.feedback().vector(), p.feedback().slot()); in Reduce() local
83 calls = nexus.ExtractCallCount(); in Reduce()
Djs-call-reducer.cc32 CallICNexus nexus(vector, slot); in CallCountFeedback() local
33 nexus.ConfigureMegamorphic(call_count); in CallCountFeedback()
62 CallICNexus nexus(p.feedback().vector(), p.feedback().slot()); in ReduceArrayConstructor() local
63 Handle<Object> feedback(nexus.GetFeedback(), isolate()); in ReduceArrayConstructor()
309 CallICNexus nexus(p.feedback().vector(), p.feedback().slot()); in ReduceJSCallFunction() local
310 Handle<Object> feedback(nexus.GetFeedback(), isolate()); in ReduceJSCallFunction()
Djs-native-context-specialization.h64 FeedbackNexus const& nexus,
/external/owasp/sanitizer/tools/
Dstage_to_maven_central.sh89 -DrepositoryId=sonatype-nexus-staging \
/external/testng/gradle/
Dpublishing-maven.gradle8 apply plugin: 'io.codearte.nexus-staging'
/external/v8/test/cctest/heap/
Dtest-heap.cc3671 LoadICNexus nexus(vector, slot); in CheckVectorIC() local
3672 CHECK(nexus.StateFromFeedback() == desired_state); in CheckVectorIC()
3675 KeyedLoadICNexus nexus(vector, slot); in CheckVectorIC() local
3676 CHECK(nexus.StateFromFeedback() == desired_state); in CheckVectorIC()
3685 LoadICNexus nexus(vector, slot); in CheckVectorICCleared() local
3686 CHECK(IC::IsCleared(&nexus)); in CheckVectorICCleared()
5265 LoadICNexus nexus(vector, slot); in CheckIC() local
5266 CHECK_EQ(nexus.StateFromFeedback(), state); in CheckIC()
5268 KeyedLoadICNexus nexus(vector, slot); in CheckIC() local
5269 CHECK_EQ(nexus.StateFromFeedback(), state); in CheckIC()
[all …]
/external/antlr/antlr-3.4/
DBUILD.txt257 <id>sonatype-nexus-snapshots</id>
262 <id>sonatype-nexus-staging</id>
/external/v8/src/crankshaft/
Dhydrogen.cc7622 KeyedLoadICNexus nexus(vector, slot); in HandleKeyedElementAccess() local
7623 name = nexus.FindFirstName(); in HandleKeyedElementAccess()
7625 KeyedStoreICNexus nexus(vector, slot); in HandleKeyedElementAccess() local
7626 name = nexus.FindFirstName(); in HandleKeyedElementAccess()
/external/strace/
DChangeLog-CVS2465 2004-09-05 Phil Blundell <pb@nexus.co.uk>