Home | History | Annotate | Download | only in arm64

Lines Matching full:instruction

86   // instruction (such as with fcvta). It cannot be set in FPCR.
97 class Instruction {
124 V8_INLINE Instruction* following(int count = 1) {
128 V8_INLINE Instruction* preceding(int count = 1) {
219 // does not check that the instruction actually has an Rd field.
248 // does not check that the instruction actually has an Rn field.
291 // The range of the branch instruction, expressed as 'instr +- range'.
329 // A marking nop is an instruction
338 // Find the PC offset encoded in this instruction. 'this' may be a branch or
339 // a PC-relative addressing instruction.
343 // Find the target of this instruction. 'this' may be a branch or a
344 // PC-relative addressing instruction.
345 Instruction* ImmPCOffsetTarget();
348 bool IsTargetInImmPCOffsetRange(Instruction* target);
350 // a PC-relative addressing instruction.
351 void SetImmPCOffsetTarget(Instruction* target);
352 // Patch a literal load instruction to load from 'source'.
353 void SetImmLLiteral(Instruction* source);
362 V8_INLINE Instruction* InstructionAtOffset(
371 template<typename T> V8_INLINE static Instruction* Cast(T src) {
372 return reinterpret_cast<Instruction*>(src);
375 V8_INLINE ptrdiff_t DistanceTo(Instruction* target) {
384 void SetPCRelImmTarget(Instruction* target);
385 void SetBranchImmTarget(Instruction* target);
389 // Where Instruction looks at instructions generated by the Assembler,
392 class InstructionSequence : public Instruction {
405 // Each debug marker is represented by a HLT instruction. The immediate comment
406 // field in the instruction is used to identify the type of debug marker. Each
409 // Indicate to the Debugger that the instruction is a redirected call.
416 // A pseudo 'printf' instruction. The arguments will be passed to the platform
420 // pseudo-instruction was a call to the real printf method:
434 // information with the HLT instruction.
452 // A pseudo 'debug' instruction.
454 // Parameters are inlined in the code after a debug pseudo-instruction:
468 // before every instruction for the specified LOG_ parameters.