This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Taskcluster: Client ID mozilla-auth0/oauth2|firefoxaccounts|e2ef182f34964608bfd1cdc975060a70|[email protected] does not have sufficient scopes and is missing the following scopes: ``` hooks:trigger-hook:project-gecko/in-tree-action-1-generic/9a01d0526d ``` This request requires the client to satisfy the following scope expression: ``` hooks:trigger-hook:project-gecko/in-tree-action-1-generic/9a01d0526d ``` --- * method: triggerHook * errorCode: InsufficientScopes * statusCode: 403 * time: 2019-08-19T20:00:45.847Z |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void JSString::traceBase(JSTracer* trc) { | |
MOZ_ASSERT(hasBase()); | |
JSString* oldBase = d.s.u3.base; | |
if (I am a DependentString) { | |
// Handle the case where I am a dependent string of an undependend string, | |
// and therefore my chars are actually coming from its base. | |
base = my base | |
while (my chars do not come from MaybeForwarded(base).chars) { | |
if (base.hasBase) | |
base = base.base |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ExtensibleString A -> "blahblah" | |
UndependedString B | |
.base -> A | |
.chars -> "hbl\0" (owned) | |
DependentString C | |
.base -> B | |
.chars -> "b" (from A') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void JSString::traceBase(JSTracer* trc) { | |
MOZ_ASSERT(hasBase()); | |
JSString* oldBase = d.s.u3.base; | |
if (I am a DependentString) { | |
base = my base | |
while (my chars do not come from base) | |
base = base.base | |
} | |
TraceManuallyBarrieredEdge(trc, &d.s.u3.base, "base"); | |
if (oldBase != d.s.u3.base) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function makeExtensibleString() { | |
var s = "x"; | |
var t = "yyyyyyyyyyyyyyyyyyytyyyyyy"; | |
var r1 = t + s; | |
ensureFlatString(r1); | |
return r1; | |
} | |
function test() { | |
const s0 = makeExtensibleString(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function makeExtensibleString() { | |
var s = "xxxxxxxx"; | |
var t = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; // 31 characters | |
var r1 = t + s; | |
r1.match(/x/); | |
return r1; | |
} | |
function test() { | |
const s = makeExtensibleString(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function makeExtensibleString() { | |
var s = "xxxxxxxx"; | |
var t = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; // 31 characters | |
var r1 = t + s; | |
r1.match(/x/); | |
return r1; | |
} | |
function test() { | |
const s = makeExtensibleString(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/tools/rb/fix_stack_using_bpsyms.py b/tools/rb/fix_stack_using_bpsyms.py | |
--- a/tools/rb/fix_stack_using_bpsyms.py | |
+++ b/tools/rb/fix_stack_using_bpsyms.py | |
@@ -180,21 +180,24 @@ def addressToSymbol(file, address, symbo | |
p = getSymbolFile(file, symbolsDir) | |
if p: | |
return p.addrToSymbol(address) | |
else: | |
return "" | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/tools/rb/fix_stack_using_bpsyms.py b/tools/rb/fix_stack_using_bpsyms.py | |
--- a/tools/rb/fix_stack_using_bpsyms.py | |
+++ b/tools/rb/fix_stack_using_bpsyms.py | |
@@ -180,21 +180,27 @@ def addressToSymbol(file, address, symbo | |
p = getSymbolFile(file, symbolsDir) | |
if p: | |
return p.addrToSymbol(address) | |
else: | |
return "" | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/tools/rb/fix_stack_using_bpsyms.py b/tools/rb/fix_stack_using_bpsyms.py | |
--- a/tools/rb/fix_stack_using_bpsyms.py | |
+++ b/tools/rb/fix_stack_using_bpsyms.py | |
@@ -180,21 +180,27 @@ def addressToSymbol(file, address, symbo | |
p = getSymbolFile(file, symbolsDir) | |
if p: | |
return p.addrToSymbol(address) | |
else: | |
return "" | |