Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:MSR_TS_MASK
(Results
1 - 23
of
23
) sorted by relevance
/kernel/linux/linux-5.10/arch/powerpc/kvm/
H
A
D
book3s_hv_tm.c
101
msr = (msr & ~
MSR_TS_MASK
) | MSR_TS_T;
in kvmhv_p9_tm_emulation()
145
(((msr &
MSR_TS_MASK
) >> MSR_TS_S_LG) << 29);
in kvmhv_p9_tm_emulation()
149
msr = (msr & ~
MSR_TS_MASK
) | MSR_TS_T;
in kvmhv_p9_tm_emulation()
152
msr = (msr & ~
MSR_TS_MASK
) | MSR_TS_S;
in kvmhv_p9_tm_emulation()
190
(((msr &
MSR_TS_MASK
) >> MSR_TS_S_LG) << 29);
in kvmhv_p9_tm_emulation()
191
vcpu->arch.shregs.msr &= ~
MSR_TS_MASK
;
in kvmhv_p9_tm_emulation()
221
(((msr &
MSR_TS_MASK
) >> MSR_TS_S_LG) << 29);
in kvmhv_p9_tm_emulation()
H
A
D
book3s_hv_tm_builtin.c
67
msr = (msr & ~
MSR_TS_MASK
) | MSR_TS_T;
in kvmhv_p9_tm_emulation_early()
99
vcpu->arch.shregs.msr = (msr & ~
MSR_TS_MASK
) | MSR_TS_T;
in kvmhv_p9_tm_emulation_early()
115
vcpu->arch.shregs.msr &= ~
MSR_TS_MASK
; /* go to N state */
in kvmhv_emulate_tm_rollback()
H
A
D
book3s_hv_builtin.c
765
if ((msr &
MSR_TS_MASK
) ==
MSR_TS_MASK
)
in kvmppc_set_msr_hv()
766
msr &= ~
MSR_TS_MASK
;
in kvmppc_set_msr_hv()
785
new_msr |= msr &
MSR_TS_MASK
;
in inject_interrupt()
H
A
D
book3s_emulate.c
134
(((guest_msr &
MSR_TS_MASK
) >> (MSR_TS_S_LG - 1))
in kvmppc_emulate_treclaim()
164
guest_msr &= ~(
MSR_TS_MASK
);
in kvmppc_emulate_treclaim()
189
guest_msr &= ~(
MSR_TS_MASK
);
in kvmppc_emulate_trchkpt()
213
(((guest_msr &
MSR_TS_MASK
) >> (MSR_TS_S_LG - 1))
in kvmppc_emulate_tabort()
H
A
D
book3s_pr.c
122
new_msr |= msr &
MSR_TS_MASK
;
in kvmppc_inject_interrupt_pr()
232
MSR_TM |
MSR_TS_MASK
;
in kvmppc_recalc_shadow_msr()
320
(vcpu->arch.shadow_srr1 & (
MSR_TS_MASK
)) !=
in kvmppc_copy_from_svcpu()
321
(old_msr & (
MSR_TS_MASK
)))) {
in kvmppc_copy_from_svcpu()
322
old_msr &= ~(
MSR_TS_MASK
);
in kvmppc_copy_from_svcpu()
323
old_msr |= (vcpu->arch.shadow_srr1 & (
MSR_TS_MASK
));
in kvmppc_copy_from_svcpu()
H
A
D
book3s_hv_nested.c
271
if (l2_regs.msr &
MSR_TS_MASK
)
in kvmhv_enter_nested_guest()
273
if (WARN_ON_ONCE(vcpu->arch.shregs.msr &
MSR_TS_MASK
))
in kvmhv_enter_nested_guest()
330
vcpu->arch.shregs.msr = saved_l1_regs.msr & ~
MSR_TS_MASK
;
in kvmhv_enter_nested_guest()
332
if (l2_regs.msr &
MSR_TS_MASK
)
in kvmhv_enter_nested_guest()
/kernel/linux/linux-6.6/arch/powerpc/kvm/
H
A
D
book3s_hv_tm.c
111
msr = (msr & ~
MSR_TS_MASK
) | MSR_TS_T;
in kvmhv_p9_tm_emulation()
157
(((msr &
MSR_TS_MASK
) >> MSR_TS_S_LG) << 29);
in kvmhv_p9_tm_emulation()
161
msr = (msr & ~
MSR_TS_MASK
) | MSR_TS_T;
in kvmhv_p9_tm_emulation()
164
msr = (msr & ~
MSR_TS_MASK
) | MSR_TS_S;
in kvmhv_p9_tm_emulation()
204
(((msr &
MSR_TS_MASK
) >> MSR_TS_S_LG) << 29);
in kvmhv_p9_tm_emulation()
205
vcpu->arch.shregs.msr &= ~
MSR_TS_MASK
;
in kvmhv_p9_tm_emulation()
237
(((msr &
MSR_TS_MASK
) >> MSR_TS_S_LG) << 29);
in kvmhv_p9_tm_emulation()
H
A
D
book3s_hv_tm_builtin.c
67
msr = (msr & ~
MSR_TS_MASK
) | MSR_TS_T;
in kvmhv_p9_tm_emulation_early()
99
vcpu->arch.shregs.msr = (msr & ~
MSR_TS_MASK
) | MSR_TS_T;
in kvmhv_p9_tm_emulation_early()
115
vcpu->arch.shregs.msr &= ~
MSR_TS_MASK
; /* go to N state */
in kvmhv_emulate_tm_rollback()
H
A
D
book3s_hv_builtin.c
512
if ((msr &
MSR_TS_MASK
) ==
MSR_TS_MASK
)
in kvmppc_set_msr_hv()
513
msr &= ~
MSR_TS_MASK
;
in kvmppc_set_msr_hv()
532
new_msr |= msr &
MSR_TS_MASK
;
in inject_interrupt()
H
A
D
book3s_emulate.c
130
(((guest_msr &
MSR_TS_MASK
) >> (MSR_TS_S_LG - 1))
in kvmppc_emulate_treclaim()
160
guest_msr &= ~(
MSR_TS_MASK
);
in kvmppc_emulate_treclaim()
185
guest_msr &= ~(
MSR_TS_MASK
);
in kvmppc_emulate_trchkpt()
209
(((guest_msr &
MSR_TS_MASK
) >> (MSR_TS_S_LG - 1))
in kvmppc_emulate_tabort()
H
A
D
book3s_pr.c
123
new_msr |= msr &
MSR_TS_MASK
;
in kvmppc_inject_interrupt_pr()
239
MSR_TM |
MSR_TS_MASK
;
in kvmppc_recalc_shadow_msr()
327
(vcpu->arch.shadow_srr1 & (
MSR_TS_MASK
)) !=
in kvmppc_copy_from_svcpu()
328
(old_msr & (
MSR_TS_MASK
)))) {
in kvmppc_copy_from_svcpu()
329
old_msr &= ~(
MSR_TS_MASK
);
in kvmppc_copy_from_svcpu()
330
old_msr |= (vcpu->arch.shadow_srr1 & (
MSR_TS_MASK
));
in kvmppc_copy_from_svcpu()
H
A
D
book3s_hv_nested.c
337
if (l2_regs.msr &
MSR_TS_MASK
)
in kvmhv_enter_nested_guest()
339
if (WARN_ON_ONCE(vcpu->arch.shregs.msr &
MSR_TS_MASK
))
in kvmhv_enter_nested_guest()
393
vcpu->arch.shregs.msr = saved_l1_regs.msr & ~
MSR_TS_MASK
;
in kvmhv_enter_nested_guest()
395
if (l2_regs.msr &
MSR_TS_MASK
)
in kvmhv_enter_nested_guest()
H
A
D
book3s_hv_p9_entry.c
872
vcpu->arch.shregs.msr &
MSR_TS_MASK
)
in kvmhv_vcpu_entry_p9()
/kernel/linux/linux-5.10/arch/powerpc/include/asm/
H
A
D
reg.h
122
#define
MSR_TS_MASK
(MSR_TS_T | MSR_TS_S) /* Transaction State bits */
macro
123
#define MSR_TM_RESV(x) (((x) &
MSR_TS_MASK
) ==
MSR_TS_MASK
) /* Reserved */
124
#define MSR_TM_TRANSACTIONAL(x) (((x) &
MSR_TS_MASK
) == MSR_TS_T)
125
#define MSR_TM_SUSPENDED(x) (((x) &
MSR_TS_MASK
) == MSR_TS_S)
128
#define MSR_TM_ACTIVE(x) (((x) &
MSR_TS_MASK
) != 0) /* Transaction active? */
/kernel/linux/linux-6.6/arch/powerpc/include/asm/
H
A
D
reg.h
119
#define
MSR_TS_MASK
(MSR_TS_T | MSR_TS_S) /* Transaction State bits */
macro
120
#define MSR_TM_RESV(x) (((x) &
MSR_TS_MASK
) ==
MSR_TS_MASK
) /* Reserved */
121
#define MSR_TM_TRANSACTIONAL(x) (((x) &
MSR_TS_MASK
) == MSR_TS_T)
122
#define MSR_TM_SUSPENDED(x) (((x) &
MSR_TS_MASK
) == MSR_TS_S)
125
#define MSR_TM_ACTIVE(x) (((x) &
MSR_TS_MASK
) != 0) /* Transaction active? */
/kernel/linux/linux-5.10/arch/powerpc/kernel/
H
A
D
signal_64.c
557
regs->msr |= msr &
MSR_TS_MASK
;
in restore_tm_sigcontexts()
760
regs->msr &= ~
MSR_TS_MASK
;
in SYSCALL_DEFINE0()
792
current->thread.regs->msr &= ~
MSR_TS_MASK
;
in SYSCALL_DEFINE0()
H
A
D
signal.c
376
tsk->thread.regs->msr &= ~
MSR_TS_MASK
;
in get_tm_stackpointer()
H
A
D
signal_32.c
711
regs->msr = (regs->msr & ~
MSR_TS_MASK
) | (msr_hi &
MSR_TS_MASK
);
in restore_tm_user_regs()
1069
regs->msr &= ~
MSR_TS_MASK
;
in COMPAT_SYSCALL_DEFINE0()
H
A
D
tm.S
476
li r5, (
MSR_TS_MASK
)@higher
/kernel/linux/linux-6.6/arch/powerpc/kernel/
H
A
D
signal_64.c
576
regs_set_return_msr(regs, regs->msr | (msr &
MSR_TS_MASK
));
in restore_tm_sigcontexts()
798
regs_set_return_msr(regs, regs->msr & ~
MSR_TS_MASK
);
in SYSCALL_DEFINE0()
831
current->thread.regs->msr & ~
MSR_TS_MASK
);
in SYSCALL_DEFINE0()
H
A
D
signal.c
357
regs_set_return_msr(regs, regs->msr & ~
MSR_TS_MASK
);
in get_tm_stackpointer()
H
A
D
signal_32.c
688
regs_set_return_msr(regs, (regs->msr & ~
MSR_TS_MASK
) | (msr_hi &
MSR_TS_MASK
));
in restore_tm_user_regs()
1160
regs_set_return_msr(regs, regs->msr & ~
MSR_TS_MASK
);
in COMPAT_SYSCALL_DEFINE0()
H
A
D
tm.S
470
li r5, (
MSR_TS_MASK
)@higher
Completed in 31 milliseconds