HomeSort by relevance Sort by last modified time
    Searched refs:nexus (Results 1 - 25 of 27) sorted by null

1 2

  /external/v8/test/cctest/
test-feedback-vector.cc 213 CallICNexus nexus(feedback_vector, slot);
214 CHECK_EQ(MONOMORPHIC, nexus.StateFromFeedback());
216 CHECK(!nexus.FindFirstMap());
219 CHECK_EQ(GENERIC, nexus.StateFromFeedback());
223 CHECK_EQ(GENERIC, nexus.StateFromFeedback());
227 nexus.Clear(f->shared()->code());
229 CHECK_EQ(MONOMORPHIC, nexus.StateFromFeedback());
230 CHECK(nexus.GetFeedback()->IsAllocationSite());
233 CHECK_EQ(MONOMORPHIC, nexus.StateFromFeedback());
252 CallICNexus nexus(feedback_vector, slot)
    [all...]
  /external/v8/src/
type-info.cc 80 LoadICNexus nexus(feedback_vector_, slot);
81 return nexus.StateFromFeedback();
83 KeyedLoadICNexus nexus(feedback_vector_, slot);
84 return nexus.StateFromFeedback();
98 StoreICNexus nexus(feedback_vector_, slot);
99 return nexus.StateFromFeedback() == UNINITIALIZED;
101 KeyedStoreICNexus nexus(feedback_vector_, slot);
102 return nexus.StateFromFeedback() == UNINITIALIZED;
144 KeyedStoreICNexus nexus(feedback_vector_, slot);
145 *store_mode = nexus.GetKeyedAccessStoreMode()
    [all...]
