Home
last modified time | relevance | path

Searched refs:rebase (Results 1 – 25 of 89) sorted by relevance

1234

/external/llvm-project/llvm/test/tools/llvm-objdump/MachO/
Dbad-bind.test70 RUN: not llvm-objdump --macho --rebase %p/Inputs/macho-rebase-set-type-imm 2>&1 | FileCheck --check…
71 REBASE-SET-TYPE-IMM: macho-rebase-set-type-imm': truncated or malformed object (for REBASE_OPCODE_S…
73 RUN: not llvm-objdump --macho --rebase %p/Inputs/macho-rebase-uleb-malformed-uleb128 2>&1 | FileChe…
74 REBASE-ULEB-MALFORMED-ULEB128: macho-rebase-uleb-malformed-uleb128': truncated or malformed object …
76 RUN: not llvm-objdump --macho --rebase %p/Inputs/macho-rebase-seg-too-big 2>&1 | FileCheck --check-…
77 REBASE-SEG-TOO-BIG: macho-rebase-seg-too-big': truncated or malformed object (for REBASE_OPCODE_SET…
79 RUN: not llvm-objdump --macho --rebase %p/Inputs/macho-rebase-segoff-too-big 2>&1 | FileCheck --che…
80 REBASE-SEGOFF-TOO-BIG: macho-rebase-segoff-too-big': truncated or malformed object (for REBASE_OPCO…
82 RUN: not llvm-objdump --macho --rebase %p/Inputs/macho-rebase-add-addr-uleb 2>&1 | FileCheck --chec…
83 REBASE-ADD-ADDR-ULEB: macho-rebase-add-addr-uleb': truncated or malformed object (for REBASE_OPCODE…
[all …]
Drebase.test1 # RUN: llvm-objdump --macho --rebase --arch x86_64 \
2 # RUN: %p/Inputs/rebase.macho-x86_64 | FileCheck %s
/external/llvm-project/lld/test/MachO/
Dx86-64-reloc-unsigned.s4 # RUN: llvm-objdump --macho --rebase --full-contents %t | FileCheck %s
7 # RUN: llvm-objdump --macho --rebase %t-pie | FileCheck %s --check-prefix=PIE
9 # RUN: llvm-objdump --macho --rebase %t-no-pie | FileCheck %s --check-prefix=NO-PIE
11 # RUN: llvm-objdump --macho --rebase %t-no-pie | FileCheck %s --check-prefix=NO-PIE
14 # RUN: llvm-objdump --macho --rebase %t-pie | FileCheck %s --check-prefix=PIE
16 # RUN: llvm-objdump --macho --rebase %t-no-pie | FileCheck %s --check-prefix=NO-PIE
Dcompact-unwind-pie.s4 # RUN: llvm-objdump --macho --unwind-info --rebase %t | FileCheck %s
6 ## Check that we do not add rebase opcodes to the compact unwind section.
Dlocal-got.s9 # RUN: llvm-objdump --full-contents --rebase --bind %t/test | FileCheck %s --match-full-lines
23 ## Check that the rebase table is empty.
33 # RUN: llvm-objdump --macho --rebase --bind %t/test | FileCheck %s --check-prefix=PIE --match-full-…
Ddylink-lazy.s22 # RUN: (llvm-objdump -d --no-show-raw-insn --syms --rebase --bind --lazy-bind %t/dylink-lazy; \
27 # RUN: llvm-objdump --macho --rebase %t/dylink-lazy-pie | FileCheck %s --check-prefix=PIE
36 ## Check that the rebase table is empty.
/external/llvm-project/llvm/test/CodeGen/Thumb/
Dconsthoist-few-dependents.ll2 ; RUN: opt -consthoist -S -consthoist-min-num-to-rebase=1 %s -o - | FileCheck %s --check-prefix=OPT…
3 ; RUN: opt -consthoist -S -consthoist-min-num-to-rebase=2 %s -o - | FileCheck %s --check-prefix=OPT…
4 ; RUN: opt -consthoist -S -consthoist-min-num-to-rebase=3 %s -o - | FileCheck %s --check-prefix=OPT…
6 ; RUN: llc -consthoist-min-num-to-rebase=2 %s -o - | FileCheck %s --check-prefix=LLC
120 ; -consthoist-min-num-to-rebase=1, check that 65532 and single use of 65531
134 ; -consthoist-min-num-to-rebase=2, check that 65532 and single use of 65531
146 ; -consthoist-min-num-to-rebase=3, check that dual uses of 65531 in bb3 are
147 ; not rebase
/external/llvm/test/tools/llvm-objdump/
Dmacho-rebase.test1 # RUN: llvm-objdump -macho -rebase -arch x86_64 \
2 # RUN: %p/Inputs/rebase.macho-x86_64 | FileCheck %s
/external/mesa3d/docs/
Drepository.rst133 would rebase your branch prior to merging with master. But for small
134 changes to the master branch itself, you also need to use the rebase
165 git pull --rebase
177 If the rebase resulted in conflicts or changes that could affect the
181 If you want the rebase action to be the default action, then
185 git config branch.master.rebase true
/external/clang/
DRenderScriptPrebuilts.md50 prebuilts generated for this rebase, or to the latest platform version if no
81 (i.e. without the rebase), push them to a device with the rebased tools, and
88 This ensures that the rebase did not break the 2.9 and 3.2 BitcodeWriters.
94 The following projects will almost always have CLs as a part of the rebase.
/external/openscreen/docs/
Dadvanced_gerrit.md75 git rebase -i HEAD~4
171 git rebase -i origin/master # squash commits
179 git rebase -i C --onto M # squash commits
183 git rebase -i origin/master # squash commits and copy the Change-Id line from M
210 git rebase -i origin/master # squash commits, same note as M about Change-Id
213 git rebase # assume featureA is set as featureB's upstream branch
215 git rebase -i H --onto P
/external/llvm-project/lld/MachO/
DSyntheticSections.cpp104 : LinkEditSection(segment_names::linkEdit, section_names::rebase) {} in RebaseSection()
117 static void encodeDoRebase(Rebase &rebase, raw_svector_ostream &os) { in encodeDoRebase() argument
119 assert(rebase.consecutiveCount != 0); in encodeDoRebase()
120 if (rebase.consecutiveCount <= REBASE_IMMEDIATE_MASK) { in encodeDoRebase()
122 rebase.consecutiveCount); in encodeDoRebase()
125 encodeULEB128(rebase.consecutiveCount, os); in encodeDoRebase()
127 rebase.consecutiveCount = 0; in encodeDoRebase()
376 in.rebase->addEntry(section, offset); in addNonLazyBindingEntries()
502 in.rebase->addEntry(in.lazyPointers, dysym->stubsIndex * WordSize); in addEntry()
550 in.rebase->addEntry(in.lazyPointers, sym->stubsIndex * WordSize); in prepareBranchTarget()
/external/skia/docker/skia-release/
DDockerfile12 # Set fake identity for git rebase. See thread in
31 && git rebase ${HASH}; fi
/external/perfetto/tools/
Ddiff_test_trace_processor.py164 keep_input, rebase): argument
265 if rebase:
270 rebase += 1
418 args.keep_input, args.rebase)
424 if args.rebase:
/external/llvm/utils/git-svn/
Dgit-svnup12 git svn rebase -l
/external/bc/tests/bc/errors/
D21.txt3 rebase=x
/external/rust/crates/clap/.github/
DCONTRIBUTING.md81 - `wip` - A work in progress commit (Should typically be `git rebase`'ed away)
95rebase` into concise commits and remove `--fixup`s or `wip` commits (`git rebase -i HEAD~NUM` whe…
/external/deqp-deps/amber/tools/
Droll-all60 git rebase --interactive "${old_head}"
/external/angle/third_party/vulkan-deps/spirv-tools/src/utils/
Droll_deps.sh46 git rebase --interactive "${old_head}"
/external/deqp-deps/SPIRV-Tools/utils/
Droll_deps.sh46 git rebase --interactive "${old_head}"
/external/swiftshader/third_party/SPIRV-Tools/utils/
Droll_deps.sh46 git rebase --interactive "${old_head}"
/external/skia/docker/skia-wasm-release/
DDockerfile18 # Set fake identity for git rebase. See thread in
37 && git rebase ${HASH}; fi
/external/tcpdump/
DCONTRIBUTING91 8) Try to rebase your commits to keep the history simple.
92 git rebase upstream/master
93 (If the rebase fails and you cannot resolve, issue "git rebase --abort"
/external/ltp/doc/
Dc-test-tutorial-simple.txt281 Git-rebase, which allows us to clean up the commit history. So don't worry
798 After that we have the pleasure of doing an interactive 'rebase' to clean up
807 tutorial and 'rebase' it. You should try following along with your own
814 152d39fe7 (HEAD -> tutorial-rebase2, tutorial-rebase) tutorial: Start Submitting patch section
820 1e24a5fb5 (me/tutorial-rebase) fixup! tutorial
834 'rebase' and submitted a patch for review, so my original branch was just called
849 $ git rebase -i 5ca627b78\^
853 This begins an interactive 'rebase' where commit 5ca6427b78 is the earliest
855 commit before this one. The interactive 'rebase' command takes the last commit
864 [source,rebase]
[all …]
/external/shflags/
Dinit_githooks.sh28 pre-rebase \

1234