Home
last modified time | relevance | path

Searched refs:nexus (Results 1 – 22 of 22) 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()
252 CallICNexus 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.cc313 CallICNexus nexus(this, slot); in ClearSlotsImpl() local
314 nexus.Clear(shared->code()); in ClearSlotsImpl()
318 LoadICNexus nexus(this, slot); in ClearSlotsImpl() local
319 nexus.Clear(shared->code()); in ClearSlotsImpl()
323 LoadGlobalICNexus nexus(this, slot); in ClearSlotsImpl() local
324 nexus.Clear(shared->code()); in ClearSlotsImpl()
328 KeyedLoadICNexus nexus(this, slot); in ClearSlotsImpl() local
329 nexus.Clear(shared->code()); in ClearSlotsImpl()
333 StoreICNexus nexus(this, slot); in ClearSlotsImpl() local
334 nexus.Clear(shared->code()); in ClearSlotsImpl()
[all …]
Dobjects-printer.cc675 LoadICNexus nexus(this, slot); in TypeFeedbackVectorPrint() local
676 os << Code::ICState2String(nexus.StateFromFeedback()); in TypeFeedbackVectorPrint()
680 LoadGlobalICNexus nexus(this, slot); in TypeFeedbackVectorPrint() local
681 os << Code::ICState2String(nexus.StateFromFeedback()); in TypeFeedbackVectorPrint()
685 KeyedLoadICNexus nexus(this, slot); in TypeFeedbackVectorPrint() local
686 os << Code::ICState2String(nexus.StateFromFeedback()); in TypeFeedbackVectorPrint()
690 CallICNexus nexus(this, slot); in TypeFeedbackVectorPrint() local
691 os << Code::ICState2String(nexus.StateFromFeedback()); in TypeFeedbackVectorPrint()
695 StoreICNexus nexus(this, slot); in TypeFeedbackVectorPrint() local
696 os << Code::ICState2String(nexus.StateFromFeedback()); in TypeFeedbackVectorPrint()
[all …]
Dtype-info.h59 void CollectReceiverTypes(FeedbackNexus* nexus, SmallMapList* types);
100 void CollectReceiverTypes(FeedbackNexus* nexus, Handle<Name> name,
/external/v8/src/ic/
Dic.h29 IC(FrameDepth depth, Isolate* isolate, FeedbackNexus* nexus = NULL);
67 static bool IsCleared(FeedbackNexus* nexus) { in IsCleared() argument
68 InlineCacheState state = nexus->StateFromFeedback(); in IsCleared()
194 Handle<TypeFeedbackVector> vector() const { return nexus()->vector_handle(); } in vector()
195 FeedbackVectorSlot slot() const { return nexus()->slot(); } in slot()
204 FeedbackNexus* nexus() const { return nexus_; } in nexus() function
217 nexus()->ExtractMaps(&target_maps_); in FindTargetMaps()
254 CallIC(Isolate* isolate, CallICNexus* nexus) in CallIC() argument
255 : IC(EXTRA_CALL_FRAME, isolate, nexus) { in CallIC()
256 DCHECK(nexus != NULL); in CallIC()
[all …]
Dic.cc92 State new_state = nexus()->StateFromFeedback(); in TraceIC()
138 IC::IC(FrameDepth depth, Isolate* isolate, FeedbackNexus* nexus) in IC() argument
142 nexus_(nexus) { in IC()
180 state_ = UseVector() ? nexus->StateFromFeedback() : StateFromCode(target); in IC()
276 maybe_handler_ = nexus()->FindHandlerForMap(receiver_map()); in ShouldRecomputeHandler()
305 Name* stub_name = nexus()->FindFirstName(); in RecomputeHandlerForName()
438 void KeyedLoadIC::Clear(Isolate* isolate, Code* host, KeyedLoadICNexus* nexus) { in Clear() argument
439 if (IsCleared(nexus)) return; in Clear()
443 nexus->ConfigurePremonomorphic(); in Clear()
448 void CallIC::Clear(Isolate* isolate, Code* host, CallICNexus* nexus) { in Clear() argument
[all …]
/external/v8/src/compiler/
Djs-native-context-specialization.cc410 Node* node, Node* value, FeedbackNexus const& nexus, Handle<Name> name, in ReduceNamedAccess() argument
418 if (nexus.IsUninitialized()) { in ReduceNamedAccess()
428 if (!ExtractReceiverMaps(receiver, effect, nexus, &receiver_maps)) { in ReduceNamedAccess()
476 LoadICNexus nexus(p.feedback().vector(), p.feedback().slot()); in ReduceJSLoadNamed() local
479 return ReduceNamedAccess(node, value, nexus, p.name(), AccessMode::kLoad, in ReduceJSLoadNamed()
491 StoreICNexus nexus(p.feedback().vector(), p.feedback().slot()); in ReduceJSStoreNamed() local
494 return ReduceNamedAccess(node, value, nexus, p.name(), AccessMode::kStore, in ReduceJSStoreNamed()
848 Node* node, Node* index, Node* value, FeedbackNexus const& nexus, in ReduceKeyedAccess() argument
857 if (nexus.IsUninitialized()) { in ReduceKeyedAccess()
867 if (!ExtractReceiverMaps(receiver, effect, nexus, &receiver_maps)) { in ReduceKeyedAccess()
[all …]
Djs-native-context-specialization.h66 FeedbackNexus const& nexus,
71 FeedbackNexus const& nexus, Handle<Name> name,
91 FeedbackNexus const& nexus,
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()
307 CallICNexus nexus(p.feedback().vector(), p.feedback().slot()); in ReduceJSCallFunction() local
308 Handle<Object> feedback(nexus.GetFeedback(), isolate()); in ReduceJSCallFunction()
Djs-inlining-heuristic.cc81 CallICNexus nexus(p.feedback().vector(), p.feedback().slot()); in Reduce() local
82 calls = nexus.ExtractCallCount(); in Reduce()
/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/ImageMagick/MagickWand/
Ddisplay.c545 *nexus; in DisplayImageCommand() local
552 nexus=XDisplayImage(display,&resource_info,argv,argc, in DisplayImageCommand()
554 if (nexus == (Image *) NULL) in DisplayImageCommand()
556 while ((nexus != (Image *) NULL) && ((state & ExitState) == 0)) in DisplayImageCommand()
561 if (nexus->montage != (char *) NULL) in DisplayImageCommand()
566 display_image=nexus; in DisplayImageCommand()
569 next=XDisplayImage(display,&resource_info,argv,argc,&nexus, in DisplayImageCommand()
572 (GetNextImageInList(nexus) != (Image *) NULL)) in DisplayImageCommand()
574 display_image=GetNextImageInList(nexus); in DisplayImageCommand()
575 nexus=NewImageList(); in DisplayImageCommand()
[all …]
/external/owasp/sanitizer/tools/
Dstage_to_maven_central.sh89 -DrepositoryId=sonatype-nexus-staging \
/external/ImageMagick/MagickCore/
Danimate.c375 *nexus; in XMagickCommand() local
389 nexus=NewImageList(); in XMagickCommand()
473 nexus=GetFirstImageInList(images); in XMagickCommand()
676 return(nexus); in XMagickCommand()
1318 *nexus; in XAnimateImages() local
1535 nexus=NewImageList(); in XAnimateImages()
2005 nexus=NewImageList(); in XAnimateImages()
2201 nexus=XMagickCommand(display,resource_info,windows, in XAnimateImages()
2358 nexus=ReadImage(resource_info->image_info,exception); in XAnimateImages()
2360 if (nexus != (Image *) NULL) in XAnimateImages()
[all …]
Ddisplay.c7115 *nexus; in XMagickCommand() local
7149 nexus=NewImageList(); in XMagickCommand()
7162 nexus=XOpenImage(display,resource_info,windows,MagickFalse); in XMagickCommand()
7200 nexus=XOpenImage(display,resource_info,windows,MagickTrue); in XMagickCommand()
7289 nexus=ReadImage(image_info,exception); in XMagickCommand()
7300 nexus=XVisualDirectoryImage(display,resource_info,windows,exception); in XMagickCommand()
9025 nexus=ReadImage(resource_info->image_info,exception); in XMagickCommand()
9207 nexus=CloneImage(*image,0,0,MagickTrue,exception); in XMagickCommand()
9208 if (nexus != (Image *) NULL) in XMagickCommand()
9238 nexus=CloneImage(*image,0,0,MagickTrue,exception); in XMagickCommand()
[all …]
/external/testng/gradle/
Dpublishing-maven.gradle8 apply plugin: 'io.codearte.nexus-staging'
/external/v8/test/cctest/heap/
Dtest-heap.cc3724 LoadICNexus nexus(vector, slot); in CheckVectorIC() local
3725 CHECK(nexus.StateFromFeedback() == desired_state); in CheckVectorIC()
3728 KeyedLoadICNexus nexus(vector, slot); in CheckVectorIC() local
3729 CHECK(nexus.StateFromFeedback() == desired_state); in CheckVectorIC()
5235 LoadICNexus nexus(vector, slot); in CheckIC() local
5236 CHECK_EQ(nexus.StateFromFeedback(), state); in CheckIC()
5238 KeyedLoadICNexus nexus(vector, slot); in CheckIC() local
5239 CHECK_EQ(nexus.StateFromFeedback(), state); in CheckIC()
5241 CallICNexus nexus(vector, slot); in CheckIC() local
5242 CHECK_EQ(nexus.StateFromFeedback(), state); in CheckIC()
/external/antlr/antlr-3.4/
DBUILD.txt257 <id>sonatype-nexus-snapshots</id>
262 <id>sonatype-nexus-staging</id>
/external/v8/src/crankshaft/
Dhydrogen.cc7780 KeyedLoadICNexus nexus(vector, slot); in HandleKeyedElementAccess() local
7781 name = nexus.FindFirstName(); in HandleKeyedElementAccess()
7783 KeyedStoreICNexus nexus(vector, slot); in HandleKeyedElementAccess() local
7784 name = nexus.FindFirstName(); in HandleKeyedElementAccess()
/external/strace/
DChangeLog-CVS2465 2004-09-05 Phil Blundell <pb@nexus.co.uk>