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

1 2

  /external/v8/src/
code-stubs.cc 32 CodeStubDescriptor::CodeStubDescriptor(CodeStub* stub)
50 CodeStub::InitializeDescriptor(isolate, stub_key, this);
72 bool CodeStub::FindCodeInCache(Code** code_out) {
83 void CodeStub::RecordCodeGeneration(Handle<Code> code) {
97 void CodeStub::DeleteStubFromCacheForTesting() {
139 Handle<Code> CodeStub::GetCode() {
180 CodeStub::Major CodeStub::GetMajorKey(const Code* code_stub) {
184 const char* CodeStub::MajorName(CodeStub::Major major_key)
    [all...]
code-stubs.h 87 class CodeStub : public ZoneObject {
116 explicit CodeStub(Isolate* isolate) : minor_key_(0), isolate_(isolate) {}
117 virtual ~CodeStub() {}
147 friend std::ostream& operator<<(std::ostream& os, const CodeStub& s) {
162 CodeStub(uint32_t key, Isolate* isolate)
197 typedef void (*DispatchedCall)(CodeStub* stub, void** value_out);
201 static void GetCodeDispatchCall(CodeStub* stub, void** value_out);
258 class PlatformCodeStub : public CodeStub {
264 explicit PlatformCodeStub(Isolate* isolate) : CodeStub(isolate) {}
272 DEFINE_CODE_STUB_BASE(PlatformCodeStub, CodeStub);
    [all...]
disassembler.cc 191 uint32_t minor_key = CodeStub::MinorKeyFromKey(key);
192 CodeStub::Major major_key = CodeStub::GetMajorKey(code);
193 DCHECK(major_key == CodeStub::MajorKeyFromKey(key));
195 CodeStub::MajorName(major_key));
feedback-vector.cc     [all...]
assembler.h 99 explicit HeapObjectRequest(CodeStub* code_stub, int offset = -1);
109 CodeStub* code_stub() const {
130 CodeStub* code_stub;
reloc-info.cc 465 os << " " << CodeStub::MajorName(CodeStub::GetMajorKey(code));
assembler.cc 352 HeapObjectRequest::HeapObjectRequest(CodeStub* code_stub, int offset)
globals.h 485 class CodeStub;
    [all...]
log.cc     [all...]
  /external/v8/src/snapshot/
object-deserializer.cc 26 CodeStub::GetCode(isolate, code_stub_keys[i]).ToHandleChecked());
code-serializer.cc 259 DCHECK(CodeStub::MajorKeyFromKey(stub_key) != CodeStub::NoCache);
260 DCHECK(!CodeStub::GetCode(isolate(), stub_key).is_null());
267 CodeStub::MajorName(CodeStub::MajorKeyFromKey(stub_key)),
  /external/v8/src/arm/
macro-assembler-arm.h 286 inline bool AllowThisStubCall(CodeStub* stub);
307 void CallStubDelayed(CodeStub* stub);
747 void CallStub(CodeStub* stub,
751 void TailCallStub(CodeStub* stub, Condition cond = al);
    [all...]
macro-assembler-arm.cc 43 // compilation through CodeStub::GetCode()).
    [all...]
  /external/v8/src/ia32/
macro-assembler-ia32.h 157 inline bool AllowThisStubCall(CodeStub* stub);
158 void CallStubDelayed(CodeStub* stub);
677 void CallStub(CodeStub* stub);
680 void TailCallStub(CodeStub* stub);
    [all...]
macro-assembler-ia32.cc 40 // compilation through CodeStub::GetCode()).
871 void MacroAssembler::CallStub(CodeStub* stub) {
876 void TurboAssembler::CallStubDelayed(CodeStub* stub) {
881 void MacroAssembler::TailCallStub(CodeStub* stub) {
885 bool TurboAssembler::AllowThisStubCall(CodeStub* stub) {
    [all...]
  /external/v8/src/x64/
macro-assembler-x64.h 448 inline bool AllowThisStubCall(CodeStub* stub);
453 void CallStubDelayed(CodeStub* stub);
817 void CallStub(CodeStub* stub);
    [all...]
macro-assembler-x64.cc 76 // compilation through CodeStub::GetCode()).
455 void TurboAssembler::CallStubDelayed(CodeStub* stub) {
460 void MacroAssembler::CallStub(CodeStub* stub) {
466 void MacroAssembler::TailCallStub(CodeStub* stub) {
470 bool TurboAssembler::AllowThisStubCall(CodeStub* stub) {
    [all...]
  /external/v8/src/ppc/
macro-assembler-ppc.h 400 inline bool AllowThisStubCall(CodeStub* stub);
637 void CallStubDelayed(CodeStub* stub);
    [all...]
macro-assembler-ppc.cc 39 // compilation through CodeStub::GetCode()).
    [all...]
  /external/v8/src/mips/
macro-assembler-mips.h 166 inline bool AllowThisStubCall(CodeStub* stub);
531 void CallStubDelayed(CodeStub* stub, COND_ARGS);
    [all...]
  /external/v8/src/mips64/
macro-assembler-mips64.h 183 inline bool AllowThisStubCall(CodeStub* stub);
551 void CallStubDelayed(CodeStub* stub, COND_ARGS);
    [all...]
  /external/v8/src/s390/
macro-assembler-s390.h     [all...]
assembler-s390.cc 678 void Assembler::call(CodeStub* stub) {
  /external/v8/src/arm64/
macro-assembler-arm64.h 543 bool AllowThisStubCall(CodeStub* stub);
544 void CallStubDelayed(CodeStub* stub);
    [all...]
macro-assembler-arm64.cc 40 // compilation through CodeStub::GetCode()).
    [all...]

Completed in 1531 milliseconds

1 2