OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:branchOffsets
(Results
1 - 8
of
8
) sorted by null
/external/webkit/Source/JavaScriptCore/bytecode/
JumpTable.cpp
39
if (value >= min && static_cast<uint32_t>(value - min) <
branchOffsets
.size()) {
40
int32_t offset =
branchOffsets
[value - min];
JumpTable.h
77
Vector<int32_t>
branchOffsets
;
87
if (!
branchOffsets
[key])
88
branchOffsets
[key] = offset;
CodeBlock.cpp
435
Vector<int32_t>::const_iterator end = m_rareData->m_immediateSwitchJumpTables[i].
branchOffsets
.end();
436
for (Vector<int32_t>::const_iterator iter = m_rareData->m_immediateSwitchJumpTables[i].
branchOffsets
.begin(); iter != end; ++iter, ++entry) {
452
Vector<int32_t>::const_iterator end = m_rareData->m_characterSwitchJumpTables[i].
branchOffsets
.end();
453
for (Vector<int32_t>::const_iterator iter = m_rareData->m_characterSwitchJumpTables[i].
branchOffsets
.begin(); iter != end; ++iter, ++entry) {
[
all
...]
/external/webkit/Source/JavaScriptCore/jit/
JIT.cpp
525
ASSERT(record.jumpTable.simpleJumpTable->
branchOffsets
.size() == record.jumpTable.simpleJumpTable->ctiOffsets.size());
529
for (unsigned j = 0; j < record.jumpTable.simpleJumpTable->
branchOffsets
.size(); ++j) {
530
unsigned offset = record.jumpTable.simpleJumpTable->
branchOffsets
[j];
JITOpcodes.cpp
[
all
...]
JITOpcodes32_64.cpp
[
all
...]
/external/proguard/src/proguard/optimize/evaluation/
EvaluationShrinker.java
[
all
...]
/external/webkit/Source/JavaScriptCore/bytecompiler/
BytecodeGenerator.cpp
[
all
...]
Completed in 127 milliseconds