HomeSort by relevance Sort by last modified time
    Searched refs:instructions (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/webkit/JavaScriptCore/bytecompiler/
BytecodeGenerator.cpp 147 m_codeBlock->setInstructionCount(m_codeBlock->instructions().size());
156 m_codeBlock->setIsNumericCompareFunction(instructions() == m_globalData->numericCompareFunction(m_scopeChain->globalObject()->globalExec()));
326 instructions().append(m_activationRegisterIndex);
364 instructions().append(m_thisRegister.index());
555 unsigned newLabelIndex = instructions().size();
576 instructions().append(globalData()->interpreter->getOpcode(opcodeID));
582 ASSERT(instructions().size() >= 4);
583 size_t size = instructions().size();
584 dstIndex = instructions().at(size - 3).u.operand;
585 src1Index = instructions().at(size - 2).u.operand
    [all...]
Label.h 55 m_codeBlock->instructions()[m_unresolvedJumps[i].second].u.operand = m_location - m_unresolvedJumps[i].first;
BytecodeGenerator.h 179 LineInfo info = { instructions().size(), n->lineNo() };
198 LineInfo info = { instructions().size(), n->lineNo() };
230 info.instructionOffset = instructions().size();
243 info.bytecodeOffset = instructions().size();
461 Vector<Instruction>& instructions() { return m_codeBlock->instructions(); } function in class:JSC::BytecodeGenerator
  /external/elfutils/tests/
run-show-ciefde.sh 34 FDE[0]: instructions = 41 0e 08 85 02 42 0d 05 41 83 03 00
69 FDE[0]: instructions = 41 0e 08 85 02 42 0d 05 53 2e 08 50 2e 10 48 2e 00 58 2e 10 62 2e 00 63 2e 10 45 2e 00 00 00 00
73 FDE[1]: instructions = 41 0e 08 85 02 42 0d 05 4c 2e 10 00
77 FDE[2]: instructions = 41 0e 08 85 02 42 0d 05 41 83 03 00
81 FDE[3]: instructions = 41 0e 08 85 02 42 0d 05 41 83 03 00
85 FDE[4]: instructions = 41 0e 08 85 02 42 0d 05 41 86 03 41 83 04 53 2e 10 4e 2e 00 55 2e 10 00
89 FDE[5]: instructions = 41 0e 08 85 02 42 0d 05 41 86 03 41 83 04 5e 2e 10 00 00 00
93 FDE[6]: instructions = 41 0e 08 85 02 42 0d 05 41 83 03 00
97 FDE[7]: instructions = 41 0e 08 85 02 42 0d 05 41 83 03 00
101 FDE[8]: instructions = 41 0e 08 85 02 42 0d 05 41 83 03 5c 2e 10 00 0
    [all...]
  /development/simulator/wrapsim/
Android.mk 4 # Build instructions for simulator LD_PRELOAD wrapper.
45 # Build instructions for simulator runtime launch wrapper.
  /external/webkit/SunSpider/tests/sunspider-0.9/
bitops-3bit-bits-in-byte.js 13 lir4,0xE994; 9 instructions, no memory access, minimal register dependence, 6 shifts, 2 adds, 1 inline assign
  /external/webkit/SunSpider/tests/sunspider-0.9.1/
bitops-3bit-bits-in-byte.js 13 lir4,0xE994; 9 instructions, no memory access, minimal register dependence, 6 shifts, 2 adds, 1 inline assign
  /libcore/luni/src/test/java/tests/xml/
SimpleParserTest.java 47 private StringBuffer instructions; field in class:SimpleParserTest
69 instructions = new StringBuffer();
81 instructions = null;
119 if (instructions.length() != 0) {
120 instructions.append(",");
123 instructions.append(s);
186 assertEquals("The:quick,brown:fox", instructions.toString());
220 assertEquals("The:quick,brown:fox", instructions.toString());
  /external/proguard/src/proguard/classfile/editor/
CodeAttributeEditor.java 146 * Remembers to place the given instructions right before the instruction
149 * @param instructions the new instructions.
151 public void insertBeforeInstruction(int instructionOffset, Instruction[] instructions)
159 preInsertions[instructionOffset] = new CompositeInstruction(instructions);
189 * instructions.
191 * @param instructions the new instructions.
193 public void replaceInstruction(int instructionOffset, Instruction[] instructions)
201 replacements[instructionOffset] = new CompositeInstruction(instructions);
1071 private Instruction[] instructions; field in class:CodeAttributeEditor.CompositeInstruction
    [all...]
  /bionic/libc/arch-sh/bionic/
ffs.S 48 * This code makes use of ``test 8bit'' and ``shift 8bit'' instructions.
53 mov r4,r0 ! using r0 specific instructions
  /external/webkit/JavaScriptCore/jit/
JITStubCall.h 169 m_jit->sampleInstruction(m_jit->m_codeBlock->instructions().begin() + m_jit->m_bytecodeIndex, true);
178 m_jit->sampleInstruction(m_jit->m_codeBlock->instructions().begin() + m_jit->m_bytecodeIndex, false);
JIT.cpp 78 , m_labels(codeBlock ? codeBlock->instructions().size() : 0)
172 Instruction* instructionsBegin = m_codeBlock->instructions().begin();
173 unsigned instructionCount = m_codeBlock->instructions().size();
353 Instruction* instructionsBegin = m_codeBlock->instructions().begin();
450 sampleInstruction(m_codeBlock->instructions().begin());
  /external/webkit/WebCore/manual-tests/inspector-wrappers/
inspector-wrappers-test-utils.js 27 function instructions(params) { function
32 "<p>Instructions:</p>" +
  /frameworks/base/policy/src/com/android/internal/policy/impl/
PasswordUnlockScreen.java 191 String instructions = getContext().getString(
194 mTitle.setText(instructions);
  /external/webkit/JavaScriptCore/bytecode/
SamplingTool.cpp 163 m_size = codeBlock->instructions().size();
170 unsigned offest = vPC - codeBlock->instructions().begin();
339 //Instruction* code = codeBlock->instructions().begin();
  /external/webkit/JavaScriptCore/interpreter/
Interpreter.cpp 79 return static_cast<Instruction*>(pc) - codeBlock->instructions().begin();
116 exceptionValue = createUndefinedVariableError(callFrame, ident, vPC - codeBlock->instructions().begin(), codeBlock);
149 exceptionValue = createUndefinedVariableError(callFrame, ident, vPC - codeBlock->instructions().begin(), codeBlock);
189 exceptionValue = createUndefinedVariableError(callFrame, ident, vPC - codeBlock->instructions().begin(), codeBlock);
232 exceptionValue = createUndefinedVariableError(callFrame, ident, vPC - codeBlock->instructions().begin(), codeBlock);
280 exceptionData = createInvalidParamError(callFrame, "in" , value, vPC - codeBlock->instructions().begin(), codeBlock);
288 exceptionData = createInvalidParamError(callFrame, "instanceof" , value, vPC - codeBlock->instructions().begin(), codeBlock);
545 if (isCallBytecode(codeBlock->instructions()[bytecodeOffset].u.opcode))
546 profiler->didExecute(callFrame, callFrame->r(codeBlock->instructions()[bytecodeOffset + 2].u.operand).jsValue());
547 else if (codeBlock->instructions().size() > (bytecodeOffset + 8) && codeBlock->instructions()[bytecodeOffset + 8].u.opcode == getOp (…)
    [all...]
  /external/sonivox/arm-hybrid-22k/lib_src/
ARM-E_voice_gain_gnu.s 79 @ NOTE: instructions are reordered to reduce the effect of latency
  /external/sonivox/arm-wt-22k/lib_src/
ARM-E_voice_gain_gnu.s 79 @ NOTE: instructions are reordered to reduce the effect of latency
  /external/speex/libspeex/
arch.h 68 #error I suppose you can have a [ARM4/ARM5E/Blackfin] that has float instructions?
  /external/webkit/JavaScriptCore/runtime/
JSGlobalData.cpp 248 lazyNumericCompareFunction = function->bytecode(exec, exec->scopeChain()).instructions();
  /ndk/build/core/
main.mk 105 Please follow the instructions in docs/NDK-APPS.TXT to write one.)
  /external/freetype/include/freetype/internal/
tttypes.h 1519 FT_Byte* instructions; member in struct:TT_LoaderRec_
    [all...]
  /external/libffi/src/powerpc/
linux64_closure.S 112 # (4 instructions). For cache effectiveness we align to a 16 byte boundary
  /external/v8/src/arm/
macro-assembler-arm.h 60 // Jump, Call, and Ret pseudo instructions implementing inter-working.
317 // Uses VFP instructions to Convert a Smi to a double.
455 CodePatcher(byte* address, int instructions);
469 int instructions_; // Number of instructions of the expected patch size.
  /external/v8/src/
assembler.h 217 void PatchCode(byte* instructions, int instruction_count);

Completed in 2670 milliseconds

1 2 3