HomeSort by relevance Sort by last modified time
    Searched defs:external_function (Results 1 - 2 of 2) sorted by null

  /external/v8/src/mips/
simulator-mips.cc 525 Redirection(void* external_function, bool fp_return)
526 : external_function_(external_function),
537 void* external_function() { return external_function_; } function in class:assembler::mips::Redirection
540 static Redirection* Get(void* external_function, bool fp_return) {
543 if (current->external_function_ == external_function) return current;
545 return new Redirection(external_function, fp_return);
567 void* Simulator::RedirectExternalReference(void* external_function,
569 Redirection* redirection = Redirection::Get(external_function, fp_return);
813 reinterpret_cast<intptr_t>(redirection->external_function());
824 reinterpret_cast<int32_t>(redirection->external_function());
    [all...]
  /external/v8/src/arm/
simulator-arm.cc 482 Redirection(void* external_function, bool fp_return)
483 : external_function_(external_function),
494 void* external_function() { return external_function_; } function in class:assembler::arm::Redirection
497 static Redirection* Get(void* external_function, bool fp_return) {
500 if (current->external_function_ == external_function) return current;
502 return new Redirection(external_function, fp_return);
524 void* Simulator::RedirectExternalReference(void* external_function,
526 Redirection* redirection = Redirection::Get(external_function, fp_return);
    [all...]

Completed in 377 milliseconds