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

1 2

  /external/v8/src/ic/
ic.h 16 // IC is the base class for LoadIC, StoreIC, KeyedLoadIC, and KeyedStoreIC.
270 class LoadIC : public IC {
272 LoadIC(FrameDepth depth, Isolate* isolate, FeedbackNexus* nexus = NULL)
317 class LoadGlobalIC : public LoadIC {
320 : LoadIC(depth, isolate, nexus) {}
335 class KeyedLoadIC : public LoadIC {
339 : LoadIC(depth, isolate, nexus) {
ic.cc 461 void LoadIC::Clear(Isolate* isolate, Code* host, LoadICNexus* nexus) {
607 MaybeHandle<Object> LoadIC::Load(Handle<Object> object, Handle<Name> name) {
673 return LoadIC::Load(global, name);
819 Handle<Code> LoadIC::initialize_stub_in_optimized_code(Isolate* isolate) {
853 Handle<Code> LoadIC::SimpleFieldLoad(FieldIndex index) {
899 void LoadIC::UpdateCaches(LookupIterator* lookup) {
904 TRACE_IC("LoadIC", lookup->name());
937 TRACE_GENERIC_IC(isolate(), "LoadIC", "incompatible receiver type");
    [all...]
  /external/v8/src/
code-factory.h 35 static Callable LoadIC(Isolate* isolate);
code-factory.cc 15 Callable CodeFactory::LoadIC(Isolate* isolate) {
32 auto code = LoadIC::initialize_stub_in_optimized_code(isolate);
code-stub-assembler.h 365 // LoadIC helpers.
422 void LoadIC(const LoadICParameters* p);
code-stubs.h 87 V(LoadIC) \
    [all...]
type-feedback-vector.cc 945 void LoadICNexus::Clear(Code* host) { LoadIC::Clear(GetIsolate(), host, this); }
    [all...]
code-stubs.cc 431 assembler->LoadIC(&p);
444 assembler->LoadIC(&p);
    [all...]
code-stub-assembler.cc     [all...]
  /external/v8/src/ic/x64/
ic-x64.cc 621 void LoadIC::GenerateNormal(MacroAssembler* masm) {
636 LoadIC::GenerateRuntimeGetProperty(masm);
657 void LoadIC::GenerateMiss(MacroAssembler* masm) {
669 void LoadIC::GenerateRuntimeGetProperty(MacroAssembler* masm) {
  /external/v8/test/mjsunit/
delete.js 160 // Check that a LoadIC for a dictionary field works, even