enum EntryPointCallingConvention { // ABI of calls to a method's native code, only used for native methods.
kJniAbi, // ABI of calls to a method's quick code entry point.
kQuickAbi
};
// Create code that will invoke the function held in thread local storage.
EXPORT std::unique_ptr<const std::vector<uint8_t>> CreateTrampoline32(
InstructionSet isa, const InstructionSetFeatures* features,
EntryPointCallingConvention abi,
ThreadOffset32 entry_point_offset);
EXPORT std::unique_ptr<const std::vector<uint8_t>> CreateTrampoline64(
InstructionSet isa, const InstructionSetFeatures* features,
EntryPointCallingConvention abi,
ThreadOffset64 entry_point_offset);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.