Searched refs:interpreter (Results 1 – 25 of 303) sorted by relevance
12345678910>>...13
197 final Interpreter interpreter) throws AnalyzerException in execute() argument224 push(interpreter.newOperation(insn)); in execute()231 push(interpreter.copyOperation(insn, in execute()244 push(interpreter.binaryOperation(insn, value1, value2)); in execute()251 value1 = interpreter.copyOperation(insn, pop()); in execute()255 setLocal(var + 1, interpreter.newValue(null)); in execute()260 setLocal(var - 1, interpreter.newValue(null)); in execute()275 interpreter.ternaryOperation(insn, value1, value2, value3); in execute()294 push(interpreter.copyOperation(insn, value1)); in execute()295 push(interpreter.copyOperation(insn, value1)); in execute()[all …]
58 private final Interpreter interpreter; field in Analyzer82 public Analyzer(final Interpreter interpreter) { in Analyzer() argument83 this.interpreter = interpreter; in Analyzer()158 current.setLocal(local++, interpreter.newValue(ctype)); in analyze()161 current.setLocal(local++, interpreter.newValue(args[i])); in analyze()163 current.setLocal(local++, interpreter.newValue(null)); in analyze()167 current.setLocal(local++, interpreter.newValue(null)); in analyze()190 current.init(f).execute(insnNode, interpreter); in analyze()283 handler.push(interpreter.newValue(type)); in analyze()460 changes = oldFrame.merge(frame, interpreter); in merge()
20 const interpreter::BytecodeArrayIterator& iterator) in FrameStateBeforeAndAfter()142 interpreter::Register the_register) const { in RegisterToValuesIndex()157 interpreter::Register the_register) const { in LookupRegister()172 interpreter::Register reg0, interpreter::Register reg1) { in ExchangeRegisters()191 interpreter::Register the_register, Node* node, in BindRegister()203 interpreter::Register first_reg, Node* node, in BindRegistersToProjections()525 interpreter::BytecodeArrayIterator iterator(bytecode_array()); in VisitBytecodes()535 case interpreter::Bytecode::k##name: \ in VisitBytecodes()550 const interpreter::BytecodeArrayIterator& iterator) { in VisitLdaZero()557 const interpreter::BytecodeArrayIterator& iterator) { in VisitLdaSmi8()[all …]
120 interpreter::Register receiver, size_t arity);122 interpreter::Register callee,123 interpreter::Register first_arg, size_t arity);125 interpreter::Register first_arg,129 const interpreter::BytecodeArrayIterator& iterator);131 const interpreter::BytecodeArrayIterator& iterator);133 const interpreter::BytecodeArrayIterator& iterator);135 const interpreter::BytecodeArrayIterator& iterator);137 const interpreter::BytecodeArrayIterator& iterator);138 void BuildLoadGlobal(const interpreter::BytecodeArrayIterator& iterator,[all …]
29 interpreter::Bytecode bytecode) in InterpreterAssembler()54 const char* bytecode_name = interpreter::Bytecodes::ToString(bytecode_); in GenerateCode()114 Node* InterpreterAssembler::LoadRegister(interpreter::Register reg) { in LoadRegister()139 interpreter::Register reg) { in StoreRegister()158 DCHECK_LT(operand_index, interpreter::Bytecodes::NumberOfOperands(bytecode_)); in BytecodeOperand()159 DCHECK_EQ(interpreter::OperandSize::kByte, in BytecodeOperand()160 interpreter::Bytecodes::GetOperandSize(bytecode_, operand_index)); in BytecodeOperand()164 Int32Constant(interpreter::Bytecodes::GetOperandOffset( in BytecodeOperand()170 DCHECK_LT(operand_index, interpreter::Bytecodes::NumberOfOperands(bytecode_)); in BytecodeOperandSignExtended()171 DCHECK_EQ(interpreter::OperandSize::kByte, in BytecodeOperandSignExtended()[all …]
57 interpreter::BytecodeArrayIterator iterator(bytecode_array()); in Analyze()60 interpreter::Bytecode bytecode = iterator.current_bytecode(); in Analyze()68 if (interpreter::Bytecodes::IsConditionalJump(bytecode)) { in Analyze()72 } else if (interpreter::Bytecodes::IsJump(bytecode)) { in Analyze()78 } else if (interpreter::Bytecodes::IsJumpOrReturn(bytecode)) { in Analyze()79 DCHECK_EQ(bytecode, interpreter::Bytecode::kReturn); in Analyze()
... .eclipse.osgi.framework.console.CommandInterpreter interpreter String urlString java.net.URI repoURI public void ...
20 Interpreter interpreter = getInterpreter(); in includeMethodFromExpression() local26 setContext(interpreter, tm.getMethod(), groups, tm); in includeMethodFromExpression()27 Object evalResult = interpreter.eval(expression); in includeMethodFromExpression()35 resetContext(interpreter); in includeMethodFromExpression()50 …private void setContext(Interpreter interpreter, Method method, Map<String, String> groups, ITestN… in setContext() argument52 interpreter.set("method", method); in setContext()53 interpreter.set("groups", groups); in setContext()54 interpreter.set("testngMethod", tm); in setContext()61 private void resetContext(Interpreter interpreter) { in resetContext() argument63 interpreter.unset("method"); in resetContext()[all …]
17 package com.googlecode.android_scripting.interpreter;71 Interpreter interpreter = new Interpreter(); in buildFromMaps() local72 interpreter.setName(name); in buildFromMaps()73 interpreter.setNiceName(niceName); in buildFromMaps()74 interpreter.setExtension(extension); in buildFromMaps()75 interpreter.setBinary(new File(binary)); in buildFromMaps()76 interpreter.setInteractiveCommand(interactiveCommand); in buildFromMaps()77 interpreter.setScriptCommand(scriptCommand); in buildFromMaps()78 interpreter.setHasInteractiveMode(hasInteractiveMode); in buildFromMaps()79 interpreter.setLanguage(SupportedLanguages.getLanguageByExtension(extension)); in buildFromMaps()[all …]
21 const interpreter::Bytecode kBytecodes[] = {22 #define DEFINE_BYTECODE(Name, ...) interpreter::Bytecode::k##Name,185 TRACED_FOREACH(interpreter::Bytecode, bytecode, kBytecodes) { in TARGET_TEST_F()196 IsInt32Constant(interpreter::Bytecodes::Size(bytecode))); in TARGET_TEST_F()225 TRACED_FOREACH(interpreter::Bytecode, bytecode, kBytecodes) { in TARGET_TEST_F()267 TRACED_FOREACH(interpreter::Bytecode, bytecode, kBytecodes) { in TARGET_TEST_F()277 interpreter::Bytecodes::Size(bytecode)}; in TARGET_TEST_F()308 TRACED_FOREACH(interpreter::Bytecode, bytecode, kBytecodes) { in TARGET_TEST_F()335 TRACED_FOREACH(interpreter::Bytecode, bytecode, kBytecodes) { in TARGET_TEST_F()337 int number_of_operands = interpreter::Bytecodes::NumberOfOperands(bytecode); in TARGET_TEST_F()[all …]
17 package com.googlecode.android_scripting.interpreter;48 public InterpreterProcess(Interpreter interpreter, AndroidProxy proxy) { in InterpreterProcess() argument50 mInterpreter = interpreter; in InterpreterProcess()52 setBinary(interpreter.getBinary()); in InterpreterProcess()53 setName(interpreter.getNiceName()); in InterpreterProcess()54 setCommand(interpreter.getInteractiveCommand()); in InterpreterProcess()55 addAllArguments(interpreter.getArguments()); in InterpreterProcess()62 putAllEnvironmentVariables(interpreter.getEnvironmentVariables()); in InterpreterProcess()
19 import com.googlecode.android_scripting.interpreter.Interpreter;20 import com.googlecode.android_scripting.interpreter.InterpreterConfiguration;21 import com.googlecode.android_scripting.interpreter.InterpreterConstants;102 Interpreter interpreter = config.getInterpreterForScript(script.getName()); in listExecutableScripts() local103 if (interpreter == null || !interpreter.isInstalled()) { in listExecutableScripts()127 Interpreter interpreter = config.getInterpreterForScript(file.getName()); in listExecutableScriptsRecursively() local128 if (interpreter != null && interpreter.isInstalled()) { in listExecutableScriptsRecursively()
24 import com.googlecode.android_scripting.interpreter.Interpreter;25 import com.googlecode.android_scripting.interpreter.InterpreterConfiguration;26 import com.googlecode.android_scripting.interpreter.InterpreterProcess;38 Interpreter interpreter; in launchInterpreter() local41 interpreter = config.getInterpreterByName(interpreterName); in launchInterpreter()42 InterpreterProcess process = new InterpreterProcess(interpreter, proxy); in launchInterpreter()
19 import com.googlecode.android_scripting.interpreter.Interpreter;20 import com.googlecode.android_scripting.interpreter.InterpreterConfiguration;21 import com.googlecode.android_scripting.interpreter.InterpreterProcess;34 Interpreter interpreter = configuration.getInterpreterForScript(scriptName); in ScriptProcess() local35 setCommand(String.format(interpreter.getScriptCommand(), script.getAbsolutePath())); in ScriptProcess()
38 import com.googlecode.android_scripting.interpreter.Interpreter;39 import com.googlecode.android_scripting.interpreter.InterpreterConfiguration;40 import com.googlecode.android_scripting.interpreter.InterpreterConfiguration.ConfigurationObserver;71 final Interpreter interpreter = (Interpreter) list.getItemAtPosition(position); in onListItemClick() local74 FeaturedInterpreters.getInterpreterIcon(InterpreterPicker.this, interpreter in onListItemClick()81 Intent intent = IntentBuilders.buildInterpreterShortcutIntent(interpreter, iconResource); in onListItemClick()126 Interpreter interpreter = mInterpreters.get(position); in getView() local138 FeaturedInterpreters.getInterpreterIcon(InterpreterPicker.this, interpreter in getView()148 text.setText(interpreter.getNiceName()); in getView()
47 import com.googlecode.android_scripting.interpreter.Interpreter;48 import com.googlecode.android_scripting.interpreter.InterpreterConfiguration;49 import com.googlecode.android_scripting.interpreter.InterpreterConfiguration.ConfigurationObserver;173 private void launchTerminal(Interpreter interpreter) { in launchTerminal() argument176 intent.putExtra(Constants.EXTRA_INTERPRETER_NAME, interpreter.getName()); in launchTerminal()182 Interpreter interpreter = (Interpreter) list.getItemAtPosition(position); in onListItemClick() local183 launchTerminal(interpreter); in onListItemClick()235 Interpreter interpreter = mInterpreters.get(position); in getView() local248 interpreter.getExtension()); in getView()257 text.setText(interpreter.getNiceName()); in getView()
11 "-src/interpreter",12 "+src/interpreter/bytecode-array-iterator.h",13 "+src/interpreter/bytecodes.h",14 "+src/interpreter/interpreter.h",
12 namespace interpreter { namespace260 case interpreter::OperandType::kCount8: in Decode()263 case interpreter::OperandType::kCount16: in Decode()266 case interpreter::OperandType::kIdx8: in Decode()269 case interpreter::OperandType::kIdx16: in Decode()272 case interpreter::OperandType::kImm8: in Decode()275 case interpreter::OperandType::kReg8: in Decode()276 case interpreter::OperandType::kMaybeReg8: { in Decode()296 case interpreter::OperandType::kRegPair8: { in Decode()307 case interpreter::OperandType::kReg16: { in Decode()[all …]
11 namespace interpreter { namespace31 return interpreter::Bytecodes::FromByte(current_byte); in current_bytecode()108 if (interpreter::Bytecodes::IsJumpImmediate(bytecode)) { in GetJumpTargetOffset()111 } else if (interpreter::Bytecodes::IsJumpConstant(bytecode) || in GetJumpTargetOffset()112 interpreter::Bytecodes::IsJumpConstantWide(bytecode)) { in GetJumpTargetOffset()
53 for (FeaturedInterpreter interpreter : interpreters) {54 mNameMap.put(interpreter.mmName, interpreter); in mNameMap.put() argument55 mExtensionMap.put(interpreter.mmExtension, interpreter); in mExtensionMap.put() argument
25 import com.googlecode.android_scripting.interpreter.Interpreter;100 public static Intent buildInterpreterShortcutIntent(Interpreter interpreter, in buildInterpreterShortcutIntent() argument104 buildStartInterpreterIntent(interpreter.getName())); in buildInterpreterShortcutIntent()105 intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, interpreter.getNiceName()); in buildInterpreterShortcutIntent()
10 add_clang_executable(clang-interpreter14 add_dependencies(clang-interpreter18 target_link_libraries(clang-interpreter
36 import com.googlecode.android_scripting.interpreter.Interpreter;37 import com.googlecode.android_scripting.interpreter.InterpreterConfiguration;38 import com.googlecode.android_scripting.interpreter.InterpreterConstants;117 Interpreter interpreter = mConfiguration.getInterpreterForScript(scriptName); in querySearchSuggestions() local118 String secondLine = interpreter.getNiceName(); in querySearchSuggestions()119 int icon = FeaturedInterpreters.getInterpreterIcon(mContext, interpreter.getExtension()); in querySearchSuggestions()
32 import com.google.clearsilver.jsilver.interpreter.InterpretedTemplateLoader;33 import com.google.clearsilver.jsilver.interpreter.LoadingTemplateFactory;34 import com.google.clearsilver.jsilver.interpreter.OptimizerProvider;35 import com.google.clearsilver.jsilver.interpreter.OptimizingTemplateFactory;36 import com.google.clearsilver.jsilver.interpreter.TemplateFactory;158 InterpretedTemplateLoader interpreter = in JSilver() local160 delegatingTemplateLoaders.add(interpreter); in JSilver()161 templateLoader = interpreter; in JSilver()
45 'interpreter': {46 'filepath': 'src/interpreter/',47 'filepath': 'test/cctest/interpreter/',48 'filepath': 'test/unittests/interpreter/',71 'interpreter': [