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

1 2

  /external/v8/src/
disassembler.cc 214 uint32_t minor_key = CodeStub::MinorKeyFromKey(key);
215 CodeStub::Major major_key = CodeStub::GetMajorKey(code);
216 DCHECK(major_key == CodeStub::MajorKeyFromKey(key));
218 CodeStub::MajorName(major_key));
code-stubs-hydrogen.cc 42 explicit CodeStubGraphBuilderBase(CompilationInfo* info, CodeStub* code_stub)
78 CodeStub* stub() { return code_stub_; }
86 CodeStub* code_stub_;
97 const char* name = CodeStub::MajorName(stub()->MajorKey());
178 explicit CodeStubGraphBuilder(CompilationInfo* info, CodeStub* stub)
242 const char* name = CodeStub::MajorName(MajorKey());
303 CompilationInfo info(CStrVector(CodeStub::MajorName(stub->MajorKey())),
code-stubs.h 164 class CodeStub BASE_EMBEDDED {
198 explicit CodeStub(Isolate* isolate) : minor_key_(0), isolate_(isolate) {}
199 virtual ~CodeStub() {}
239 friend std::ostream& operator<<(std::ostream& os, const CodeStub& s) {
249 CodeStub(uint32_t key, Isolate* isolate)
298 typedef void (*DispatchedCall)(CodeStub* stub, void** value_out);
302 static void GetCodeDispatchCall(CodeStub* stub, void** value_out);
388 class PlatformCodeStub : public CodeStub {
394 explicit PlatformCodeStub(Isolate* isolate) : CodeStub(isolate) {}
399 DEFINE_CODE_STUB_BASE(PlatformCodeStub, CodeStub);
    [all...]
code-stubs.cc 34 CodeStubDescriptor::CodeStubDescriptor(CodeStub* stub)
54 CodeStub::InitializeDescriptor(isolate, stub_key, this);
76 bool CodeStub::FindCodeInCache(Code** code_out) {
87 void CodeStub::RecordCodeGeneration(Handle<Code> code) {
101 Code::Kind CodeStub::GetCodeKind() const {
106 Code::Flags CodeStub::GetCodeFlags() const {
110 Handle<Code> CodeStub::GetCodeCopy(const FindAndReplacePattern& pattern) {
118 void CodeStub::DeleteStubFromCacheForTesting() {
154 Handle<Code> CodeStub::GetCode() {
203 const char* CodeStub::MajorName(CodeStub::Major major_key)
    [all...]
feedback-vector.cc 936 CodeStub::Major major_key = CodeStub::MajorKeyFromKey(handler->stub_key());
937 uint32_t minor_key = CodeStub::MinorKeyFromKey(handler->stub_key());
938 CHECK(major_key == CodeStub::KeyedStoreSloppyArguments ||
939 major_key == CodeStub::StoreFastElement ||
940 major_key == CodeStub::StoreSlowElement |
    [all...]
globals.h 436 class CodeStub;
    [all...]
log.cc     [all...]
deoptimizer.cc     [all...]
  /external/v8/src/ic/
access-compiler.cc 18 if (code->IsCodeStubOrIC()) code->set_stub_key(CodeStub::NoCacheKey());
  /external/v8/src/snapshot/
code-serializer.cc 163 DCHECK(CodeStub::MajorKeyFromKey(stub_key) != CodeStub::NoCache);
164 DCHECK(!CodeStub::GetCode(isolate(), stub_key).is_null());
171 CodeStub::MajorName(CodeStub::MajorKeyFromKey(stub_key)),
202 CodeStub::GetCode(isolate, code_stub_keys[i]).ToHandleChecked());
283 CodeStub::GetCode(isolate, stub_keys[i]).ToHandleChecked());
  /external/v8/src/ia32/
macro-assembler-ia32.h 652 void CallStub(CodeStub* stub, TypeFeedbackId ast_id = TypeFeedbackId::None());
655 void TailCallStub(CodeStub* stub);
    [all...]
code-stubs-ia32.cc     [all...]
macro-assembler-ia32.cc     [all...]
  /external/v8/src/x87/
macro-assembler-x87.h 644 void CallStub(CodeStub* stub, TypeFeedbackId ast_id = TypeFeedbackId::None());
647 void TailCallStub(CodeStub* stub);
    [all...]
  /external/v8/src/arm/
macro-assembler-arm.h 101 int CallStubSize(CodeStub* stub,
    [all...]
macro-assembler-arm.cc 87 CodeStub* stub, TypeFeedbackId ast_id, Condition cond) {
    [all...]
code-stubs-arm.cc 776 void CodeStub::GenerateStubsAheadOfTime(Isolate* isolate) {
789 void CodeStub::GenerateFPStubs(Isolate* isolate) {
    [all...]
  /external/v8/src/heap/
incremental-marking.cc 430 if (CodeStub::MajorKeyFromKey(key) == CodeStub::RecordWrite) {
    [all...]
  /external/v8/src/arm64/
macro-assembler-arm64.h     [all...]
code-stubs-arm64.cc 794 void CodeStub::GenerateStubsAheadOfTime(Isolate* isolate) {
825 void CodeStub::GenerateFPStubs(Isolate* isolate) {
    [all...]
  /external/v8/src/ppc/
macro-assembler-ppc.h     [all...]
  /external/v8/src/x64/
macro-assembler-x64.h     [all...]
  /external/v8/src/mips/
macro-assembler-mips.h     [all...]
  /external/v8/src/mips64/
macro-assembler-mips64.h     [all...]
  /external/v8/src/s390/
macro-assembler-s390.h     [all...]

Completed in 558 milliseconds

1 2