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

  /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());
254 LoadICNexus 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-feedback-vector.cc 197 CallICNexus nexus(this, slot);
198 nexus.Clear(shared->code());
202 LoadICNexus nexus(this, slot);
203 nexus.Clear(shared->code());
207 KeyedLoadICNexus nexus(this, slot);
208 nexus.Clear(shared->code());
212 StoreICNexus nexus(this, slot);
213 nexus.Clear(shared->code());
217 KeyedStoreICNexus nexus(this, slot);
218 nexus.Clear(shared->code())
    [all...]
objects-printer.cc 611 LoadICNexus nexus(this, slot);
612 os << Code::ICState2String(nexus.StateFromFeedback());
616 KeyedLoadICNexus nexus(this, slot);
617 os << Code::ICState2String(nexus.StateFromFeedback());
621 CallICNexus nexus(this, slot);
622 os << Code::ICState2String(nexus.StateFromFeedback());
626 StoreICNexus nexus(this, slot);
627 os << Code::ICState2String(nexus.StateFromFeedback());
631 KeyedStoreICNexus nexus(this, slot);
632 os << Code::ICState2String(nexus.StateFromFeedback())
    [all...]
  /external/v8/src/ic/
ic.h 29 IC(FrameDepth depth, Isolate* isolate, FeedbackNexus* nexus = NULL);
73 static bool IsCleared(FeedbackNexus* nexus) {
74 InlineCacheState state = nexus->StateFromFeedback();
109 // If we are supposed to use the nexus, verify the nexus is non-null.
207 Handle<TypeFeedbackVector> vector() const { return nexus()->vector_handle(); }
208 FeedbackVectorSlot slot() const { return nexus()->slot(); }
217 FeedbackNexus* nexus() const { return nexus_; } function in class:v8::internal::IC
230 nexus()->ExtractMaps(&target_maps_);
278 CallIC(Isolate* isolate, CallICNexus* nexus)
    [all...]
ic.cc 94 UseVector() ? nexus()->StateFromFeedback() : raw_target()->ic_state();
142 IC::IC(FrameDepth depth, Isolate* isolate, FeedbackNexus* nexus)
147 nexus_(nexus) {
185 state_ = UseVector() ? nexus->StateFromFeedback() : target_->ic_state();
261 maybe_handler_ = nexus()->FindHandlerForMap(receiver_map());
312 UseVector() ? nexus()->FindFirstName() : target()->FindFirstName();
479 void KeyedLoadIC::Clear(Isolate* isolate, Code* host, KeyedLoadICNexus* nexus) {
480 if (IsCleared(nexus)) return;
484 nexus->ConfigurePremonomorphic();
489 void CallIC::Clear(Isolate* isolate, Code* host, CallICNexus* nexus) {
596 LoadICNexus* nexus = casted_nexus<LoadICNexus>(); local
599 KeyedLoadICNexus* nexus = casted_nexus<KeyedLoadICNexus>(); local
602 StoreICNexus* nexus = casted_nexus<StoreICNexus>(); local
606 KeyedStoreICNexus* nexus = casted_nexus<KeyedStoreICNexus>(); local
619 LoadICNexus* nexus = casted_nexus<LoadICNexus>(); local
622 KeyedLoadICNexus* nexus = casted_nexus<KeyedLoadICNexus>(); local
625 StoreICNexus* nexus = casted_nexus<StoreICNexus>(); local
629 KeyedStoreICNexus* nexus = casted_nexus<KeyedStoreICNexus>(); local
643 KeyedStoreICNexus* nexus = casted_nexus<KeyedStoreICNexus>(); local
2173 CallICNexus* nexus = casted_nexus<CallICNexus>(); local
    [all...]
  /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/v8/src/compiler/
js-inlining-heuristic.cc 82 CallICNexus nexus(p.feedback().vector(), p.feedback().slot());
83 calls = nexus.ExtractCallCount();
js-native-context-specialization.cc 454 LoadICNexus nexus(p.feedback().vector(), p.feedback().slot());
455 if (nexus.ExtractMaps(&receiver_maps) == 0) return NoChange();
472 StoreICNexus nexus(p.feedback().vector(), p.feedback().slot());
473 if (nexus.ExtractMaps(&receiver_maps) == 0) return NoChange();
    [all...]
js-native-context-specialization.h 64 FeedbackNexus const& nexus,
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());
309 CallICNexus nexus(p.feedback().vector(), p.feedback().slot());
310 Handle<Object> feedback(nexus.GetFeedback(), isolate());
  /external/owasp/sanitizer/tools/
stage_to_maven_central.sh 89 -DrepositoryId=sonatype-nexus-staging \
  /frameworks/opt/net/wifi/service/
Android.mk 71 # this is commented because none of the nexus devices
  /external/v8/test/cctest/heap/
test-heap.cc     [all...]
  /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 502 milliseconds