Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Login
Remember
Register
Ask
Q&A
All Activity
Hot!
Unanswered
Tags
Users
Ask a Question
Ask a Question
Categories
All categories
Topic[话题] (13)
Life[生活] (4)
Technique[技术] (2.1m)
Idea[创意] (3)
Jobs[工作] (2)
Others[杂七杂八] (18)
Code Example[编程示例] (0)
Recent questions tagged x86
0
votes
593
views
1
answer
x86 - Understanding ATT Assembly (immediate)
lets say i have the following assembly lines movl $-1, %edi movl $1, %edx What exactly am I storing into %edi ... " but what does that mean? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
x86
0
votes
317
views
1
answer
x86 - Why is string comparison so fast in python?
I became curious to understand the internals of how string comparison works in python when I was solving the ... is the relationship 200x? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
x86
0
votes
456
views
1
answer
x86 - Divide and Get Remainder at the same time?
Apparently, x86 (and probably a lot of other instruction sets) put both the quotient and the remainder of a ... does the syntax look like? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
x86
0
votes
598
views
1
answer
x86 - How to compare __m128 types?
__m128 a; __m128 b; How to code a != b ? what to use: _mm_cmpneq_ps or _mm_cmpneq_ss ? How to process the result ? Can't find adequate docs. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
x86
0
votes
581
views
1
answer
x86 64 - Why does the iOS simulator require i386 and x86_64 symbols even though I'm on an x86_64 system only?
I'm trying to get an app running on the simulator that has had some problems doing so before. We don't have ... I'm running on an x86_64 mac. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
x86
0
votes
447
views
1
answer
x86 - How to multiply 5% in assembly language and display it out in 2 decimal place
I initialize the price of the food and request user to input a quantity and I am able to get an accurate ... of your help is much appreciated! See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
x86
0
votes
608
views
1
answer
x86 64 - How do you access low-byte registers for r8-r15 from gdb in x86-64?
In gdb, I can't seem to access any of the pseudo-registers: r8b, r9b, r10b, r11b, r12b, r13b, r14b, nor ... registers command. I'm using GDB 10. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
x86
0
votes
435
views
1
answer
x86 - Assembly: What is the purpose of movl data_items(,%edi,4), %eax in this program
This program (from Jonathan Bartlett's Programming From the Ground Up) cycles through all the numbers stored in ... serve in this situation? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
x86
0
votes
424
views
1
answer
x86 - Creating a proper Task State Segment (TSS) structure with and without an IO Bitmap?
Reading the documentation between Intel and AMD and looking at code makes it difficult at times to understand how to ... 't that be 11111111? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
x86
0
votes
532
views
1
answer
x86 64 - Why floating point registers are different than general purpose ones
Most architectures have different set of registers for storing regular integers and floating points. From a binary ... to regular registers? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
x86
0
votes
462
views
1
answer
x86 - Find the first instance of a character using simd
I am trying to find the first instance of a character, in this case '"' using simd (AVX2 or ... using _mm_movemask_epi8? Any other suggestions? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
x86
0
votes
528
views
1
answer
x86 - how are barriers/fences and acquire, release semantics implemented microarchitecturally?
A lot of questions SO and articles/books such as https://mirrors.edge.kernel.org/pub/linux/kernel/people/ ... to ensure memory ordering ? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
x86
0
votes
508
views
1
answer
x86 - In assembly, what does `PTR` stand for?
and dword ptr [ebp-4], 0 In assembly code like above, what does the term PTR stand for? I know their usage -- ... of the [] and PTR operators??? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
x86
0
votes
975
views
1
answer
x86 - Shifting SSE/AVX registers 32 bits left and right while shifting in zeros
I want to shift SSE/AVX registers multiples of 32 bits left or right while shifting in zeros. Let me be ... _mm256_permute2f128_ps(x, x, 41); See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
x86
0
votes
429
views
1
answer
x86 - AVX-512 and Branching
I'm confused as to what masking can do in theory in relation to branches. Let's say I have a Skylake-SP (ha, I wish. ... b(i) ** 3 end if end do See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
x86
0
votes
866
views
1
answer
x86 - SSE: convert short integer to float
I want to convert an array of unsigned short numbers to float using SSE. Let's say __m128i xVal; // Has 8 ... know which sse intrinsic to use. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
x86
0
votes
425
views
1
answer
x86 - Using GDB to read MSRs
Is there some way to read the x86-64 model-specific registers, specifically IA32_FS_BASE and IA32_GS_BASE, while ... appreciated all the same. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
x86
0
votes
878
views
1
answer
x86 - assembly to compare two numbers
What is the assembler syntax to determine which of two numbers is greater? What is the lower level (machine code) for it? ... in 0's and 1's? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
x86
0
votes
612
views
1
answer
x86 - problem in understanding mul & imul instructions of Assembly language
I'm learning 80386 from PC Assembly by paul caurter mul source If the operand is byte sized, it is multiplied ... register of same size itself? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
x86
0
votes
484
views
1
answer
x86 - complex IF statement in assembly
How should I write such an if statement in assembly? if ((a == b AND a > c) OR c == b) { ... ... . Integers would works fine for me, I guess. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
x86
0
votes
619
views
1
answer
x86 - Use 32bit "Program Files" directory in msbuild
In 64 bit versions of windows, 32 bit software is installed in "c:program files (x86)". This means you cannot ... there is a easier/better way. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
x86
0
votes
452
views
1
answer
x86 - how does push and pop work in assembly
I'm getting confused on what does pop actually do in assembly. Does pop move the value PUSHed onto the stack ... value pointed to by esp? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
x86
0
votes
369
views
1
answer
x86 - Branch target prediction in conjunction with branch prediction?
EDIT: My confusion arises because surely by predicting which branch is taken, you are effectively doing the target ... /write-back CPU stages? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
x86
0
votes
674
views
1
answer
x86 - Endianness inside CPU registers
I need help understanding endianness inside CPU registers of x86 processors. I wrote this small assembly program: ... ) instead of 0x78ff5abc? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
x86
0
votes
687
views
1
answer
x86 - Carry Flag, Auxiliary Flag and Overflow Flag in Assembly
I Cannot seem to tell the difference between the Carry Flag, Auxiliary Flag and Overflow Flag in Assembly. I'm ... used for the sign??? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
x86
0
votes
790
views
1
answer
x86 - What is the purpose of CS and IP registers in Intel 8086 assembly?
So, as the question states, what is the purpose of CS and IP registers in intel's 8086 I found this explanation ... , that would be great :) See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
x86
0
votes
483
views
1
answer
x86 - assembly system call non-effective
I want to print AAAA with the following: BITS 32; ;write; push 0x41414141; pop ecx ; mov eax, 4 ; write is ... exits, no errors, what is wrong ? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
x86
0
votes
711
views
1
answer
x86 16 - Is it possible to manipulate the instruction pointer in 8086 assembly?
I want to know if I can manipulate (read and change the value of) the instruction pointer (IP) in 8086 assembly. ... 4020h. How could I do that? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
x86
Page:
« prev
1
2
3
4
5
6
7
next »
Ask a question:
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question
Just Browsing Browsing
[1] javascript - How do I return a Promise on my Vuex store without getting an error message?
[2] javascript - i'm having issues creating my React app using npx-create-reat-app
[3] visual studio code - HTML auto completion errors
[4] Angular/RxJs When should I unsubscribe from `Subscription`
[5] vuepress部署 构建的时候报错
[6] Docker: How to preserve dir cache from one image to the next?
[7] mysql表字段json类型对json数组过滤该怎么操作?
[8] reactjs - Cannot assign types to a React High Order Component
[9] vue,做一个点击按钮,在一个div会出现一个图片,图片可随意拖拽,每个图片有一个控件
[10]vscode
补齐标签名,同步修改
2.1m
questions
2.1m
answers
60
comments
57.0k
users
Most popular tags
javascript
python
c#
java
How
android
c++
php
ios
html
sql
r
c
node.js
.net
iphone
asp.net
css
reactjs
jquery
ruby
What
Android
objective
mysql
linux
Is
git
Python
windows
Why
regex
angular
swift
amazon
excel
algorithm
macos
Java
visual
how
bash
Can
multithreading
PHP
Using
scala
angularjs
typescript
apache
spring
performance
postgresql
database
flutter
json
rust
arrays
C#
dart
vba
django
wpf
xml
vue.js
In
go
Get
google
jQuery
xcode
jsf
http
Google
mongodb
string
shell
oop
powershell
SQL
C++
security
assembly
docker
Javascript
Android:
Does
haskell
Convert
azure
debugging
delphi
vb.net
Spring
datetime
pandas
oracle
math
Django
联盟问答网站-Union QA website
Xstack问答社区
生活宝问答社区
OverStack问答社区
Ostack问答社区
在这了问答社区
在哪了问答社区
Xstack问答社区
无极谷问答社区
TouSu问答社区
SQlite问答社区
Qi-U问答社区
MLink问答社区
Jonic问答社区
Jike问答社区
16892问答社区
Vigges问答社区
55276问答社区
OGeek问答社区
深圳家问答社区
深圳家问答社区
深圳家问答社区
Vigges问答社区
Vigges问答社区
在这了问答社区
DevDocs API Documentations
Xstack问答社区
生活宝问答社区
OverStack问答社区
Ostack问答社区
在这了问答社区
在哪了问答社区
Xstack问答社区
无极谷问答社区
TouSu问答社区
SQlite问答社区
Qi-U问答社区
MLink问答社区
Jonic问答社区
Jike问答社区
16892问答社区
Vigges问答社区
55276问答社区
OGeek问答社区
深圳家问答社区
深圳家问答社区
深圳家问答社区
Vigges问答社区
Vigges问答社区
在这了问答社区
在这了问答社区
DevDocs API Documentations
Xstack问答社区
生活宝问答社区
OverStack问答社区
Ostack问答社区
在这了问答社区
在哪了问答社区
Xstack问答社区
无极谷问答社区
TouSu问答社区
SQlite问答社区
Qi-U问答社区
MLink问答社区
Jonic问答社区
Jike问答社区
16892问答社区
Vigges问答社区
55276问答社区
OGeek问答社区
深圳家问答社区
深圳家问答社区
深圳家问答社区
Vigges问答社区
Vigges问答社区
在这了问答社区
DevDocs API Documentations
广告位招租
...