Delta Between Two Patch Sets: src/cmd/internal/rsc.io/arm/armasm/decode.go
Issue 153750044 :
code review 153750044: cmd/objdump: move armasm, x86asm into internal packages (Closed)
Left Patch Set: diff -r cd24f5ff3db869a41efbf3a83e9e3f55b61460b8 https://code.google.com/p/go/
Right Patch Set: diff -r f804c5bc096d3a87bba0dd7ed74aae850b93873e https://code.google.com/p/go/
Use n/p to move between diff chunks;
N/P to move between comments.
Please Sign in to add in-line comments.
Jump to:
src/cmd/internal/rsc.io/arm/armasm/Makefile
src/cmd/internal/rsc.io/arm/armasm/decode.go
src/cmd/internal/rsc.io/arm/armasm/decode_test.go
src/cmd/internal/rsc.io/arm/armasm/ext_test.go
src/cmd/internal/rsc.io/arm/armasm/gnu.go
src/cmd/internal/rsc.io/arm/armasm/inst.go
src/cmd/internal/rsc.io/arm/armasm/objdump_test.go
src/cmd/internal/rsc.io/arm/armasm/objdumpext_test.go
src/cmd/internal/rsc.io/arm/armasm/plan9x.go
src/cmd/internal/rsc.io/arm/armasm/tables.go
src/cmd/internal/rsc.io/arm/armasm/testdata/Makefile
src/cmd/internal/rsc.io/arm/armasm/testdata/decode.txt
src/cmd/internal/rsc.io/x86/x86asm/Makefile
src/cmd/internal/rsc.io/x86/x86asm/decode.go
src/cmd/internal/rsc.io/x86/x86asm/decode_test.go
src/cmd/internal/rsc.io/x86/x86asm/ext_test.go
src/cmd/internal/rsc.io/x86/x86asm/gnu.go
src/cmd/internal/rsc.io/x86/x86asm/inst.go
src/cmd/internal/rsc.io/x86/x86asm/inst_test.go
src/cmd/internal/rsc.io/x86/x86asm/intel.go
src/cmd/internal/rsc.io/x86/x86asm/objdump_test.go
src/cmd/internal/rsc.io/x86/x86asm/objdumpext_test.go
src/cmd/internal/rsc.io/x86/x86asm/plan9ext_test.go
src/cmd/internal/rsc.io/x86/x86asm/plan9x.go
src/cmd/internal/rsc.io/x86/x86asm/plan9x_test.go
src/cmd/internal/rsc.io/x86/x86asm/tables.go
src/cmd/internal/rsc.io/x86/x86asm/testdata/Makefile
src/cmd/internal/rsc.io/x86/x86asm/testdata/decode.txt
src/cmd/internal/rsc.io/x86/x86asm/xed_test.go
src/cmd/internal/rsc.io/x86/x86asm/xedext_test.go
src/cmd/objdump/armasm.go
src/cmd/objdump/main.go
src/cmd/objdump/x86.go
LEFT RIGHT
(Both sides are equal) 1 // Copyright 2014 The Go Authors. All rights reserved. 1 // Copyright 2014 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style 2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file. 3 // license that can be found in the LICENSE file.
4 4
5 package armasm 5 package armasm
6 6
7 import ( 7 import (
8 "encoding/binary" 8 "encoding/binary"
9 "fmt" 9 "fmt"
10 ) 10 )
(...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading...
558 count = 32 558 count = 32
559 } 559 }
560 case RotateRight: 560 case RotateRight:
561 if count == 0 { 561 if count == 0 {
562 typ = RotateRightExt 562 typ = RotateRightExt
563 count = 1 563 count = 1
564 } 564 }
565 } 565 }
566 return typ, uint8(count) 566 return typ, uint8(count)
567 } 567 }
LEFT RIGHT