/external/v8/test/cctest/ |
D | test-feedback-vector.cc | 213 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/ |
D | type-info.cc | 80 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 …]
|
D | type-feedback-vector.cc | 197 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 …]
|
D | objects-printer.cc | 611 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/ |
D | ic.h | 29 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 …]
|
D | ic.cc | 94 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/ |
D | README.dev | 20 <id>sonatype-nexus-snapshots</id> 25 <id>sonatype-nexus-staging</id>
|
D | build.gradle | 24 classpath "io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.5.3"
|
/external/v8/src/compiler/ |
D | js-native-context-specialization.cc | 454 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 …]
|
D | js-inlining-heuristic.cc | 82 CallICNexus nexus(p.feedback().vector(), p.feedback().slot()); in Reduce() local 83 calls = nexus.ExtractCallCount(); in Reduce()
|
D | js-call-reducer.cc | 32 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()
|
D | js-native-context-specialization.h | 64 FeedbackNexus const& nexus,
|
/external/owasp/sanitizer/tools/ |
D | stage_to_maven_central.sh | 89 -DrepositoryId=sonatype-nexus-staging \
|
/external/testng/gradle/ |
D | publishing-maven.gradle | 8 apply plugin: 'io.codearte.nexus-staging'
|
/external/v8/test/cctest/heap/ |
D | test-heap.cc | 3671 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/ |
D | BUILD.txt | 257 <id>sonatype-nexus-snapshots</id> 262 <id>sonatype-nexus-staging</id>
|
/external/v8/src/crankshaft/ |
D | hydrogen.cc | 7622 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/ |
D | ChangeLog-CVS | 2465 2004-09-05 Phil Blundell <pb@nexus.co.uk>
|