type-info.h 59 void CollectReceiverTypes(FeedbackNexus* nexus, SmallMapList* types);
100 void CollectReceiverTypes(FeedbackNexus* nexus, Handle<Name> name,
type-feedback-vector.cc 313 CallICNexus nexus(this, slot);
314 nexus.Clear(shared->code());
318 LoadICNexus nexus(this, slot);
319 nexus.Clear(shared->code());
323 LoadGlobalICNexus nexus(this, slot);
324 nexus.Clear(shared->code());
328 KeyedLoadICNexus nexus(this, slot);
329 nexus.Clear(shared->code());
333 StoreICNexus nexus(this, slot);
334 nexus.Clear(shared->code())
    [all...]
objects-printer.cc 675 LoadICNexus nexus(this, slot);
676 os << Code::ICState2String(nexus.StateFromFeedback());
680 LoadGlobalICNexus nexus(this, slot);
681 os << Code::ICState2String(nexus.StateFromFeedback());
685 KeyedLoadICNexus nexus(this, slot);
686 os << Code::ICState2String(nexus.StateFromFeedback());
690 CallICNexus nexus(this, slot);
691 os << Code::ICState2String(nexus.StateFromFeedback());
695 StoreICNexus nexus(this, slot);
696 os << Code::ICState2String(nexus.StateFromFeedback())
    [all...]
  /external/v8/src/ic/
ic.h 29 IC(FrameDepth depth, Isolate* isolate, FeedbackNexus* nexus = NULL);
67 static bool IsCleared(FeedbackNexus* nexus) {
68 InlineCacheState state = nexus->StateFromFeedback();
101 // If we are supposed to use the nexus, verify the nexus is non-null.
194 Handle<TypeFeedbackVector> vector() const { return nexus()->vector_handle(); }
195 FeedbackVectorSlot slot() const { return nexus()->slot(); }
204 FeedbackNexus* nexus() const { return nexus_; } function in class:v8::internal::IC
217 nexus()->ExtractMaps(&target_maps_);
254 CallIC(Isolate* isolate, CallICNexus* nexus)
    [all...]
ic.cc 92 State new_state = nexus()->StateFromFeedback();
138 IC::IC(FrameDepth depth, Isolate* isolate, FeedbackNexus* nexus)
142 nexus_(nexus) {
180 state_ = UseVector() ? nexus->StateFromFeedback() : StateFromCode(target);
276 maybe_handler_ = nexus()->FindHandlerForMap(receiver_map());
305 Name* stub_name = nexus()->FindFirstName();
438 void KeyedLoadIC::Clear(Isolate* isolate, Code* host, KeyedLoadICNexus* nexus) {
439 if (IsCleared(nexus)) return;
443 nexus->ConfigurePremonomorphic();
448 void CallIC::Clear(Isolate* isolate, Code* host, CallICNexus* nexus) {
529 KeyedLoadICNexus* nexus = casted_nexus<KeyedLoadICNexus>(); local
533 KeyedStoreICNexus* nexus = casted_nexus<KeyedStoreICNexus>(); local
549 LoadICNexus* nexus = casted_nexus<LoadICNexus>(); local
552 LoadGlobalICNexus* nexus = casted_nexus<LoadGlobalICNexus>(); local
555 KeyedLoadICNexus* nexus = casted_nexus<KeyedLoadICNexus>(); local
558 StoreICNexus* nexus = casted_nexus<StoreICNexus>(); local
562 KeyedStoreICNexus* nexus = casted_nexus<KeyedStoreICNexus>(); local
575 LoadICNexus* nexus = casted_nexus<LoadICNexus>(); local
578 KeyedLoadICNexus* nexus = casted_nexus<KeyedLoadICNexus>(); local
581 StoreICNexus* nexus = casted_nexus<StoreICNexus>(); local
585 KeyedStoreICNexus* nexus = casted_nexus<KeyedStoreICNexus>(); local
599 KeyedStoreICNexus* nexus = casted_nexus<KeyedStoreICNexus>(); local
931 LoadGlobalICNexus* nexus = casted_nexus<LoadGlobalICNexus>(); local
2195 CallICNexus* nexus = casted_nexus<CallICNexus>(); local
    [all...]
  /external/v8/src/compiler/
js-native-context-specialization.h 66 FeedbackNexus const& nexus,
71 FeedbackNexus const& nexus, Handle<Name> name,
88 // Extract receiver maps from {nexus} and filter based on {receiver} if
91 FeedbackNexus const& nexus,
js-native-context-specialization.cc 410 Node* node, Node* value, FeedbackNexus const& nexus, Handle<Name> name,
417 // Check if the {nexus} reports type feedback for the IC.
418 if (nexus.IsUninitialized()) {
426 // Extract receiver maps from the IC using the {nexus}.
428 if (!ExtractReceiverMaps(receiver, effect, nexus, &receiver_maps)) {
476 LoadICNexus nexus(p.feedback().vector(), p.feedback().slot());
479 return ReduceNamedAccess(node, value, nexus, p.name(), AccessMode::kLoad,
491 StoreICNexus nexus(p.feedback().vector(), p.feedback().slot());
494 return ReduceNamedAccess(node, value, nexus, p.name(), AccessMode::kStore,
    [all...]
js-inlining-heuristic.cc 81 CallICNexus nexus(p.feedback().vector(), p.feedback().slot());
82 calls = nexus.ExtractCallCount();
js-call-reducer.cc 32 CallICNexus nexus(vector, slot);
33 nexus.ConfigureMegamorphic(call_count);
62 CallICNexus nexus(p.feedback().vector(), p.feedback().slot());
63 Handle<Object> feedback(nexus.GetFeedback(), isolate());
307 CallICNexus nexus(p.feedback().vector(), p.feedback().slot());
308 Handle<Object> feedback(nexus.GetFeedback(), isolate());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
DeviceMenuListener.java 105 // If we don't have anything but Nexus devices, group them together rather than
143 List<Device> nexus = new ArrayList<Device>(); local
146 // Nexus
153 nexus.add(device);
162 if (!nexus.isEmpty()) {
163 sortNexusList(nexus);
164 for (final Device device : nexus) {
ConfigurationChooser.java 1281 int nexus = name.indexOf("Nexus"); \/\/$NON-NLS-1\$ local
    [all...]
  /external/owasp/sanitizer/tools/
stage_to_maven_central.sh 89 -DrepositoryId=sonatype-nexus-staging \
  /external/ImageMagick/MagickWand/
display.c 547 *nexus;
554 nexus=XDisplayImage(display,&resource_info,argv,argc,
556 if (nexus == (Image *) NULL)
558 while ((nexus != (Image *) NULL) && ((state & ExitState) == 0))
563 if (nexus->montage != (char *) NULL)
568 display_image=nexus;
571 next=XDisplayImage(display,&resource_info,argv,argc,&nexus,
574 (GetNextImageInList(nexus) != (Image *) NULL))
576 display_image=GetNextImageInList(nexus);
577 nexus=NewImageList()
545 *nexus; local
    [all...]
  /frameworks/opt/net/wifi/service/
Android.mk 71 # this is commented because none of the nexus devices
  /external/ImageMagick/MagickCore/
animate.c 383 *nexus;
397 nexus=NewImageList();
481 nexus=GetFirstImageInList(images);
684 return(nexus);
375 *nexus; local
1318 *nexus; local
    [all...]
display.c 7115 *nexus; local
10263 *nexus; local
14439 *nexus; local
    [all...]
  /external/v8/test/cctest/heap/
test-heap.cc     [all...]
  /external/ImageMagick/www/api/
cache.php 75 <dd>the number of nexus threads. </dd>
  /external/v8/src/crankshaft/
hydrogen.cc     [all...]
  /prebuilts/devtools/tools/lib/
sdkuilib.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdkuilib/24.4.0-beta6/
sdkuilib-24.4.0-beta6.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdkuilib/24.5.0/
sdkuilib-24.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdkuilib/25.0.0-alpha1/
sdkuilib-25.0.0-alpha1.jar 

Completed in 1054 milliseconds

1 2