mirror of
https://git.freebsd.org/ports.git
synced 2025-06-25 06:30:29 -04:00
Build cross platform desktop apps with JavaScript, HTML, and CSS. It's easier than you think. If you can build a website, you can build a desktop app. Electron is a framework for creating native applications with web technologies like JavaScript, HTML, and CSS. It takes care of the hard parts so you can focus on the core of your application. WWW: https://electronjs.org/
21 lines
838 B
C
21 lines
838 B
C
--- v8/src/codegen/x64/assembler-x64.h.orig 2023-08-10 01:51:22 UTC
|
|
+++ v8/src/codegen/x64/assembler-x64.h
|
|
@@ -856,6 +856,7 @@ class V8_EXPORT_PRIVATE Assembler : public AssemblerBa
|
|
void ret(int imm16);
|
|
void ud2();
|
|
void setcc(Condition cc, Register reg);
|
|
+ void endbr64();
|
|
|
|
void pblendw(XMMRegister dst, Operand src, uint8_t mask);
|
|
void pblendw(XMMRegister dst, XMMRegister src, uint8_t mask);
|
|
@@ -913,8 +914,8 @@ class V8_EXPORT_PRIVATE Assembler : public AssemblerBa
|
|
void jmp(Handle<Code> target, RelocInfo::Mode rmode);
|
|
|
|
// Jump near absolute indirect (r64)
|
|
- void jmp(Register adr);
|
|
- void jmp(Operand src);
|
|
+ void jmp(Register adr, bool notrack = false);
|
|
+ void jmp(Operand src, bool notrack = false);
|
|
|
|
// Unconditional jump relative to the current address. Low-level routine,
|
|
// use with caution!
|