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

1 2

  /external/chromium_org/v8/src/
code-stubs.h 125 class CodeStub BASE_EMBEDDED {
156 explicit CodeStub(Isolate* isolate) : isolate_(isolate) { }
157 virtual ~CodeStub() {}
251 class PlatformCodeStub : public CodeStub {
253 explicit PlatformCodeStub(Isolate* isolate) : CodeStub(isolate) { }
368 class HydrogenCodeStub : public CodeStub {
376 : CodeStub(isolate) {
495 isolate->code_stub_interface_descriptor(CodeStub::ToNumber));
724 virtual CodeStub::Major MajorKey() { return ArrayConstructor; }
738 virtual CodeStub::Major MajorKey() { return InternalArrayConstructor;
    [all...]
disassembler.cc 236 uint32_t minor_key = CodeStub::MinorKeyFromKey(key);
237 CodeStub::Major major_key = CodeStub::GetMajorKey(code);
238 ASSERT(major_key == CodeStub::MajorKeyFromKey(key));
241 CodeStub::MajorName(major_key, false));
243 case CodeStub::CallFunction: {
codegen.cc 117 CodeStub::MajorName(info->code_stub()->MajorKey(), true);
215 CodeStub::Major major_key = info->code_stub()->MajorKey();
216 code->Disassemble(CodeStub::MajorName(major_key, false),
code-stubs.cc 32 bool CodeStub::FindCodeInCache(Code** code_out) {
43 SmartArrayPointer<const char> CodeStub::GetName() {
53 void CodeStub::RecordCodeGeneration(Handle<Code> code) {
63 Code::Kind CodeStub::GetCodeKind() const {
68 Handle<Code> CodeStub::GetCodeCopy(const Code::FindAndReplacePattern& pattern) {
109 Handle<Code> CodeStub::GetCode() {
157 const char* CodeStub::MajorName(CodeStub::Major major_key,
173 void CodeStub::PrintBaseName(StringStream* stream) {
178 void CodeStub::PrintName(StringStream* stream)
    [all...]
debug.cc 86 CodeStub::Major major_key = CodeStub::GetMajorKey(code);
87 return major_key == CodeStub::CallFunction;
94 CodeStub::Major major_key = CodeStub::GetMajorKey(code);
95 return major_key == CodeStub::CallFunction;
376 return target_code->major_key() == CodeStub::CallFunction;
401 maybe_call_function_stub->major_key() == CodeStub::CallFunction);
478 ASSERT(code->major_key() == CodeStub::CallFunction);
    [all...]
globals.h 298 class CodeStub;
incremental-marking.cc 488 if (CodeStub::MajorKeyFromKey(key) ==
489 CodeStub::RecordWrite) {
    [all...]
code-stubs-hydrogen.cc 113 const char* name = CodeStub::MajorName(stub()->MajorKey(), false);
252 CodeStub::Major major_key =
    [all...]
isolate.cc     [all...]
lithium-allocator.cc     [all...]
log.cc     [all...]
hydrogen-instructions.h     [all...]
stub-cache.cc 687 code->set_major_key(CodeStub::NoCache);
    [all...]
  /external/chromium_org/v8/test/mjsunit/
debug-step-stub-callfunction.js 47 // Use 'eval' to ensure that the call to print is through CodeStub CallFunction.
59 // Use an inner function to ensure that the function call is through CodeStub
73 // Use an inner function to ensure that the function call is through CodeStub
  /external/chromium_org/v8/src/arm/
macro-assembler-arm.h 86 int CallStubSize(CodeStub* stub,
    [all...]
macro-assembler-arm.cc 88 CodeStub* stub, TypeFeedbackId ast_id, Condition cond) {
    [all...]
  /external/chromium_org/v8/src/ia32/
macro-assembler-ia32.h 735 void CallStub(CodeStub* stub, TypeFeedbackId ast_id = TypeFeedbackId::None());
738 void TailCallStub(CodeStub* stub);
    [all...]
macro-assembler-ia32.cc     [all...]
  /external/chromium_org/v8/src/x87/
macro-assembler-x87.h 714 void CallStub(CodeStub* stub, TypeFeedbackId ast_id = TypeFeedbackId::None());
717 void TailCallStub(CodeStub* stub);
    [all...]
macro-assembler-x87.cc     [all...]
  /external/chromium_org/v8/src/x64/
macro-assembler-x64.h     [all...]
macro-assembler-x64.cc 602 void MacroAssembler::CallStub(CodeStub* stub, TypeFeedbackId ast_id) {
608 void MacroAssembler::TailCallStub(CodeStub* stub) {
619 bool MacroAssembler::AllowThisStubCall(CodeStub* stub) {
    [all...]
  /external/chromium_org/v8/src/mips/
macro-assembler-mips.h     [all...]
  /external/chromium_org/v8/src/arm64/
macro-assembler-arm64.h     [all...]
macro-assembler-arm64.cc     [all...]

Completed in 345 milliseconds

1 2