Home
last modified time | relevance | path

Searched defs:bytecode (Results 1 – 25 of 52) sorted by relevance

123

/external/v8/src/interpreter/
Dbytecodes.h419 static uint8_t ToByte(Bytecode bytecode) { in ToByte()
426 Bytecode bytecode = static_cast<Bytecode>(value); in FromByte() local
452 static OperandScale PrefixBytecodeToOperandScale(Bytecode bytecode) { in PrefixBytecodeToOperandScale()
467 static AccumulatorUse GetAccumulatorUse(Bytecode bytecode) { in GetAccumulatorUse()
473 static bool ReadsAccumulator(Bytecode bytecode) { in ReadsAccumulator()
478 static bool WritesAccumulator(Bytecode bytecode) { in WritesAccumulator()
483 static bool WritesBooleanToAccumulator(Bytecode bytecode) { in WritesBooleanToAccumulator()
510 static constexpr bool IsAccumulatorLoadWithoutEffects(Bytecode bytecode) { in IsAccumulatorLoadWithoutEffects()
525 static constexpr bool IsRegisterLoadWithoutEffects(Bytecode bytecode) { in IsRegisterLoadWithoutEffects()
532 static constexpr bool IsConditionalJumpImmediate(Bytecode bytecode) { in IsConditionalJumpImmediate()
[all …]
Dbytecodes.cc61 const char* Bytecodes::ToString(Bytecode bytecode) { in ToString()
74 std::string Bytecodes::ToString(Bytecode bytecode, OperandScale operand_scale) { in ToString()
88 Bytecode Bytecodes::GetDebugBreak(Bytecode bytecode) { in GetDebugBreak()
108 int Bytecodes::GetOperandOffset(Bytecode bytecode, int i, in GetOperandOffset()
122 Bytecode Bytecodes::GetJumpWithoutToBoolean(Bytecode bytecode) { in GetJumpWithoutToBoolean()
140 bool Bytecodes::IsDebugBreak(Bytecode bytecode) { in IsDebugBreak()
169 bool Bytecodes::MakesCallAlongCriticalPath(Bytecode bytecode) { in MakesCallAlongCriticalPath()
219 bool Bytecodes::IsStarLookahead(Bytecode bytecode, OperandScale operand_scale) { in IsStarLookahead()
254 bool Bytecodes::IsBytecodeWithScalableOperands(Bytecode bytecode) { in IsBytecodeWithScalableOperands()
300 bool Bytecodes::BytecodeHasHandler(Bytecode bytecode, in BytecodeHasHandler()
[all …]
Dinterpreter-assembler.h230 Bytecode bytecode() const { return bytecode_; } in bytecode() function
Dbytecode-peephole-table.h51 Bytecode bytecode; member
Dbytecode-decoder.cc91 Bytecode bytecode = Bytecodes::FromByte(bytecode_start[0]); in Decode() local
Dbytecode-array-accessor.cc179 Bytecode bytecode = current_bytecode(); in GetJumpTargetOffset() local
Dbytecode-array-writer.cc107 Bytecode bytecode = node->bytecode(); in EmitBytecode() local
Dmkpeephole.cc33 std::string BytecodeName(Bytecode bytecode) { in BytecodeName()
/external/v8/src/compiler/
Dbytecode-analysis.cc97 void UpdateInLiveness(Bytecode bytecode, BytecodeLivenessState& in_liveness, in UpdateInLiveness()
178 void UpdateOutLiveness(Bytecode bytecode, BytecodeLivenessState& out_liveness, in UpdateOutLiveness()
214 void UpdateAssignments(Bytecode bytecode, BytecodeLoopAssignments& assignments, in UpdateAssignments()
252 Bytecode bytecode = iterator.current_bytecode(); in Analyze() local
368 Bytecode bytecode = iterator.current_bytecode(); in Analyze() local
505 Bytecode bytecode = iterator.current_bytecode(); in LivenessIsValid() local
/external/v8/tools/ignition/
Dbytecode_dispatches_report.py96 dispatches_table, bytecode, top_count, sort_source_relative): argument
115 def print_top_dispatch_sources_and_destinations(dispatches_table, bytecode, argument
/external/javassist/src/main/javassist/expr/
DInstanceof.java120 Bytecode bytecode = jc.getBytecode(); in replace() local
148 public void doit(JvstCodeGen gen, Bytecode bytecode, ASTList args) in doit()
DCast.java114 Bytecode bytecode = jc.getBytecode(); in replace() local
144 public void doit(JvstCodeGen gen, Bytecode bytecode, ASTList args) in doit()
DFieldAccess.java195 Bytecode bytecode = jc.getBytecode(); in replace() local
236 public void doit(JvstCodeGen gen, Bytecode bytecode, ASTList args) in doit()
284 public void doit(JvstCodeGen gen, Bytecode bytecode, ASTList args) in doit()
DExpr.java233 int regno, Bytecode bytecode) { in storeStack()
242 Bytecode bytecode) { in storeStack0()
289 protected void replace0(int pos, Bytecode bytecode, int size) in replace0()
DNewExpr.java199 Bytecode bytecode = jc.getBytecode(); in replace() local
229 public void doit(JvstCodeGen gen, Bytecode bytecode, ASTList args) in doit()
DNewArray.java225 Bytecode bytecode = jc.getBytecode(); in replace2() local
252 public void doit(JvstCodeGen gen, Bytecode bytecode, ASTList args) in doit()
DMethodCall.java225 Bytecode bytecode = jc.getBytecode(); in replace() local
/external/mesa3d/src/gallium/drivers/r600/
Dr700_asm.c26 void r700_bytecode_cf_vtx_build(uint32_t *bytecode, const struct r600_bytecode_cf *cf) in r700_bytecode_cf_vtx_build()
/external/google-breakpad/src/processor/
Ddisassembler_x86.cc34 DisassemblerX86::DisassemblerX86(const uint8_t *bytecode, in DisassemblerX86()
/external/desugar/java/com/google/devtools/build/android/desugar/
DClassReaderFactory.java41 try (InputStream bytecode = inputFileProvider.getInputStream(filename)) { in readIfKnown()
DDefaultMethodClassFixer.java143 ClassReader bytecode = bootclasspath.readIfKnown(internalName); in recordInheritedMethods() local
167 ClassReader bytecode = classpath.readIfKnown(implemented); in defaultMethodsDefined() local
204 ClassReader bytecode = checkNotNull(classpath.readIfKnown(implemented), in stubMissingDefaultMethods() local
DLambdaClassFixer.java202 ClassReader bytecode = checkNotNull(factory.readIfKnown(interfaceInternalName), in copyRewrittenLambdaMethods() local
213 ClassReader bytecode = factory.readIfKnown(implemented); in copyBridgeMethods() local
/external/v8/src/debug/
Ddebug-evaluate.cc329 bool BytecodeHasNoSideEffect(interpreter::Bytecode bytecode) { in BytecodeHasNoSideEffect()
526 interpreter::Bytecode bytecode = it.current_bytecode(); in FunctionHasNoSideEffect() local
/external/v8/src/runtime/
Druntime-interpreter.cc65 interpreter::Bytecode bytecode = bytecode_iterator.current_bytecode(); in PrintRegisters() local
/external/fonttools/Lib/fontTools/ttLib/tables/
DttProgram.py208 def fromBytecode(self, bytecode): argument

123