Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 59 for PC (0.14 sec)

  1. src/cmd/asm/internal/asm/testdata/s390x.s

    	CMPBLE	R7, $127, 0(PC)        // ec7c00007f7c
    	CMPBGT	R9, $0, 0(PC)          // ec920000007c
    	CMPBGE	R2, $128, 0(PC)        // ec2a0000807c
    
    	CMPUBNE	R1, R2, 0(PC)          // ec1200007065
    	CMPUBEQ	R3, R4, 0(PC)          // ec3400008065
    	CMPUBLT	R5, R6, 0(PC)          // ec5600004065
    	CMPUBLE	R7, R8, 0(PC)          // ec780000c065
    	CMPUBGT	R9, R1, 0(PC)          // ec9100002065
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Nov 22 03:55:32 GMT 2023
    - 21.6K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/mips64.s

    //	}
    	BEQ	R1, 2(PC)
    label0:
    	JMP	1(PC)		// JMP 1(PC)	// 10000001
    	BEQ	R1, 2(PC)
    	JMP	label0+0	// JMP 3	// 1000fffd
    	BEQ	R1, 2(PC)
    	JAL	1(PC)		// CALL 1(PC)	// 0c00000f
    	BEQ	R1, 2(PC)
    	JAL	label0+0	// CALL 3	// 0c000007
    
    //	LBRA addr
    //	{
    //		outcode(int($1), &nullgen, 0, &$2);
    //	}
    	BEQ	R1, 2(PC)
    	JMP	0(R1)		// JMP (R1)	// 00200008
    	BEQ	R1, 2(PC)
    	JMP	foo+0(SB)	// JMP foo(SB)	// 08000019
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Aug 08 12:17:12 GMT 2023
    - 12.4K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/mips.s

    	//	}
    	BEQ	R1, 2(PC)
    label0:
    	JMP	1(PC)
    	BEQ	R1, 2(PC)
    	JMP	label0+0	// JMP 66
    	BEQ	R1, 2(PC)
    	JAL	1(PC)	// CALL 1(PC)
    	BEQ	R1, 2(PC)
    	JAL	label0+0	// CALL 66
    
    	//	LBRA addr
    	//	{
    	//		outcode(int($1), &nullgen, 0, &$2);
    	//	}
    	BEQ	R1, 2(PC)
    	JMP	0(R1)	// JMP (R1)
    	BEQ	R1, 2(PC)
    	JMP	foo+0(SB)	// JMP foo(SB)
    	BEQ	R1, 2(PC)
    	JAL	0(R1)	// CALL (R1)
    	BEQ	R1, 2(PC)
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Aug 08 12:17:12 GMT 2023
    - 6.7K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/amd64.s

    // LTYPER nonrel	{ outcode($1, &$2); }
    label:
    	JB	-4(PC) // JCS -4(PC)
    	JB	label // JCS 17
    
    // LTYPEC spec3	{ outcode($1, &$2); }
    	JCS	2(PC)
    	JMP	-4(PC)
    	JCS	2(PC)
    	JMP	label // JMP 17
    	JCS	2(PC)
    	JMP	foo+4(SB)
    	JCS	2(PC)
    	JMP	bar<>+4(SB)
    	JCS	2(PC)
    	JMP	bar<>+4(SB)(R11*4)
    	JCS	2(PC)
    	JMP	*4(SP) // JMP 4(SP)
    	JCS	2(PC)
    	JMP	*(R12) // JMP (R12)
    	JCS	2(PC)
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Apr 09 18:57:21 GMT 2019
    - 3.3K bytes
    - Viewed (0)
  5. operator/cmd/mesh/profile.go

    	pdc := profileDumpCmd(pdArgs)
    	pdfc := profileDiffCmd(pdfArgs)
    
    	addFlags(pc, args)
    	addFlags(plc, args)
    	addFlags(pdc, args)
    	addFlags(pdfc, args)
    
    	addProfileDumpFlags(pdc, pdArgs)
    	addProfileListFlags(plc, plArgs)
    	addProfileDiffFlags(pdfc, pdfArgs)
    
    	pc.AddCommand(plc)
    	pc.AddCommand(pdc)
    	pc.AddCommand(pdfc)
    
    	return pc
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/386.s

    	CMPB	foo+4(SB), $4
    	CMPB	BX, AX
    	CMPB	foo+4(SB), BX
    
    // LTYPER nonrel	{ outcode(int($1), &$2); }
    label:
    	JC	label // JCS
    	JC	-1(PC) // JCS -1(PC)
    
    // LTYPEC spec3	{ outcode(int($1), &$2); }
    	CALL	AX
    	JCS	2(PC)
    	JMP	*AX // JMP AX
    	CALL	*foo(SB)
    	JCS	2(PC)
    	JMP	$4
    	JCS	2(PC)
    	JMP	label // JMP 16
    	CALL	foo(SB)
    //	CALL	(AX*4) // TODO: This line is silently dropped on the floor!
    	CALL	foo+4(SB)(AX*4)
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Apr 09 18:57:21 GMT 2019
    - 2K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/arm.s

    // B*
    	BEQ	14(PC) // BEQ 14(PC)   // 0c00000a
    	BNE	13(PC) // BNE 13(PC)   // 0b00001a
    	BCS	12(PC) // BCS 12(PC)   // 0a00002a
    	BCC	11(PC) // BCC 11(PC)   // 0900003a
    	BMI	10(PC) // BMI 10(PC)   // 0800004a
    	BPL	9(PC)  // BPL 9(PC)    // 0700005a
    	BVS	8(PC)  // BVS 8(PC)    // 0600006a
    	BVC	7(PC)  // BVC 7(PC)    // 0500007a
    	BHI	6(PC)  // BHI 6(PC)    // 0400008a
    	BLS	5(PC)  // BLS 5(PC)    // 0300009a
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 15 20:51:01 GMT 2023
    - 69K bytes
    - Viewed (0)
  8. api/go1.10.txt

    pkg debug/elf, const R_ARM_ALU_PC_G0 = 58
    pkg debug/elf, const R_ARM_ALU_PC_G0 R_ARM
    pkg debug/elf, const R_ARM_ALU_PC_G0_NC = 57
    pkg debug/elf, const R_ARM_ALU_PC_G0_NC R_ARM
    pkg debug/elf, const R_ARM_ALU_PC_G1 = 60
    pkg debug/elf, const R_ARM_ALU_PC_G1 R_ARM
    pkg debug/elf, const R_ARM_ALU_PC_G1_NC = 59
    pkg debug/elf, const R_ARM_ALU_PC_G1_NC R_ARM
    pkg debug/elf, const R_ARM_ALU_PC_G2 = 61
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Feb 06 05:00:01 GMT 2018
    - 30.1K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/loong64enc1.s

    	ROTRV	$4, R4			// 84104d00
    	SYSCALL				// 00002b00
    	BEQ	R4, R5, 1(PC)		// 85040058
    	BEQ	R4, 1(PC)		// 80040040
    	BEQ	R4, R0, 1(PC)		// 80040040
    	BEQ	R0, R4, 1(PC)		// 80040040
    	BNE	R4, R5, 1(PC)		// 8504005c
    	BNE	R4, 1(PC)		// 80040044
    	BNE	R4, R0, 1(PC)		// 80040044
    	BNE	R0, R4, 1(PC)		// 80040044
    	BLTU	R4, 1(PC)		// 80040068
    	MOVW	y+8(FP), F4		// 6440002b
    	MOVF	y+8(FP), F4		// 6440002b
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Mar 31 02:56:19 GMT 2023
    - 6.4K bytes
    - Viewed (0)
  10. src/cmd/addr2line/main.go

    			// Reverse translate file:line to pc.
    			// This was an extension in the old C version of 'go tool addr2line'
    			// and is probably not used by anyone, but recognize the syntax.
    			// We don't have an implementation.
    			fmt.Fprintf(stdout, "!reverse translation not implemented\n")
    			continue
    		}
    		pc, _ := strconv.ParseUint(strings.TrimPrefix(p, "0x"), 16, 64)
    		file, line, fn := tab.PCToLine(pc)
    		name := "?"
    		if fn != nil {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 2.3K bytes
    - Viewed (0)
Back to top